// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // This file contains the HSTS preloaded list in a machine readable format. // The top-level element is a dictionary with one key: "entries", which contains // the HSTS details for each host. // // "entries" is a list of objects. Each object has the following members: // name: (string) the DNS name of the host in question. // policy: (string) the policy under which the domain is part of the // preload list. This field is used for list maintenance. // - test: test domains. // - google: Google-owned sites. // - custom: entries without includeSubdomains or with HPKP. // - bulk-legacy: bulk entries preloaded before Chrome 50. // - bulk-18-weeks: bulk entries with max-age >= 18 weeks (Chrome 50-63). // - bulk-1-year: bulk entries with max-age >= 1 year (after Chrome 63). // - public-suffix: public suffixes (e.g. TLDs or other public suffix // list entries) preloaded at the owner's request. // - public-suffix-requested: domains under a public suffix that have // been preloaded at the request of the the public suffix owner (e.g. // the registry for the TLD). // include_subdomains: (optional boolean) For backwards compatibility, this // means: // - If mode == "force-https", then apply force-https to subdomains. // mode: (optional string) "force-https" iff covered names should require // HTTPS. // { "entries": [ // Dummy entries to test certificate pinning. { "name": "pinningtest.appspot.com", "policy": "test", "include_subdomains": true }, { "name": "pinning-test.badssl.com", "policy": "test", "include_subdomains": true }, { "name": "example.test", "policy": "test", "include_subdomains": true }, // gTLDs and eTLDs are welcome to preload if they are interested. { "name": "android", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "app", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "bank", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "chrome", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "dev", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "foo", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "gle", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "gmail", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "google", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "hangout", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "insurance", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "meet", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "new", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "page", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "play", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "search", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "youtube", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "esq", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "fly", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "rsvp", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "eat", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "nexus", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "ing", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "meme", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "phd", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "prof", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "boo", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "dad", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "day", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "channel", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "hotmail", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "mov", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "zip", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "windows", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "skype", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "azure", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "office", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "bing", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "xbox", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "microsoft", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "amazon", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "audible", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "fire", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "imdb", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "kindle", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "prime", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "silk", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "zappos", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "xn--cckwcxetd", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "xn--jlq480n2rg", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "fujitsu", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, // Domains on the public suffix list that have requested to be preloaded. { "name": "bmoattachments.org", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "now.sh", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "cnpy.gdn", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "gentapps.com", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "onavstack.net", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, // Now we force HTTPS for subtrees of google.com. { "name": "mail.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "plus.sandbox.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "remotedesktop.corp.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "corp.goog", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "accounts.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "admin.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "apis.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "appengine.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "calendar.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "checkout.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "chrome.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "classroom.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "cloud.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "code.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "contributor.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "datastudio.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "dl.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "docs.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "domains.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "drive.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "encrypted.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "fi.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "glass.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "goto.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "groups.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "hangouts.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "history.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "hostedtalkgadget.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "inbox.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "lens.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "login.corp.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "mail-settings.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "meet.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "myaccount.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "myactivity.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "passwords.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "pixel.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "play.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "plus.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "profiles.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "script.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "security.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "sites.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "spreadsheets.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "talkgadget.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "talk.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "wallet.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "payments.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "xn--7xa.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "dns.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, // Other Google-related domains that must use HTTPS. { "name": "build.chromium.org", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "bugs.chromium.org", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "cdn.ampproject.org", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "chrome.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "chrome-devtools-frontend.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "chromereporting-pa.googleapis.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "chromiumcodereview.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "codereview.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "codereview.chromium.org", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "crbug.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "crosbug.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "crrev.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "firebaseio.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "g.co", "policy": "google", "mode": "force-https" }, { "name": "www.g.co", "policy": "google", "mode": "force-https" }, { "name": "g4w.co", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "gmail.com", "policy": "google", "mode": "force-https" }, { "name": "goo.gl", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "googlecode.com", "policy": "google", "include_subdomains": true }, { "name": "googlemail.com", "policy": "google", "mode": "force-https" }, { "name": "googleplex.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "googlesource.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "gvt2.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "gvt3.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "developer.android.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "market.android.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "oauthaccountmanager.googleapis.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "passwordsleakcheck-pa.googleapis.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "translate.googleapis.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "tunnel.googlezip.net", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "tunnel-staging.googlezip.net", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "withgoogle.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "withyoutube.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "www.gmail.com", "policy": "google", "mode": "force-https" }, { "name": "www.googlemail.com", "policy": "google", "mode": "force-https" }, { "name": "google-analytics.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "stats.g.doubleclick.net", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "chromiumbugs.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "youtube.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "ua5v.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "webfilings.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "webfilings-eu.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "webfilings-eu-mirror.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "webfilings-mirror-hrd.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "wf-bigsky-master.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "wf-demo-eu.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "wf-demo-hrd.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "wf-dogfood-hrd.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "wf-pentest.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "wf-staging-hr.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "wf-training-hrd.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "wf-training-master.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "wf-trial-hrd.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "w-spotlight.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "xbrlsuccess.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, // Other Google-related domains that must use an acceptable certificate // iff using SSL. { "name": "2mdn.net", "policy": "google", "include_subdomains": true }, { "name": "android.com", "policy": "google", "include_subdomains": true }, { "name": "appspot.com", "policy": "google", "include_subdomains": true }, { "name": "blogger.com", "policy": "google", "include_subdomains": true }, { "name": "blogspot.com", "policy": "google", "include_subdomains": true }, { "name": "doubleclick.net", "policy": "google", "include_subdomains": true }, { "name": "ggpht.com", "policy": "google", "include_subdomains": true }, { "name": "google.ac", "policy": "google", "include_subdomains": true }, { "name": "google.ad", "policy": "google", "include_subdomains": true }, { "name": "googleadservices.com", "policy": "google", "include_subdomains": true }, { "name": "google.ae", "policy": "google", "include_subdomains": true }, { "name": "google.af", "policy": "google", "include_subdomains": true }, { "name": "google.ag", "policy": "google", "include_subdomains": true }, { "name": "google.am", "policy": "google", "include_subdomains": true }, { "name": "googleapis.com", "policy": "google", "include_subdomains": true }, { "name": "google.as", "policy": "google", "include_subdomains": true }, { "name": "google.at", "policy": "google", "include_subdomains": true }, { "name": "google.az", "policy": "google", "include_subdomains": true }, { "name": "google.ba", "policy": "google", "include_subdomains": true }, { "name": "google.be", "policy": "google", "include_subdomains": true }, { "name": "google.bf", "policy": "google", "include_subdomains": true }, { "name": "google.bg", "policy": "google", "include_subdomains": true }, { "name": "google.bi", "policy": "google", "include_subdomains": true }, { "name": "google.bj", "policy": "google", "include_subdomains": true }, { "name": "google.bs", "policy": "google", "include_subdomains": true }, { "name": "google.by", "policy": "google", "include_subdomains": true }, { "name": "google.ca", "policy": "google", "include_subdomains": true }, { "name": "google.cat", "policy": "google", "include_subdomains": true }, { "name": "google.cc", "policy": "google", "include_subdomains": true }, { "name": "google.cd", "policy": "google", "include_subdomains": true }, { "name": "google.cf", "policy": "google", "include_subdomains": true }, { "name": "google.cg", "policy": "google", "include_subdomains": true }, { "name": "google.ch", "policy": "google", "include_subdomains": true }, { "name": "google.ci", "policy": "google", "include_subdomains": true }, { "name": "google.cl", "policy": "google", "include_subdomains": true }, { "name": "google.cm", "policy": "google", "include_subdomains": true }, { "name": "google.cn", "policy": "google", "include_subdomains": true }, { "name": "google.co.ao", "policy": "google", "include_subdomains": true }, { "name": "google.co.bw", "policy": "google", "include_subdomains": true }, { "name": "google.co.ck", "policy": "google", "include_subdomains": true }, { "name": "google.co.cr", "policy": "google", "include_subdomains": true }, { "name": "google.co.hu", "policy": "google", "include_subdomains": true }, { "name": "google.co.id", "policy": "google", "include_subdomains": true }, { "name": "google.co.il", "policy": "google", "include_subdomains": true }, { "name": "google.co.im", "policy": "google", "include_subdomains": true }, { "name": "google.co.in", "policy": "google", "include_subdomains": true }, { "name": "google.co.je", "policy": "google", "include_subdomains": true }, { "name": "google.co.jp", "policy": "google", "include_subdomains": true }, { "name": "google.co.ke", "policy": "google", "include_subdomains": true }, { "name": "google.co.kr", "policy": "google", "include_subdomains": true }, { "name": "google.co.ls", "policy": "google", "include_subdomains": true }, { "name": "google.com.af", "policy": "google", "include_subdomains": true }, { "name": "google.com.ag", "policy": "google", "include_subdomains": true }, { "name": "google.com.ai", "policy": "google", "include_subdomains": true }, { "name": "google.co.ma", "policy": "google", "include_subdomains": true }, { "name": "google.com.ar", "policy": "google", "include_subdomains": true }, { "name": "google.com.au", "policy": "google", "include_subdomains": true }, { "name": "google.com.bd", "policy": "google", "include_subdomains": true }, { "name": "google.com.bh", "policy": "google", "include_subdomains": true }, { "name": "google.com.bn", "policy": "google", "include_subdomains": true }, { "name": "google.com.bo", "policy": "google", "include_subdomains": true }, { "name": "google.com.br", "policy": "google", "include_subdomains": true }, { "name": "google.com.by", "policy": "google", "include_subdomains": true }, { "name": "google.com.bz", "policy": "google", "include_subdomains": true }, { "name": "google.com.cn", "policy": "google", "include_subdomains": true }, { "name": "google.com.co", "policy": "google", "include_subdomains": true }, { "name": "google.com.cu", "policy": "google", "include_subdomains": true }, { "name": "google.com.cy", "policy": "google", "include_subdomains": true }, { "name": "google.com.do", "policy": "google", "include_subdomains": true }, { "name": "google.com.ec", "policy": "google", "include_subdomains": true }, { "name": "google.com.eg", "policy": "google", "include_subdomains": true }, { "name": "google.com.et", "policy": "google", "include_subdomains": true }, { "name": "google.com.fj", "policy": "google", "include_subdomains": true }, { "name": "google.com.ge", "policy": "google", "include_subdomains": true }, { "name": "google.com.gh", "policy": "google", "include_subdomains": true }, { "name": "google.com.gi", "policy": "google", "include_subdomains": true }, { "name": "google.com.gr", "policy": "google", "include_subdomains": true }, { "name": "google.com.gt", "policy": "google", "include_subdomains": true }, { "name": "google.com.hk", "policy": "google", "include_subdomains": true }, { "name": "google.com", "policy": "google", "include_subdomains": true }, { "name": "google.com.iq", "policy": "google", "include_subdomains": true }, { "name": "google.com.jm", "policy": "google", "include_subdomains": true }, { "name": "google.com.jo", "policy": "google", "include_subdomains": true }, { "name": "google.com.kh", "policy": "google", "include_subdomains": true }, { "name": "google.com.kw", "policy": "google", "include_subdomains": true }, { "name": "google.com.lb", "policy": "google", "include_subdomains": true }, { "name": "google.com.ly", "policy": "google", "include_subdomains": true }, { "name": "googlecommerce.com", "policy": "google", "include_subdomains": true }, { "name": "google.com.mt", "policy": "google", "include_subdomains": true }, { "name": "google.com.mx", "policy": "google", "include_subdomains": true }, { "name": "google.com.my", "policy": "google", "include_subdomains": true }, { "name": "google.com.na", "policy": "google", "include_subdomains": true }, { "name": "google.com.nf", "policy": "google", "include_subdomains": true }, { "name": "google.com.ng", "policy": "google", "include_subdomains": true }, { "name": "google.com.ni", "policy": "google", "include_subdomains": true }, { "name": "google.com.np", "policy": "google", "include_subdomains": true }, { "name": "google.com.nr", "policy": "google", "include_subdomains": true }, { "name": "google.com.om", "policy": "google", "include_subdomains": true }, { "name": "google.com.pa", "policy": "google", "include_subdomains": true }, { "name": "google.com.pe", "policy": "google", "include_subdomains": true }, { "name": "google.com.ph", "policy": "google", "include_subdomains": true }, { "name": "google.com.pk", "policy": "google", "include_subdomains": true }, { "name": "google.com.pl", "policy": "google", "include_subdomains": true }, { "name": "google.com.pr", "policy": "google", "include_subdomains": true }, { "name": "google.com.py", "policy": "google", "include_subdomains": true }, { "name": "google.com.qa", "policy": "google", "include_subdomains": true }, { "name": "google.com.ru", "policy": "google", "include_subdomains": true }, { "name": "google.com.sa", "policy": "google", "include_subdomains": true }, { "name": "google.com.sb", "policy": "google", "include_subdomains": true }, { "name": "google.com.sg", "policy": "google", "include_subdomains": true }, { "name": "google.com.sl", "policy": "google", "include_subdomains": true }, { "name": "google.com.sv", "policy": "google", "include_subdomains": true }, { "name": "google.com.tj", "policy": "google", "include_subdomains": true }, { "name": "google.com.tn", "policy": "google", "include_subdomains": true }, { "name": "google.com.tr", "policy": "google", "include_subdomains": true }, { "name": "google.com.tw", "policy": "google", "include_subdomains": true }, { "name": "google.com.ua", "policy": "google", "include_subdomains": true }, { "name": "google.com.uy", "policy": "google", "include_subdomains": true }, { "name": "google.com.vc", "policy": "google", "include_subdomains": true }, { "name": "google.com.ve", "policy": "google", "include_subdomains": true }, { "name": "google.com.vn", "policy": "google", "include_subdomains": true }, { "name": "google.co.mz", "policy": "google", "include_subdomains": true }, { "name": "google.co.nz", "policy": "google", "include_subdomains": true }, { "name": "google.co.th", "policy": "google", "include_subdomains": true }, { "name": "google.co.tz", "policy": "google", "include_subdomains": true }, { "name": "google.co.ug", "policy": "google", "include_subdomains": true }, { "name": "google.co.uk", "policy": "google", "include_subdomains": true }, { "name": "google.co.uz", "policy": "google", "include_subdomains": true }, { "name": "google.co.ve", "policy": "google", "include_subdomains": true }, { "name": "google.co.vi", "policy": "google", "include_subdomains": true }, { "name": "google.co.za", "policy": "google", "include_subdomains": true }, { "name": "google.co.zm", "policy": "google", "include_subdomains": true }, { "name": "google.co.zw", "policy": "google", "include_subdomains": true }, { "name": "google.cv", "policy": "google", "include_subdomains": true }, { "name": "google.cz", "policy": "google", "include_subdomains": true }, { "name": "google.de", "policy": "google", "include_subdomains": true }, { "name": "google.dj", "policy": "google", "include_subdomains": true }, { "name": "google.dk", "policy": "google", "include_subdomains": true }, { "name": "google.dm", "policy": "google", "include_subdomains": true }, { "name": "google.dz", "policy": "google", "include_subdomains": true }, { "name": "google.ee", "policy": "google", "include_subdomains": true }, { "name": "google.es", "policy": "google", "include_subdomains": true }, { "name": "google.fi", "policy": "google", "include_subdomains": true }, { "name": "google.fm", "policy": "google", "include_subdomains": true }, { "name": "google.fr", "policy": "google", "include_subdomains": true }, { "name": "google.ga", "policy": "google", "include_subdomains": true }, { "name": "google.ge", "policy": "google", "include_subdomains": true }, { "name": "google.gg", "policy": "google", "include_subdomains": true }, { "name": "google.gl", "policy": "google", "include_subdomains": true }, { "name": "google.gm", "policy": "google", "include_subdomains": true }, { "name": "google.gp", "policy": "google", "include_subdomains": true }, { "name": "google.gr", "policy": "google", "include_subdomains": true }, { "name": "googlegroups.com", "policy": "google", "include_subdomains": true }, { "name": "google.gy", "policy": "google", "include_subdomains": true }, { "name": "google.hk", "policy": "google", "include_subdomains": true }, { "name": "google.hn", "policy": "google", "include_subdomains": true }, { "name": "google.hr", "policy": "google", "include_subdomains": true }, { "name": "google.ht", "policy": "google", "include_subdomains": true }, { "name": "google.hu", "policy": "google", "include_subdomains": true }, { "name": "google.ie", "policy": "google", "include_subdomains": true }, { "name": "google.im", "policy": "google", "include_subdomains": true }, { "name": "google.info", "policy": "google", "include_subdomains": true }, { "name": "google.iq", "policy": "google", "include_subdomains": true }, { "name": "google.is", "policy": "google", "include_subdomains": true }, { "name": "google.it.ao", "policy": "google", "include_subdomains": true }, { "name": "google.it", "policy": "google", "include_subdomains": true }, { "name": "google.je", "policy": "google", "include_subdomains": true }, { "name": "google.jobs", "policy": "google", "include_subdomains": true }, { "name": "google.jo", "policy": "google", "include_subdomains": true }, { "name": "google.jp", "policy": "google", "include_subdomains": true }, { "name": "google.kg", "policy": "google", "include_subdomains": true }, { "name": "google.ki", "policy": "google", "include_subdomains": true }, { "name": "google.kz", "policy": "google", "include_subdomains": true }, { "name": "google.la", "policy": "google", "include_subdomains": true }, { "name": "google.li", "policy": "google", "include_subdomains": true }, { "name": "google.lk", "policy": "google", "include_subdomains": true }, { "name": "google.lt", "policy": "google", "include_subdomains": true }, { "name": "google.lu", "policy": "google", "include_subdomains": true }, { "name": "google.lv", "policy": "google", "include_subdomains": true }, { "name": "google.md", "policy": "google", "include_subdomains": true }, { "name": "google.me", "policy": "google", "include_subdomains": true }, { "name": "google.mg", "policy": "google", "include_subdomains": true }, { "name": "google.mk", "policy": "google", "include_subdomains": true }, { "name": "google.ml", "policy": "google", "include_subdomains": true }, { "name": "google.mn", "policy": "google", "include_subdomains": true }, { "name": "google.ms", "policy": "google", "include_subdomains": true }, { "name": "google.mu", "policy": "google", "include_subdomains": true }, { "name": "google.mv", "policy": "google", "include_subdomains": true }, { "name": "google.mw", "policy": "google", "include_subdomains": true }, { "name": "google.ne", "policy": "google", "include_subdomains": true }, { "name": "google.ne.jp", "policy": "google", "include_subdomains": true }, { "name": "google.net", "policy": "google", "include_subdomains": true }, { "name": "google.nl", "policy": "google", "include_subdomains": true }, { "name": "google.no", "policy": "google", "include_subdomains": true }, { "name": "google.nr", "policy": "google", "include_subdomains": true }, { "name": "google.nu", "policy": "google", "include_subdomains": true }, { "name": "google.off.ai", "policy": "google", "include_subdomains": true }, { "name": "google.pk", "policy": "google", "include_subdomains": true }, { "name": "google.pl", "policy": "google", "include_subdomains": true }, { "name": "google.pn", "policy": "google", "include_subdomains": true }, { "name": "google.ps", "policy": "google", "include_subdomains": true }, { "name": "google.pt", "policy": "google", "include_subdomains": true }, { "name": "google.ro", "policy": "google", "include_subdomains": true }, { "name": "google.rs", "policy": "google", "include_subdomains": true }, { "name": "google.ru", "policy": "google", "include_subdomains": true }, { "name": "google.rw", "policy": "google", "include_subdomains": true }, { "name": "google.sc", "policy": "google", "include_subdomains": true }, { "name": "google.se", "policy": "google", "include_subdomains": true }, { "name": "google.sh", "policy": "google", "include_subdomains": true }, { "name": "google.si", "policy": "google", "include_subdomains": true }, { "name": "google.sk", "policy": "google", "include_subdomains": true }, { "name": "google.sm", "policy": "google", "include_subdomains": true }, { "name": "google.sn", "policy": "google", "include_subdomains": true }, { "name": "google.so", "policy": "google", "include_subdomains": true }, { "name": "google.st", "policy": "google", "include_subdomains": true }, { "name": "googlesyndication.com", "policy": "google", "include_subdomains": true }, { "name": "googletagmanager.com", "policy": "google", "include_subdomains": true }, { "name": "googletagservices.com", "policy": "google", "include_subdomains": true }, { "name": "google.td", "policy": "google", "include_subdomains": true }, { "name": "google.tg", "policy": "google", "include_subdomains": true }, { "name": "google.tk", "policy": "google", "include_subdomains": true }, { "name": "google.tl", "policy": "google", "include_subdomains": true }, { "name": "google.tm", "policy": "google", "include_subdomains": true }, { "name": "google.tn", "policy": "google", "include_subdomains": true }, { "name": "google.to", "policy": "google", "include_subdomains": true }, { "name": "google.tt", "policy": "google", "include_subdomains": true }, { "name": "googleusercontent.com", "policy": "google", "include_subdomains": true }, { "name": "google.ua", "policy": "google", "include_subdomains": true }, { "name": "google.us", "policy": "google", "include_subdomains": true }, { "name": "google.uz", "policy": "google", "include_subdomains": true }, { "name": "google.vg", "policy": "google", "include_subdomains": true }, { "name": "googlevideo.com", "policy": "google", "include_subdomains": true }, { "name": "google.vu", "policy": "google", "include_subdomains": true }, { "name": "googleweblight.com", "policy": "google", "include_subdomains": true }, { "name": "google.ws", "policy": "google", "include_subdomains": true }, { "name": "gstatic.com", "policy": "google", "include_subdomains": true }, { "name": "gstatic.cn", "policy": "google", "include_subdomains": true }, { "name": "gvt1.com", "policy": "google", "include_subdomains": true }, { "name": "static.googleadsserving.cn", "policy": "google", "include_subdomains": true }, { "name": "urchin.com", "policy": "google", "include_subdomains": true }, { "name": "www.googlegroups.com", "policy": "google", "include_subdomains": true }, { "name": "youtu.be", "policy": "google", "include_subdomains": true }, { "name": "youtube-nocookie.com", "policy": "google", "include_subdomains": true }, { "name": "ytimg.com", "policy": "google", "include_subdomains": true }, // Enforce HSTS and public key pins for Yahoo domains. { "name": "at.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "au.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "az.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "be.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "bi.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "br.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "ca.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "cd.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "cg.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "chfr.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "chit.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "ch.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "cl.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "cn.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "co.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "cr.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "ct.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "de.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "dk.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "do.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "en-maktoob.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "espanol.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "es.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "fi.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "fj.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "fr.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "gl.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "gm.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "gr.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "hk.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "hn.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "hu.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "id.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "ie.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "in.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "it.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "kr.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "kz.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "li.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "lt.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "lu.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "lv.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "maktoob.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "malaysia.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "mt.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "mu.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "mw.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "mx.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "ni.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "nl.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "no.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "np.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "nz.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "pa.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "pe.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "ph.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "pk.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "pl.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "pr.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "py.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "qc.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "ro.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "ru.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "rw.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "se.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "sg.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "sv.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "th.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "tr.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "tv.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "tw.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "ua.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "uk.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "uy.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "uz.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "ve.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "vn.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "xa.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "za.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "zh.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "login.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "mail.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "edit.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "facebook.com", "policy": "custom", "mode": "force-https" }, { "name": "www.facebook.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "m.facebook.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "tablet.facebook.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "secure.facebook.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "pixel.facebook.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "apps.facebook.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "upload.facebook.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "developers.facebook.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "touch.facebook.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "mbasic.facebook.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "code.facebook.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "t.facebook.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "mtouch.facebook.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "business.facebook.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "research.facebook.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "messenger.com", "policy": "custom", "mode": "force-https" }, { "name": "www.messenger.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, // Enforce HSTS for Twitter domains. { "name": "twitter.com", "policy": "custom", "mode": "force-https" }, { "name": "www.twitter.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, // START OF LEGACY MANUAL CUSTOM ENTRIES { "name": "www.paypal.com", "policy": "custom", "mode": "force-https" }, { "name": "paypal.com", "policy": "custom", "mode": "force-https" }, { "name": "www.elanex.biz", "policy": "custom", "mode": "force-https" }, { "name": "www.noisebridge.net", "policy": "custom", "mode": "force-https" }, { "name": "neg9.org", "policy": "custom", "mode": "force-https" }, { "name": "factor.cc", "policy": "custom", "mode": "force-https" }, { "name": "aladdinschools.appspot.com", "policy": "custom", "mode": "force-https" }, { "name": "www.paycheckrecords.com", "policy": "custom", "mode": "force-https" }, { "name": "lastpass.com", "policy": "custom", "mode": "force-https" }, { "name": "www.lastpass.com", "policy": "custom", "mode": "force-https" }, { "name": "entropia.de", "policy": "custom", "mode": "force-https" }, { "name": "www.entropia.de", "policy": "custom", "mode": "force-https" }, { "name": "logentries.com", "policy": "custom", "mode": "force-https" }, { "name": "www.logentries.com", "policy": "custom", "mode": "force-https" }, { "name": "dropcam.com", "policy": "custom", "mode": "force-https" }, { "name": "www.dropcam.com", "policy": "custom", "mode": "force-https" }, { "name": "epoxate.com", "policy": "custom", "mode": "force-https" }, { "name": "torproject.org", "policy": "custom", "mode": "force-https" }, { "name": "blog.torproject.org", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "check.torproject.org", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "www.torproject.org", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "dist.torproject.org", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "ledgerscope.net", "policy": "custom", "mode": "force-https" }, { "name": "www.ledgerscope.net", "policy": "custom", "mode": "force-https" }, { "name": "greplin.com", "policy": "custom", "mode": "force-https" }, { "name": "www.greplin.com", "policy": "custom", "mode": "force-https" }, { "name": "mydigipass.com", "policy": "custom", "mode": "force-https" }, { "name": "www.mydigipass.com", "policy": "custom", "mode": "force-https" }, { "name": "developer.mydigipass.com", "policy": "custom", "mode": "force-https" }, { "name": "www.developer.mydigipass.com", "policy": "custom", "mode": "force-https" }, { "name": "sandbox.mydigipass.com", "policy": "custom", "mode": "force-https" }, { "name": "www.sandbox.mydigipass.com", "policy": "custom", "mode": "force-https" }, { "name": "crypto.cat", "policy": "custom", "mode": "force-https" }, { "name": "braintreepayments.com", "policy": "custom", "mode": "force-https" }, { "name": "www.braintreepayments.com", "policy": "custom", "mode": "force-https" }, { "name": "emailprivacytester.com", "policy": "custom", "mode": "force-https" }, { "name": "jitsi.org", "policy": "custom", "mode": "force-https" }, { "name": "www.jitsi.org", "policy": "custom", "mode": "force-https" }, { "name": "download.jitsi.org", "policy": "custom", "mode": "force-https" }, { "name": "irccloud.com", "policy": "custom", "mode": "force-https" }, { "name": "www.irccloud.com", "policy": "custom", "mode": "force-https" }, { "name": "alpha.irccloud.com", "policy": "custom", "mode": "force-https" }, { "name": "neonisi.com", "policy": "custom", "mode": "force-https" }, { "name": "www.makeyourlaws.org", "policy": "custom", "mode": "force-https" }, { "name": "surfeasy.com", "policy": "custom", "mode": "force-https" }, { "name": "www.surfeasy.com", "policy": "custom", "mode": "force-https" }, { "name": "packagist.org", "policy": "custom", "mode": "force-https" }, { "name": "lookout.com", "policy": "custom", "mode": "force-https" }, { "name": "www.lookout.com", "policy": "custom", "mode": "force-https" }, { "name": "mylookout.com", "policy": "custom", "mode": "force-https" }, { "name": "www.mylookout.com", "policy": "custom", "mode": "force-https" }, { "name": "therapynotes.com", "policy": "custom", "mode": "force-https" }, { "name": "www.therapynotes.com", "policy": "custom", "mode": "force-https" }, { "name": "mega.co.nz", "policy": "custom", "mode": "force-https" }, { "name": "writeapp.me", "policy": "custom", "mode": "force-https" }, { "name": "ssl.panoramio.com", "policy": "custom", "mode": "force-https" }, { "name": "kiwiirc.com", "policy": "custom", "mode": "force-https" }, { "name": "simple.com", "policy": "custom", "mode": "force-https" }, { "name": "www.simple.com", "policy": "custom", "mode": "force-https" }, { "name": "fj.simple.com", "policy": "custom", "mode": "force-https" }, { "name": "api.simple.com", "policy": "custom", "mode": "force-https" }, { "name": "grc.com", "policy": "custom", "mode": "force-https" }, { "name": "www.grc.com", "policy": "custom", "mode": "force-https" }, { "name": "linode.com", "policy": "custom", "mode": "force-https" }, { "name": "www.linode.com", "policy": "custom", "mode": "force-https" }, { "name": "manager.linode.com", "policy": "custom", "mode": "force-https" }, { "name": "blog.linode.com", "policy": "custom", "mode": "force-https" }, { "name": "library.linode.com", "policy": "custom", "mode": "force-https" }, { "name": "forum.linode.com", "policy": "custom", "mode": "force-https" }, { "name": "p.linode.com", "policy": "custom", "mode": "force-https" }, { "name": "paste.linode.com", "policy": "custom", "mode": "force-https" }, { "name": "pastebin.linode.com", "policy": "custom", "mode": "force-https" }, { "name": "carezone.com", "policy": "custom", "mode": "force-https" }, { "name": "bcrook.com", "policy": "custom", "mode": "force-https" }, { "name": "lumi.do", "policy": "custom", "mode": "force-https" }, { "name": "kinsights.com", "policy": "custom", "mode": "force-https" }, { "name": "simbolo.co.uk", "policy": "custom", "mode": "force-https" }, { "name": "www.simbolo.co.uk", "policy": "custom", "mode": "force-https" }, { "name": "zenpayroll.com", "policy": "custom", "mode": "force-https" }, { "name": "www.zenpayroll.com", "policy": "custom", "mode": "force-https" }, { "name": "get.zenpayroll.com", "policy": "custom", "mode": "force-https" }, { "name": "errors.zenpayroll.com", "policy": "custom", "mode": "force-https" }, { "name": "manage.zenpayroll.com", "policy": "custom", "mode": "force-https" }, { "name": "data.qld.gov.au", "policy": "custom", "mode": "force-https" }, { "name": "publications.qld.gov.au", "policy": "custom", "mode": "force-https" }, { "name": "passport.yandex.ru", "policy": "custom", "mode": "force-https" }, { "name": "passport.yandex.com", "policy": "custom", "mode": "force-https" }, { "name": "passport.yandex.ua", "policy": "custom", "mode": "force-https" }, { "name": "passport.yandex.by", "policy": "custom", "mode": "force-https" }, { "name": "passport.yandex.kz", "policy": "custom", "mode": "force-https" }, { "name": "passport.yandex.com.tr", "policy": "custom", "mode": "force-https" }, { "name": "getcloak.com", "policy": "custom", "mode": "force-https" }, { "name": "www.getcloak.com", "policy": "custom", "mode": "force-https" }, { "name": "opsmate.com", "policy": "custom", "mode": "force-https" }, { "name": "www.evernote.com", "policy": "custom", "mode": "force-https" }, { "name": "app.yinxiang.com", "policy": "custom", "mode": "force-https" }, { "name": "neilwynne.com", "policy": "custom", "mode": "force-https" }, { "name": "calyxinstitute.org", "policy": "custom", "mode": "force-https" }, { "name": "www.calyxinstitute.org", "policy": "custom", "mode": "force-https" }, { "name": "aclu.org", "policy": "custom", "mode": "force-https" }, { "name": "www.aclu.org", "policy": "custom", "mode": "force-https" }, { "name": "www.banking.co.at", "policy": "custom", "mode": "force-https" }, { "name": "mbp.banking.co.at", "policy": "custom", "mode": "force-https" }, { "name": "feedbin.com", "policy": "custom", "mode": "force-https" }, { "name": "python.org", "policy": "custom", "mode": "force-https" }, { "name": "activiti.alfresco.com", "policy": "custom", "mode": "force-https" }, { "name": "wepay.com", "policy": "custom", "mode": "force-https" }, { "name": "www.wepay.com", "policy": "custom", "mode": "force-https" }, { "name": "static.wepay.com", "policy": "custom", "mode": "force-https" }, { "name": "stage.wepay.com", "policy": "custom", "mode": "force-https" }, { "name": "vmoagents.com", "policy": "custom", "mode": "force-https" }, { "name": "pult.co", "policy": "custom", "mode": "force-https" }, { "name": "www.eternalgoth.co.uk", "policy": "custom", "mode": "force-https" }, { "name": "usaa.com", "policy": "custom", "mode": "force-https" }, { "name": "www.usaa.com", "policy": "custom", "mode": "force-https" }, { "name": "mobile.usaa.com", "policy": "custom", "mode": "force-https" }, { "name": "detectify.com", "policy": "custom", "mode": "force-https" }, { "name": "tinfoilsecurity.com", "policy": "custom", "mode": "force-https" }, { "name": "www.tinfoilsecurity.com", "policy": "custom", "mode": "force-https" }, { "name": "imouto.my", "policy": "custom", "mode": "force-https" }, { "name": "www.capitainetrain.com", "policy": "custom", "mode": "force-https" }, { "name": "dropbox.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "www.dropbox.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "jackyyf.com", "policy": "custom", "mode": "force-https" }, { "name": "gamesdepartment.co.uk", "policy": "custom", "mode": "force-https" }, { "name": "gparent.org", "policy": "custom", "mode": "force-https" }, { "name": "blog.gparent.org", "policy": "custom", "mode": "force-https" }, { "name": "m.gparent.org", "policy": "custom", "mode": "force-https" }, { "name": "ca.gparent.org", "policy": "custom", "mode": "force-https" }, { "name": "daphne.informatik.uni-freiburg.de", "policy": "custom", "mode": "force-https" }, { "name": "honeybadger.io", "policy": "custom", "mode": "force-https" }, { "name": "www.honeybadger.io", "policy": "custom", "mode": "force-https" }, { "name": "rme.li", "policy": "custom", "mode": "force-https" }, { "name": "www.rme.li", "policy": "custom", "mode": "force-https" }, { "name": "viasinc.com", "policy": "custom", "mode": "force-https" }, { "name": "spideroak.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "guidetoiceland.is", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "carbonmade.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "branchtrack.com", "policy": "custom", "mode": "force-https" }, { "name": "flipagram.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "www.icann.org", "policy": "custom", "mode": "force-https" }, { "name": "www.vino75.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "www.vino.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "fastmail.com", "policy": "custom", "mode": "force-https" }, { "name": "woima.fi", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "www.captaintrain.com", "policy": "custom", "mode": "force-https" }, { "name": "united.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "rememberthemilk.com", "policy": "custom", "mode": "force-https" }, // END OF LEGACY MANUAL CUSTOM ENTRIES // START OF LEGACY MANUAL HSTS ENTRIES { "name": "jottit.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "sunshinepress.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "riseup.net", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "members.mayfirst.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "support.mayfirst.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "id.mayfirst.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "lists.mayfirst.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "webmail.mayfirst.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "roundcube.mayfirst.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "ottospora.nl", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "keyerror.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "romab.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "stripe.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "cloudsecurityalliance.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "login.sapo.pt", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "mattmccutchen.net", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "betnet.fr", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "uprotect.it", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "square.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "cert.se", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "simon.butcher.name", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "linx.net", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "www.moneybookers.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "luneta.nearbuysystems.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "ubertt.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "pixi.me", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "grepular.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "bigshinylock.minazo.net", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "crate.io", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "braintreegateway.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "tor2web.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "business.medbank.com.mt", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "arivo.com.br", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "www.apollo-auto.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "www.cueup.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "passwd.io", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "browserid.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "login.persona.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "www.neonisi.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "shops.neonisi.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "piratenlogin.de", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "howrandom.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "fatzebra.com.au", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "csawctf.poly.edu", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "makeyourlaws.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "iop.intuit.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "dm.lookout.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "business.lookout.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "blog.lookout.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "faq.lookout.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "platform.lookout.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "email.lookout.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "app.lookout.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "api.lookout.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "keymaster.lookout.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "mygadgetguardian.lookout.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "discovery.lookout.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "mobilethreat.net", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "mobilethreatnetwork.net", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "itriskltd.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "stocktrade.de", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "openshift.redhat.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "wiz.biz", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "my.onlime.ch", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "webmail.onlime.ch", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "crm.onlime.ch", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "www.gov.uk", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "silentcircle.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "silentcircle.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "serverdensity.io", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "my.alfresco.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "webmail.gigahost.dk", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "paymill.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "paymill.de", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "gocardless.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "espra.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "zoo24.de", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "api.mega.co.nz", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "lockify.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "bugzilla.mozilla.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "members.nearlyfreespeech.net", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "pay.gigahost.dk", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "controlcenter.gigahost.dk", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "bank.simple.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "bassh.net", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "sah3.net", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "inertianetworks.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "conformal.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "cyphertite.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "bccx.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "launchkey.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "carlolly.co.uk", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "www.cyveillance.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "blog.cyveillance.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "whonix.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "shodan.io", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "rapidresearch.me", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "surkatty.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "securityheaders.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "haste.ch", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "mudcrab.us", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "mediacru.sh", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "lolicore.ch", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "cloudns.com.au", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "oplop.appspot.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "wiki.python.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "appseccalifornia.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "crowdcurity.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "saturngames.co.uk", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "strongest-privacy.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "id.atlassian.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "cupcake.io", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "cupcake.is", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "tent.io", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "cybozu.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "davidlyness.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "medium.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "getlantern.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "gernert-server.de", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "skydrive.live.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "lifeguard.aecom.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "go.xero.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "login.xero.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "my.xero.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "payroll.xero.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "in.xero.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "api.xero.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "eff.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "mail.de", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "mnsure.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "www.opsmate.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "f-droid.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "blacklane.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "boxcryptor.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "prodpad.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "mailbox.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "roddis.net", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "fiken.no", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "fairbill.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "nexth.net", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "nexth.us", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "nexth.de", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "souyar.net", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "souyar.de", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "souyar.us", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "heha.co", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "passwordbox.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "pypi.python.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "www.python.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "docs.python.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "encircleapp.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "keepersecurity.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "keeperapp.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "donmez.ws", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "cloudcert.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "seifried.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "adsfund.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "dillonkorman.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "edmodo.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "app.manilla.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "harvestapp.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "anycoin.me", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "noexpect.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "subrosa.io", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "manageprojects.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "vocaloid.my", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "sakaki.anime.my", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "reviews.anime.my", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "miku.hatsune.my", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "webcollect.org.uk", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "accounts.firefox.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "z.ai", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "wildbee.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "portal.tirol.gv.at", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "code-poets.co.uk", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "flynn.io", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "hackerone.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "hackerone-user-content.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "www.gamesdepartment.co.uk", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "schokokeks.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "mwe.st", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "ub3rk1tten.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "mykolab.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "semenkovich.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "dlc.viasinc.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "www.viasinc.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "www.etsy.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "etsysecure.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "hg.python.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "doc.python.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "console.python.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "login.ubuntu.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "pay.ubuntu.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "login.launchpad.net", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "fassadenverkleidung24.de", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "landscape.canonical.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "auth.mail.ru", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "e.mail.ru", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "touch.mail.ru", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "light.mail.ru", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "m.mail.ru", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "arty.name", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "resources.flowfinity.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "preloaded-hsts.badssl.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "korni22.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "hana.ondemand.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "www.fastmail.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "reporturi.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "reporturi.io", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "report-uri.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "thundr.eu", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "www.united.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "mobile.united.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "smartphone.continental.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "www.rememberthemilk.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, // END OF LEGACY MANUAL HSTS ENTRIES // START OF LEGACY 18-WEEK BULK HSTS ENTRIES { "name": "beneathvt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudup.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isitchristmas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "markusueberallassetmanagement.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miskatonic.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "optimus.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "projektzentrisch.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zotero.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adamkostecki.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "archlinux.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "baruch.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bl4ckb0x.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bl4ckb0x.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bl4ckb0x.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bl4ckb0x.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bl4ckb0x.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "conrad-kostecki.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jonaswitmer.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loenshotel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pierre-schmitz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "riccy.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "explodie.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aie.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kernel-error.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rosenkeller.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "posteo.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ethitter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rws-vertriebsportal.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matatall.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "net-safe.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "okmx.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "securify.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sysctl.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zeplin.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "github.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ideaweb.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codepref.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jonnybarnes.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prefontaine.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tresorit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "html5.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liebel.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minikneet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mkcert.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oscarvk.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "plothost.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sslmate.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "steventress.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "willnorris.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anetaben.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "limpid.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quuz.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whatwg.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enorekcah.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gamercredo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "garron.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gmcd.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hpac-portal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "omitech.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prakharprasad.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sciencex.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wepay.in.th", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cujanovic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deadbeef.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freenetproject.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ljs.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arendburgers.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitgo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "curlybracket.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hansvaneijsden.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moriz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nos-oignons.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roland.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timtaubert.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "triop.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ukhas.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weblogzwolle.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ypart.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cktennis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jmedved.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michalspacek.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mike-bland.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "caremad.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cyon.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fakturoid.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "khanovaskola.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ruudkoot.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yahvehyireh.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blockchain.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pestici.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mutantmonkey.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mutantmonkey.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "exiahost.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leadbook.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lilpwny.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pentesterlab.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pypa.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rlalique.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daveoc64.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "manicode.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "afp548.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atlassian.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "curiosity-driven.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "i5y.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jettshome.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keeleysam.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kirkforcongress.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kirkforsenate.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netztest.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "puac.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "samba.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sorz.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tucuxi.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brossmanit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "calomel.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eduroam.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gambitnash.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "herocentral.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hicoria.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kirei.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "namepros.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netera.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saintsrobotics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "samuelkeeley.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tbspace.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thomastimepieces.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whocalld.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gaytorrent.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "happylifestyle.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jmdekker.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "klarmobil-empfehlen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leonklingele.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sysdb.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zhovner.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": "darom.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fedorahosted.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firma-offshore.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getfedora.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "megaplan.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miketabor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "msa-aesch.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phoenix.dj", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pmg-offshore-company.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "puiterwijk.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "release-monitoring.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "terrty.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uae-company-service.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wills.co.tt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xuntier.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "classdojo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dnsman.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elliquiy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paulschreiber.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adamstas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "akselinurmio.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coinbase.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daylightpirates.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dubrovskiy.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imgg.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jeremyness.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kanzashi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mattfin.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "newkaliningrad.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "orcahq.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saulchristie.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "securedrop.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stevegrav.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tdrs.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unitedadmins.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "utilityapi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2600hq.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alza.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptography.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diedrich.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "johnmichel.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "munki.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skeeley.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "syzygy-tables.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "todoist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zravypapir.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arbitrary.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danw.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "defcon.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firebirdrangecookers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hboeck.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "indovinabank.com.vn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mindcoding.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomrichards.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tuitle.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alza.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alza.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alzashop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fuzzing-project.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "genuxtsg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grocock.me.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "groszek.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ieval.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keybase.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ks-watch.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mykontool.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robertof.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scrap.tf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stirling.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "taken.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teamupturn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "akachanikuji.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anadoluefessk.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.com.tr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.com.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.hr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.mx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.rs", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "collinmbarrett.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "csacongress.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "czakey.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "czk.mk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "medovea.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "postfinance.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sec.gd", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "servertastic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexgaynor.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benchling.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bit-sentinel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doridian.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doridian.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ellegaard.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grandcapital.id", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kavovary-kava.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "noob-box.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pactf.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robtex.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rpy.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "storedsafe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tcgrepublic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "temp.pm", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thumbtack.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webmaniabr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wtfismyip.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xpd.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abiapp.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alaninkenya.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "auszeit.bio", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cardoni.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chriswarrick.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chroniclesofgeorge.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "d42.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daknob.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dnmlab.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fangs.ink", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feen.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getnikola.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "go-zh.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haveibeenpwned.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamielinux.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "juliansimioni.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lymia.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lyst.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mertcangokgoz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mjanja.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mobobe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "multigamecard.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mygretchen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ryan-goldstein.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "snazel.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zhang-hao.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andreasolsson.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "backschues.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "animesharp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bouncyball.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ccsys.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "collabornation.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chrismckee.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dotsiam.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "disorderboutique.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dorianmuthig.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fidanza.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hafniatimes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getdash.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dynamicsnetwork.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heh.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hoshinplan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iispeed.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jn1.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kingant.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kau-boys.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kinderbasar-luhe.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kau-boys.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kick-in.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kreativstrecke.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leerliga.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mblankhorst.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "millistream.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mega.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "navycs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nuos.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "parsemail.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "retroarms.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "retroarms.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schorelweb.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seminariruum.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "throwpass.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vcsjones.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wikidata.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wachter.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wpmeetup-berlin.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smiatek.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "canadalife.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chaosdorf.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clu-in.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dateno1.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dietrich.cx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dreid.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "empowerdb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greenroach.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "helloacm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "idndx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inbitcoin.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "justyy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linuxcommand.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maclemon.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "max-moeglich.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mediawiki.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "milahendri.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "msebera.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paysera.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reucon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ristioja.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shadowkitsune.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slainvet.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tanzhijun.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "totalcarcheck.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tuzaijidi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wikibooks.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wikimediafoundation.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wikinews.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wikiquote.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wikisource.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wikiversity.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wikivoyage.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wiktionary.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blog.gov.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codingforspeed.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gracedays.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pagure.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uploadbeta.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wikipedia.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bryanquigley.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "donateaday.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dragon-chem.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eelsden.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "happygadget.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imirhil.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "junethack.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mnd.sc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "polis.or.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quppa.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rot47.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slix.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stick2bike.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xd.cm", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zaufanatrzeciastrona.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davidgrudl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "duckduckstart.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "e-typ.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "etaes.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gmta.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ipv6-adresse.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jacekowski.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mirtes.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "musikkfondene.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nette.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phpfashion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vsean.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wpserp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zhihua-lai.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bcvps.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bouncyballs.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chaletmanager.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cuvva.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dolphin-it.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "parasitologyclub.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pilgermaske.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tlo.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudspace-analytics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "graingert.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "renuo.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "riskmitigation.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tech-seminar.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vulnerability.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "777coin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ad-notam.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ad-notam.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ad-notam.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ad-notam.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alpca.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ehipaa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emanuelduss.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "istheapplestoredown.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "juergenhecht.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mareklecian.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nekomimi.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rentinsingapore.com.sg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smartmessages.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "viemeister.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0xfc.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adduono.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alainwolf.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cavac.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "express-vpn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "filippo.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freedom.press", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fresh-hotel.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "htaccessbook.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "krypsys.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "perishablepress.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "plugin-planet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sambeso.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "selecadm.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smm.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thinkindifferent.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tunnelblick.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whatsmychaincert.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wp-tao.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zzsec.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apachelounge.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bwcscorecard.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "checktype.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comarkinstruments.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cvmu.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dhautefeuille.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dubrovskiy.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "espgg.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "expresshosting.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flow.su", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hilahdih.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "idaspis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kba-online.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mcrn.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moparisthebest.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moparisthebest.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moparisthebest.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pm13.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "publicsuffix.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slamix.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ulrik.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vyber-odhadce.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yoloboatrentals.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alphassl.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anzeiger.ag", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aryasenna.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "askwhy.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "askwhy.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atisoft.com.tr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atisoft.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atisoft.net.tr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atisoft.web.tr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "broersma.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "byrtz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elephpant.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "epay.bg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "espci.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ev-zertifikate.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fca-tools.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freelance.boutique", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "harvester.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heutger.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hpkp-faq.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "j3e.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liquid.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "missdream.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netwarc.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "postn.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "psw-group.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robandjanine.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rodolfo.gs", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shopbakersnook.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simphony.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sogutma.com.tr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ssl-zertifikate.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "steamdb.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "taborsky.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teampaddymurphy.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "threelions.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomasjacik.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trainex.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vyberodhadce.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wo2forum.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xetown.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xss.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0x90.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atolm.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codeux.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dziekonski.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eeqj.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "evasovova.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eyasc.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "helix.am", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hochhaus.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ikk.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "letras.mus.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "libsodium.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lukasberan.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "makowitz.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paratlan.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "poon.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "safar.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "samegoal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "samegoal.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schwinabart.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spdf.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stirlingpoon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tiens-ib.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tucny.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": "whatsapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "williamfeely.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adimaja.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alcazaar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arrakis.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "calaborlawnews.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudily.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "delfic.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "docemeldoces.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doctorwho.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "esg-abi2001.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fahrenwal.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fahrenwalde.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foray-jero.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "free.com.tw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geschwinder.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "helpconnect.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hoton.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inboxen.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "instant.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "istorrent.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jaba.hosting", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamonsilva.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kraft.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lmintlcx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "macgeneral.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maximeferon.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "monitman.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "online-casino.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onlinelegalmedia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "openstreetmap.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "osm.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "papayapythons.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": "pileofgarbage.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pm13.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pointiswunderland.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "preisser-it.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sandor.wtf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scanpay.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seo.consulting", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sheilasdrivingschool.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sslpoint.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "strugee.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tacticalsquare.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teleogistic.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "textualapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "torrent.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trufflemonkey.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unixadm.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unoccupyabq.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wartorngalaxy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webtorrent.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weeblr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whocalled.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wodka-division.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ze3kr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arjandejong.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bike-shack.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "casperpanel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chun.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dibiphp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dukun.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elpo.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "englishbulgaria.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "familieholme.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ff-bad-hoehenstadt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flat.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fortress.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ikvts.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kilobyte22.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "komoju.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kryx.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "macleod.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "multigeist.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "narfation.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ne-on.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "niftiestsoftware.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pretix.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pt-server.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slovakiana.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stuartbell.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "suche.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "texy.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thelocals.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tifan.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobiassattler.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "w.wiki", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wf-hosting.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wfh.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wfh.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yolobert.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adevel.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andreasfeusi.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "augustiner-kantorei-erfurt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "augustiner-kantorei.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "camperverzekerd.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cativa.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coiffeurschnittstelle.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "consonare.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "custodyxchange.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elemental.software", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eriix.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "f-thie.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "faizan.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flawlesscowboy.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fmarchal.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frankierprofi.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geek-hub.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "habarisoft.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hackthissite.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "huffduffer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hund.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iainsimms.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imlonghao.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "indust.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jennythebaker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jonaskjodt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kachlikova2.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "katka.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keke-shop.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "legendofkrystal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "levendwater.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "medo64.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mpc-hc.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "multitheftauto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mushikabu.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netfs.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ondrej.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "otya.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pan.digital", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peter.org.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "relisten.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "serbanpaun.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skyminds.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smares.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spicymatch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "starcomproj.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "steakovercooked.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "synony.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tetsumaki.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "touhou.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "typecodes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ukwct.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "use.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vimeo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wallingford.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "warr.ath.cx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wolfachtal-alpaka.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "woodomat.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "workingclassmedia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xkviz.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "akostecki.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "b-root-force.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bbnx.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bienici.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blendle.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blumenfeldart.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "charmander.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptoparty.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cyph.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daniel-ruf.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digitkon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "europop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haozi.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hotchillibox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inusasha.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ionlabs.kr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isopres.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jonlabelle.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kassa.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kjarrval.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marcoececilia.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "markusweimar.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "memo-linux.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nyantec.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "temizmama.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wis.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wisweb.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andrewsun.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aosus.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asun.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atlantichomes.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bm-trading.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ceopedia.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codabix.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codabix.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "creditkarma.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darkag.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eligible.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kle.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kleteckova.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "libreboot.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maowtm.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mintrak2.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "room208.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sailormoonevents.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saltstack.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zonglovani.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elbetech.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "healthiercompany.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dorianharmans.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inverselink-user-content.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inverselink.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abilymp06.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "actserv.co.ke", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "albion2.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexhd.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "allbenjoy.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "approbo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aprsdroid.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arima.co.ke", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "axrec.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "barbu.family", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benno.frl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benschnarr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "billaud.eu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blastersklan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blurringexistence.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bran.land", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bridholm.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buck.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buettgens.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "celti.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cerastar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cldly.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cornercircle.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daduke.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "degeberg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "disconformity.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "disinclined.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dkds.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drivenes.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dvbris.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dvbris.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elektropost.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "esko.bar", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fableforge.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feel.aero", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flocktofedora.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gamecollector.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geraintwhite.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gethttpsforfree.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gravitechthai.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "griesser2.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grog.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gropp.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hec.global", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hhhdb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iactu.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "investorforms.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iskaron.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iwalton.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jazzanet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jeremiahbenes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jultube.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kalami.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keaysmillwork.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kevinapease.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lacledeslan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lbayer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maelstrom.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marilsnijders.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mattandyana.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matthiasschwab.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matze.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mcl.gg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "metapeen.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "morbatex.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mytty.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nathanmfarrugia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nickrickard.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nicoknibbe.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "noordsee.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ollie.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onaboat.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onlinekasino.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ozvolvo.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "passieposse.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pataua.kiwi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pelanucto.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pennergold.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "petabits.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pgregg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "philphonic.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "polynomapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qingpei.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rapenroer.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rauros.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "renkenlaw.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rix.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rubenschulz.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "samifar.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sash.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schnouki.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "selcusters.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "serverco.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silentundo.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silverwind.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stalder.work", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "starsam80.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stderr.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sternplastic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sushifrick.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "swedishhost.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "swedishhost.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonage.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toncusters.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toutart.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "valkohattu.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vetinte.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vop.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "westcountrystalking.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wxster.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yanaduday.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yaxim.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yoramvandevelde.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "z1h.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "znation.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "14it.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abacustech.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aikido-linz.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aikido-wels.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ao2.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aposke.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arrmaforum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "audisto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "azzorti.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blogreen.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bramvanaken.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "canadiangamblingchoice.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "code.fm", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danjesensky.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davidmessenger.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deepbluecrafting.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dewalch.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eery.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eligrey.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enveloppenopmaat.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ewie.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fionamcbride.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fletchto99.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "formini.dz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freeboson.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freezion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fromscratch.rocks", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "garyjones.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gechr.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gordonobrecht.com", "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": "happyukgo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hpisavageforum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "id0-rsa.pub", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "innovaptor.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ip-life.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jaot.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jetsieswerda.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joerss.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kalender.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kapseli.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keops-spine.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keops-spine.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kmkz.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kolmann.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "krmela.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "largescaleforums.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "martelange.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mattandreko.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mitzpettel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mlemay.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "network23.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ninchat.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oceandns.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oceandns.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oftn.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "opus-codium.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ostendorf.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pajuvuo.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paradoxdesigns.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "placehold.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "protonmail.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "protonmail.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qtpower.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "r40.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "realmofespionage.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "serveroffline.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shulan.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sig6.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sigabrt.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skhoop.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soumikghosh.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spuffin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spydersec.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tf-network.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tfnapps.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thenocman.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theworldsend.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonsit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trimage.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webstore.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yusa.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zvps.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "21.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blackhelicopters.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "burzmali.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coursera.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptearth.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datascience.cafe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "finenet.com.tw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hirake55.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hx53.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kakaravaara.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leovanna.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "martinkus.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robohash.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seanholcroft.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sighup.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spielcasinos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "starpeak.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "talktwincities.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tenyx.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tit.systems", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tombrossman.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonymanning.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "3s-hosting.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atletika.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comodo.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digitalehandtekeningen.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ensured.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ensured.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "innovaptor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jmk.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prytkov.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saorsat.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ssbrm.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sslcertificaten.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sslcheck.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xolphin.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "3r.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aboutmyproperty.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ama.ne.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amateri.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ausschreibungen-suedtirol.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bcdonadio.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benmatthews.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bhuntr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cardstream.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "centralstatecu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "countybankdel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "criena.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datacalle.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "divegearexpress.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dpd.com.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ericdiao.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "euroshop.or.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fillmysuitca.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firecore.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flexport.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fly.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "functions-online.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "htmlacademy.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "juhakoho.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": "linkonaut.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mail4you.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marbogardenlidkoping.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matthewprenger.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mbilker.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mmonit.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": "pagewizz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "philadelphia.com.mx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pinkcasino.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "plainjs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quire.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slotboss.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soundgasm.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spectrosoftware.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "talentcast.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thecandidforum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theseed.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trabbel.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trackchair.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trineco.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trineco.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unicef.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weekdone.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wizzley.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wkv.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "word-grabber.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wunderkarten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zoznamrealit.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexmerkel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arbitrarion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bayden.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bildiri.ci", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bytesystems.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chorpinkpoemps.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "christianliebel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dcpower.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drpetervoigt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "finditez.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hennymerkel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mironized.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netvizura.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "novafreixo.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onvori.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rage4.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "storvann.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "storvann.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "structurally.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomudding.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yamadaya.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, // END OF LEGACY 18-WEEK BULK HSTS ENTRIES // Entries submitted through hstspreload.appspot.com in Chrome 51 or later. // These entries are subject to the continued requirements documented at // https://hstspreload.org/#continued-requirements // START OF 18-WEEK BULK HSTS ENTRIES { "name": "0x.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1st-community.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2kgwf.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "92url.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aatf.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aficionados.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agowa338.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alienstat.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alterbaum.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amnesy.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "and-stuff.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "annetta.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aramido.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "avtovokzaly.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "awxg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bebef.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bermytraq.bm", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bestessayhelp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bible-maroc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biblionaut.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "billiger-mietwagen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "billogram.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitref.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bl4ckb0x.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bluepoint.foundation", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "boringsmith.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "botox.bz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bubblegumblog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "c3w.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carigami.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cdnjs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cfcproperties.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cipherboy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cordlessdog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptonym.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cyberwire.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "d-20.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dag-konsult.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dammekens.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deathy.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "delta-data.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "devcu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dicionariofinanceiro.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dieti.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "disposable.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dnc.org.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domadillo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "driftdude.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drrr.chat", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ecchidreams.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ekostecki.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eligibleapi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elisabeth-kostecki.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elisabethkostecki.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "encfs.win", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erigrid.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erudikum.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "estebanborges.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "etyd.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "everling.lu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fakturi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "falsum.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feedhq.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fernandes.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fitzsim.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "florian-thie.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fnordserver.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fraho.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frank.fyi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frizo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frugro.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fsbpaintrock.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fxp.co.il", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fyn.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geli-graphics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "georgmayer.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "germandarknes.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getcarina.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gixtools.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goerres2014.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gospelvestcination.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hackmd.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haveforeningen-enghaven.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hebikhiv.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hentschke-bau.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hory.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hostmijnpagina.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "i--b.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ile-kalorii.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "in-flames.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ionx.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ischool.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itnota.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jaredfernandez.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jaymecd.rocks", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jensrex.dk", "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 }, { "name": "julibear.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "karsofsystems.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keisaku.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kempkens.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "killerrobots.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kirbear.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kylelaker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kyosaku.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lgiswa.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lgrs.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linuxhostsupport.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lover-bg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lwl.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mailfence.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "markido.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "masse.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maxtruxa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mce.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "merkel.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "metaether.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mheistermann.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "midair.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mireservaonline.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "misakiya.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moneygo.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moonagic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "murfy.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mx.org.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myownconference.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mystudy.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nargileh.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nierenpraxis-dr-merkel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nl-ix.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nomesbiblicos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nord-sud.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nutleyef.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oneweb.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onmaps.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "openmtbmap.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oznamovacipovinnost.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paragreen.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pastaenprosecco.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paxwinkel.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peername.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "plaintech.net.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "plumlocosoft.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "powerwellness-korecki.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "profidea.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pxx.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quietapple.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reanimated.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "redballoonsecurity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "revthefox.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "riyono.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rowancasting.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "s-cubed.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schreinerei-jahreis.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schritt4fit.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "semps.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shellfire.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shh.sh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simonsreich.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "singleuse.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sistem-maklumat.com.my", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slxh.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slxh.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smarthdd.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sme-gmbh.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sqlapius.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sqr-training.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ssl247.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ssl247.com.mx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ssl247.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sylvaindurand.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "t-hawk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "taquilla.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tepid.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theploughharborne.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theseoframework.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "throwaway.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tmi-products.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tmi-produkter.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonegidoarchief.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toshkov.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tout-art.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tradeinvent.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "troi.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tuxcloud.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "twd2.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tysye.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "umisonoda.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "urbanesecurity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "urspringer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "v2.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vandalfsen.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "volkergropp.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vxapps.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wave.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webstylemedia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wiedu.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wintodoor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wow-foederation.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--pbt947am3ab71g.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xrockx.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xuc.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yinlei.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "youkaryote.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "youkaryote.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zaalleatherwear.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zimiao.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "9vx.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "700.az", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acsemb.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abeus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aegee-utrecht.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alpencams.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arzid.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atnis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "badoo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biosbits.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoincore.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blueimp.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brefy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "callear.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "caasd.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "campfiretails.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cablemod.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "capecycles.co.za", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ceml.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "churchthemes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crumbcontrol.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "currency-strength.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cyberspect.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danielrozenberg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dehopre.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "derekkent.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dethemium.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digitaldeliarchive.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dvotx.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "effortlesshr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "easypv.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "egg-ortho.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eintageinzug.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "endlessdiy.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ensemble-rubato.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erichorstmanshof.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "filestar.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flightschoolbooking.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frtn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fuwafuwa.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geeklair.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gameisbest.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geneau.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ggservers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gianttree.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hallelujahsoftware.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hlfh.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "huagati.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hussam.eu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imguploaden.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inovatec.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "internetpro.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ipokabu.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "junglist.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jschumacher.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kandalife.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keithws.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kn007.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kinkenonline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kolmann.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kroon.email", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kuemmling.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "life-time.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loli.pet", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luxsci.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "magicball.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mastellone.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meteobox.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meteobox.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meteobox.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meteobox.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meteobox.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meteobox.mx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meteobox.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meteobox.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mjacobson.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mitrecaasd.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mnmt.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "modernapprenticeships.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nafod.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "namu.wiki", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nelhage.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "obsproject.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oogami.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onysix.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ostr.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "papa-webzeit.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "percolate.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "petruzz.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "parlamento.gub.uy", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pokeinthe.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pypi.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "punkapoule.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qkka.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rak-business-service.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "remonti.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "riscascape.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ruhrmobil-e.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sasyabapi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schnellno.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sectio-aurea.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "segulink.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "semps-2fa.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "semps-threema.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shadowmorph.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shareworx.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sillisalaatti.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "snazzie.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sparkforautism.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sunsetwx.com", "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 }, { "name": "szentistvanpt.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "takk.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theeyeopener.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thewhitneypaige.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timcamara.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tilikum.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tmf.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "topfivepercent.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "torrenttop100.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trommelwirbel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "typo3.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vereinscheck.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vgropp.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "volker-gropp.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wearegenki.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vkox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wbt-solutions.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wayohoo.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wbt-solutions.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wy6.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yclan.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zombiesecured.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adalis.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aistockcharts.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aljaspod.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aljaspod.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ams.co.rs", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amuq.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anxietyspace.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ascension.run", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "azort.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bittylicious.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biztera.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bleche-onlineshop.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blessedguy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "casa-due-pur.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "casa-due-pur.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "casa-due.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chromebookchart.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cjey.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ck.cx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clanrose.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codeit.guru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "colemak.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comff.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "commania.co.kr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "copypoison.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "covershousing.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "craigfrancis.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crstat.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cvlibrary.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daniel-baumann.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danielthompson.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "debtrecycling.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dgpot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edisonlee55.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edited.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emilstahl.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fashionunited.cl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fashionunited.com.ar", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fashionunited.hk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fashionunited.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fashionunited.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fenster-bank.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fenster-bank.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fonga.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fontein.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "georgioskontaxis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "georgioskontaxis.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "georgioskontaxis.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gerritcodereview.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getgeek.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gillmanandsoame.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "giunchi.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gkralik.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goudenharynck.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grandpadusercontent.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gregorywiest.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gsimagebank.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gsrc.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "helioanodyne.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "herringsresidence.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hititgunesi-tr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hostfission.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "instics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isvbscriptdead.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jakobejitblokaci.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jeffsanders.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "justinho.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "karmaflux.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kialo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kircp.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.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kortgebyr.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lavabit.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "le42mars.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "libnull.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "livingworduk.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lookastic.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lookastic.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lookastic.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loune.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lukasberan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luripump.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "magenda.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "makedin.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mcyukon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meme.institute", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mysignal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "narindal.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neswec.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netsite.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "okay.coffee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "online.marketing", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "open-infrastructure.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "panaxis.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pfa.or.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pinpointengineer.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pitchup.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pmalaty.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "princesparktouch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "progress-linux.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": "raphael.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roseitsolutions.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sansonehowell.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seconfig.sytes.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "server-daten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shiawasedo.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shitproductions.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sibrenvasse.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simplicitypvp.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slimspots.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smdcn.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sol24.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spodelime.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spotupload.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spydar007.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "studiostawki.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sunstar.bg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thermolamina.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thole.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tweakers.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "twistapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "twistedwave.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "urbackups.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wakatime.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "washingtonviews.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weserv.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wikimedia.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "winterhillbank.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wmfusercontent.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wolfgang-kerschbaumer.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "works-ginan.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xenophile.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zenk-security.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zyria.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "00f.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "99rst.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acsports.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adamdixon.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "addtoany.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adxperience.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aidanmontare.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexberts.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "algolia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aljaspod.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alldewall.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alza.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alza.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "annejan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "armstrongsengineering.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arrow-api.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arrowwebprojects.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arthurlaw.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "artlogo.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "artlogo.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "artlogo.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "artweby.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asadatec.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "auditos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "b1c1l1.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ballejaune.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beerians.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "belani.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "belgers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "belmontgoessolar.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "besola.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bioknowme.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitvest.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitwolk.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blankersfamily.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blissplan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bluefuzz.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brave.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brokenhands.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bunkyo-life.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bwilkinson.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bymike.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bytema.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "calculator.tf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cambier.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "capitalcap.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carauctionnetwork.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carauctionsalabama.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carauctionsgeorgia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cardranking.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "caroli.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "certspotter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "certspotter.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "classicalpilates.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clubon.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coin.dance", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "colorcodedlyrics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "computerhilfe-feucht.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "constant-rough.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cookiecrook.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "core-networks.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crazypaul.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "czechvirus.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daemen.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dataswamp.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deroo.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "designsbyjanith.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dicionariodenomesproprios.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diffnow.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digwp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dir2epub.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dir2epub.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dmarc.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dns-control.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dominationgame.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doomsworld.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "draugr.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "e5tv.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eaton-works.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ebataw.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "empathy.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erikhubers.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "esoko.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "esoterikerforum.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "etv.cx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fabriziorocca.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "findyourvoice.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flashback.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fleep.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "florisvdk.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fluxforge.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foorack.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fran.cr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frappant.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frbracch.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fumblers.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fuseos.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fuyu.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gaestehaus-monika.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gamberorosso.menu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gambetti.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gartenplanung-brendes.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ggmmontascale.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gianproperties.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gracethrufaith.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haavard.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hao-zhang.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hardenize.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hartmancpa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hearty.me", "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": "hoe.re", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hollyforrest.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hollyforrestphotography.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hord.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hotornot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hsivonen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hsivonen.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hsivonen.iki.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "huutonauru.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ifsac.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imed.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "info-beamer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "intafe.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "intencje.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inthouse.cloud", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "investpay.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "it-rotter.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itactiq.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamesgreenfield.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jeffersonregan.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jeffersonregan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jeffersonregan.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "johnnybet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "judoprodeti.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "juliekoubova.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "justpaste.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kabeuchi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kati-raumplaner.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kennedy.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kirstenbos.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kkyy.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kncg.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "komidoc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kuschku.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lacyc3.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lawrencemurgatroyd.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leertipp.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leighneithardt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lew.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lichess.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "listminut.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loganmarchione.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lynx.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maisgasolina.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "malinheadview.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marble.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "markepps.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "martinreed.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "master-net.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "masterdigitale.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mcdonalds.design", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "micbase.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michalwiglasz.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minux.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "movabletype.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mypaperwriter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myschoolphoto.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netzfrauen.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neurogroove.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nfsec.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "niagarafalls.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nitrix.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nubu.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ocg-card.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "olegon.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "otvaracie-hodiny.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "outgress.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "parser.nu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pasadenapooch.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "passumpsicbank.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paulov.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paulwatabe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "periscope.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pgnetwork.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phpprime.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pornbay.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "praguepsychology.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pypi.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qtpass.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qtpower.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quemmeliga.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quikchange.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ralfs-zusizone.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "redable.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rediske.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "redstoner.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reganclassics.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reganclassics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reganparty.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reinencaressa.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "responer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "respostas.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rewardingexcellence.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": "roughgrain.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "s-mainte.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "safire.ac.za", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saiputra.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "samel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sauvagebridge.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schizoids.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schrauger.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schrauger.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schrauger.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schrauger.run", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schreibers.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sealbaker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seo-linz.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "servepublic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "servepublic.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "settberg.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shansing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shansing.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shrub.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "signix.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simonwoodside.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sistem-maklumat.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skepticalsports.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sophiakligys.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sor.so", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spacehost.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spenglerei-shop.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sponc.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spricknet.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sptk.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "steemit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stephanieschreiber.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stephenhaunts.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stephenschrauger.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stephenschrauger.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "streetspotr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "suborbital.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sudoschool.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "taler.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thelanscape.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theseosystem.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "time2060.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toleressea.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toles-sur-mesure.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "travisforte.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "travisfranck.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "travler.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tributh.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tumedico.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tyler.rs", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tyleromeara.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "udruga-point.hr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unser-gartenforum.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "utvbloggen.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "v2ex.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "validator.nu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "verifyos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vetofish.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "voter-info.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "votoot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wallethub.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webcamtoy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webmandesign.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wereldkoffie.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wint.global", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wireshark.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wodinaz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wp-mix.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "writeoff.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yoga-school.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zachgibbens.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zilore.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zk.gd", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zonemaster.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zoom.earth", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agilebits.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "achtzehn.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alextsang.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ad-notam.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abuse.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "applemon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "autoauctionsohio.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "autoauctionsvirginia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "artroot.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anna.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andreaskrasa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1on1on1.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1on1on1.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "audio-detector.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asbito.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ballarin.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asato-jewelry.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bartelt.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bagheera.me.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "analyticum.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bartula.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "analyticum.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "analyticum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "analyticum.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "analyticum.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "baggy.me.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoin.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "batten.eu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blackcatinformatics.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "argekultur.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blackcat.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bemsoft.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beyondalderaan.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beijinglug.club", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blichmann.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blackbag.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bluepoint.one", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitmessage.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bosun.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carauctionscarolina.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bpol-forum.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "canva-dev.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bru6.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cat.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "charlesbwise.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bueltge.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beehive42.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beehive42.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carlosjeurissen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beehive42.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beehive42.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beehive42.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "centrumhodinek.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coalpointcottage.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chatbelgie.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chatnederland.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cookicons.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "classpoint.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cowbird.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cheddarpayments.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "contrabass.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "complexart.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cuvva.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cuvva.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cuvva.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cuvva.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cuvva.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cuvva.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cuvva.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cuvva.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "curtis-smith.me.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cuvva.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darkishgreen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptophobia.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danieljamesscott.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "corniche.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dfctaiwan.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danielmostertman.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "devcu.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danielmostertman.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domenic.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "designville.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "designville.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dermapuur.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deepzz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drjoe.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dxgl.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drweissbrot.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dotrox.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "do67.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "do67.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dopesoft.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "e7d.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ealev.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eighty-aid.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dhome.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elisabeth-strunz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "energydrinkblog.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fm.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feastr.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flana.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feudalisten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ff-obersunzing-niedersunzing.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fehngarten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fragmentspuren.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geder.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gta-arabs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "giga.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gehsicht.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iandouglasscott.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heiland.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guardian360.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guenthereder.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "honkion.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hacktivis.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "invoiced.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hilnu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "issforum.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hynek.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "despora.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hraesvelg.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "instagrammernews.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hotelident.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itochan.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ihkk.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jayxon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jabberfr.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jpeg.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "johnmcintosh.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jetkittens.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ignace72.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamessmith.me.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jiyuu-ni.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kalian.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kab-s.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kamikatse.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kuehndel.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "largeviewer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kki.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "komicloud.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jonas-thelemann.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kurswahl-online.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kriechel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leseditionsbraquage.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "listahu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lirion.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lernorteuropa.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lernorteuropa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "livedesign.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lernorteuropa.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linqhost.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luxvacuos.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luce.life", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ludwiggrill.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "litfin.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lunapps.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mdxn.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mdx.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mawidabp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "makkusu.photo", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ls-alarm.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mcea-hld.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "machtweb.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mikecb.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mainzelmaennchen.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marcelsiegert.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mdcloudps.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mechmk1.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "microlog.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "map4erfurt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mediamarkt.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "magnets.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miegl.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mind-hochschul-netzwerk.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mobilewikiserver.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mariemiramont.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mirkofranz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mail-rotter.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "map4jena.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mistreaded.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mkoppmann.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mojzis.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mojzis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mihnea.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "megumico.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "murgi.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "longhorn.id.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nerdpol.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nickstories.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moparscape.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nothing.net.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "notabug.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "patrickaudley.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "patrickaudley.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "obtima.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pandymic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "percy.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nvr.bz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "parckwart.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paw.cloud", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "osacrypt.studio", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "otrm.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "passvau.lt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pasternok.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pegas-studio.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "picturingjordan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pretzelx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "otakubox.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prowise.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "petmall.bg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pet-hotel-mura.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "polaire.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "put.re", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pvpcraft.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prado.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pcnotdienst-oldenburg-rastede.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "punikonta.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "r2d2pc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "radreisetraumtreibstoff.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rohitagr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qtvr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reichl-online.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rolandszabo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saorviewconnect.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rocssti.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rxbn.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rq-labo.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rleh.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "royal-rangers.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seewhatididhere.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "romanpavlodar.kz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schildbach.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sentry.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sech.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sidepodcastdaily.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "significados.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sciencesolutions.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "salsa-straubing.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sebi.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sidepodcast.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skyline.tw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sking.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "senzaparole.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "somethingsimilar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smalltalkconsulting.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sinquin.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sm.ms", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "storyland.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stageirites.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spom.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "streetview.wien", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "steklein.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stageirites.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tamchunho.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tchebb.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sw-servers.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stair.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sweep-me.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "studiostudio.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tege-elektronik.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "streetdancecenter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thaihomecooking.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "suburban-landscape.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teampaddymurphy.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timnash.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tmm.cx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobiasconradi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tenshoku-hanashi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "todoescine.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thomasvochten.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tunnelwatch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "transferserver.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "travelogue.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timvandekamp.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unrealircd.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toool.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "veryapt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uiop.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "troianet.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unpkg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unixattic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "van11y.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "udo-luetkemeier.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ufindme.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wawak.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "visalogy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whatwebcando.today", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vaur.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wein.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xuyh0120.win", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "willi-graf-os.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weissman.agency", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wearepapermill.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wollwerk.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weiterbildung-vdz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zten.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--rt-cja.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "www.sb", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ypid.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unrelated.net.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yeswehack.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zakr.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zbyga.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wsgvet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zulu.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ameego.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolitionist-society.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolitionism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ameego.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abilma.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amineptine.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "9449-27a1-22a1-e0d9-4237-dd99-e75e-ac85-2f47-9d34.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ameego.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aegrel.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "3dmedium.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "32h.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benhaney.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abc-rz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andre-otto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "basyspro.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aykutcevik.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "artioml.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arminpech.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beulen.email", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "491mhz.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andrewin.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asphyxia.su", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amsterdamian.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "burgers.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitstorm.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bluepostbox.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "calendarr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bxp40.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clr3.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "breckle.com.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "christensenplace.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "charliehr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "consumerfiles.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chosenplaintext.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biltullen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chriscarey.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "conjugacao.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coccolebenessere.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "avus-automobile.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crackstation.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coincoin.eu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cosmundi.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cuetoems.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cybersmart.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cooldan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clubeohara.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "curtissmith.me.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davidpearce.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cybersins.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "defuse.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "develux.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digitaldeli.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dlitz.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dormiu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digitaldeli.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dailybits.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digitaldeli.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danarozmarin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ebiografia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ds67.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "engg.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ericoc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "effex.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "especificosba.com.ar", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "easyfiles.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eridanus.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "exceptionalservers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "estonoentraenelexamen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "europapier.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "europapier.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "felixseele.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eve0s.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "festivaljapon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "exactphilosophy.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dintrafic.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "florian-bachelet.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "friet.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "g2pla.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "funtime.kiev.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gene-drive.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getidmcc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "followthatpage.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geertswei.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geofox.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getsecure.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goshawkdb.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hayai.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "helden-spielen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "happist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hedweb.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hedweb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hentschke-betonfertigteilwerk.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hedweb.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "herbweb.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "herbweb.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hunter.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hsts.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haens.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "howsecureismypassword.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "huxley.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hogl.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hyperreal.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "innermostparts.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hycken.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "indigosakura.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iruca.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inline-sport.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "johnvanhese.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jhuang.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jiyuu-ni.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ipty.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kaffeekrone.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jongbloed.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kualo.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kfz-hantschel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kualo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kualo.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jeproteste.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lasereyess.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kanaete-uranai.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "layoutsatzunddruck.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leola.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "le-bar.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "krizevci.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leola.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kultmobil.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "levelum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loqu8.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lebihan.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lindeskar.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "litz.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "litzenberger.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lrssystems.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lantian.pub", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lona.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "localspot.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lockpick.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "m2os.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ludikovsky.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lowsec.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "manja-und-martin.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "managementboek.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mdma.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marmotte.love", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lockpicks.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mediadex.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michaeltruskowski.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "momentumdash.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mimemo.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miguelmoura.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mundodasmensagens.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "migueldemoura.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mypillcard.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mojzisova.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neuroethics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nullroute.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nikandcara.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ocf.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nicolas-hoizey.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nicolas-dumermuth.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "obg-global.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nursejj.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oeko-jahr-jubilaeum.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paw.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pensacolawinterfest.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "odtu.lu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nunomoura.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "patrz.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "persson.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "platten-nach-mass.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qotw.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pinklecfest.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rationalism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reilly.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "q-inn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "q-inn.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "president.bg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rte.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pyspace.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saharmassachi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sb.sb", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sahar.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qul.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scooterservis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schunako.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schutzwerk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schamlosharmlos.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rowankaag.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sinonimosonline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "si.to", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sorenstudios.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simonhirscher.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ssky.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "supercentenarian.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sport-potreby.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sport-potreby.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "suki.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "takumi-s.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thedocumentrefinery.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stilmobil.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "telling.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tianeptine.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tenisservis.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tarsan.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timewasters.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobi-mayer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "transitownplaza.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomm.yt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "utilitarian.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "utilitarianism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tursiae.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unxicdellum.cat", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "truckersmp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wangqr.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uswitch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weibomiaopai.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "waschpark-hantschel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whipnic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vksportphoto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "verliefde-jongens.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "woohooyeah.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wyday.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--pq1a637b.xn--6qq986b3xl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wuji.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xtarget.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yhrd.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zeel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yuki.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rvsbevestigingen.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "afva.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "accelerateyourworld.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolitionist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolitionistsociety.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abulanov.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "11urss.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agenda21senden.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amphetamines.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "analyticsinmotion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anotherfatgeek.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "animal-rights.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ankiweb.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apple.ax", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arigato-java.download", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0o0.ooo", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alupferd.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arados.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ariacreations.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "axg.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bdd.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atraining.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "autoentrepreneurinfo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bankbranchlocator.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "auditsquare.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apretatuercas.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "auriko-games.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "axiomer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "autosiero.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aviationstrategy.aero", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bicha.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "barburas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bibliaon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biointelligence-explosion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biopsychiatry.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bltc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bltc.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "btorrent.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brettcornwall.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brianalaway.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "backschues.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brickftp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blackdown.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brandtrapselfie.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brianalawayconsulting.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bgkoleda.bg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bool.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "boudah.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ca-key.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brege.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brauingenieur.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bugwie.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carbon12.software", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cacao-chocolate.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "caylercapital.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cannabis-marijuana.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carbon12.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "charlottesvillegolfcommunities.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bogner.sh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "c4539.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "caletka.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chewey.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chewey.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "computer-acquisti.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "catenacondos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "congineer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudia.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "computerbase.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cookie4.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "criminal.enterprises", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "collectdocs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crisp.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cubekrowd.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cubecraft.net", "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": "defero.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cybertorsk.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "das-sommercamp.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deltava.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diferenca.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dicionariodesimbolos.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deitti.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "der-bank-blog.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dicionario.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "desu.ne.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digiarc.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deurenfabriek.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digitalbitbox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drummondframing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dulei.si", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doma.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dotplex.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drgn.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elementalsoftware.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elementalsoftware.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "entabe.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "energyaupair.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enuchi.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ennori.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "entheogens.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "entactogens.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "encode.host", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "extensiblewebmanifesto.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ericairwin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "extensiblewebsummit.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erythroxylum-coca.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "estcequonmetenprodaujourdhui.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "facebook.ax", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "escapeplaza.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "evafojtova.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "exs.lv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "exploited.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "farmacia.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erstehilfeprodukte.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "europapier.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "easyocm.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "etath.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "europapier.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "europapier.si", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "europapier.rs", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "europapier.ba", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "europapier.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fachschaftslisten.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flauschig.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frostwarning.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foolip.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gaireg.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gamingexodus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fullbundle.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fresh.co.il", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gebn.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foto.by", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gene-drives.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "general-anaesthesia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geti2p.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "graphene.software", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gradients.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gracetini.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "google.ax", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hallucinogen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geekwithabudget.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ginnegappen.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "henry.gg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gruenes-wp.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getpublii.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gruene-wattenscheid.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goanalyse.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hedonistic-imperative.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goombi.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hipercultura.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feuerwerksmanufaktur.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hardtfrieden.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hidbo.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hybridworx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hybridworx.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hybridworx.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hybridworx.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hszemi.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hybridworx.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hotelflow.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hvh.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "internetovehazardnihry.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "intercom.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "informatik-handwerk.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "interchanges.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "info-screen.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inima.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ihrhost.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "internetcom.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "integralblue.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ipv6.gr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "installgentoo.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ipv4.gr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jdtic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "irmgard-woelfle.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jps-selection.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jps-selection.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jcwodan.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joscares.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jakobssystems.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jeannelucienne.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kalterersee.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jobseekeritalia.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kuketz-security.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kuketz-blog.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "laughinggrapepublishing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "legible.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lazowik.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lexicography.online", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "languageterminal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lexico.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linux-florida.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lidl-shop.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liftie.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linss.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loforo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kofler.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "limawi.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lostserver.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luzfaltex.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lizhi.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "masterdemolitioninc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "materialism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marriage-shrine.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mediaarea.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "margagriesser.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matthias-muenzner.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "metsasta.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matanz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mescaline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "martine.nu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "med-otzyv.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "markuskeppeler.no-ip.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mathieui.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meldcode-assistent.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miraheze.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mobileread.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michaelpfrommer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minitrucktalk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moodfoods.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mondedie.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mticareportal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moefactory.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mybicc.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mundschenk.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moechel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "misoji-resist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myanimelist.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "newday.host", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "newtrackon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mush-room.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neuropharmacology.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neatous.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nietzsche.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "newind.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "numberzero.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netwarc.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nootropic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neartothesky.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "noisyfox.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oheila.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "octolopagon.games", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ofggolf.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "osburn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oeko-bundesfreiwilligendienst-sh.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "panpsychism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "notcompletelycorrect.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paradise-engineering.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oskuro.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "orkestar-krizevci.hr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pic2map.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pavelfojt.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pdfresizer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "perzeidi.hr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ourai.ws", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paulrotter.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "physicalism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pinpayments.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paulrobertlloyd.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "physicalist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peterhuetz.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "procrastinationland.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "practodev.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "primates.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peterhuetz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "politik-bei-uns.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "posaunenchor-senden.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pmsf.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "presscenter.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rally-base.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rasagiline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "questsocial.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pyrotechnologie.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "regolithmedia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "proggersession.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "raymondelooff.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "recurly.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "purplepr.bg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "repugnant-conclusion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reproductive-revolution.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "printeknologies.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "respon.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rogerriendeau.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rootusers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sa.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rem0te.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "openkim.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "righettod.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ruskamodra.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "muckingabout.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rullzer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scryfall.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scepticism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "selegiline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sandrolittke.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sandmarc.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sensualism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sanderkoenders.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sendonce.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sanderkoenders.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "senarius.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schwarztrade.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "server-essentials.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silverlinkz.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shipard.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sinonimos.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shiftdevices.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slo-tech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sh-heppelmann.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seogeek.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "southernmost.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soundeo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skydragoness.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "starka.st", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ssls.cz", "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 }, { "name": "swineson.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "superhappiness.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stravers.shoes", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teacherph.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "texus.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "texby.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thedronechart.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "swiftqueue.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "swisslinux.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timdoug.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "todapolitica.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tampabaybusinesslistings.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thebrightons.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thephp.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "togetter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomnatt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "traista.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tom-kunze.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toonpool.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomabrafix.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toool.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tuxlife.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "topdesk.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "twitter.ax", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "truetrophies.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "truesteamachievements.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "transfer.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unli.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "turkrock.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "touchoflife.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonyw.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uctarna.online", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "utilitarianism.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vanhove.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "valeriansaliou.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "volkswurst.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "volto.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ursuslibris.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ve3oat.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "voyageforum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "verberne.nu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "websecurity.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "willfarrell.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "w3ctag.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wane.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vulnscan.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wireheading.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "veganism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wigggle.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yahoo.ax", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wiz.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zeronet.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "x-iweb.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yuwei.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zabszk.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yourcopywriter.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yourcomputer.expert", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "woontegelwinkel.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yobai-grouprec.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yotubaiotona.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yuricarlenzoli.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aalalbayt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aextron.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adorecricket.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aextron.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aalalbayt.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aextron.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1e9.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1panorama.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "4u2ore.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "advokat-romanov.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anantshri.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andersonshatch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexs.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apoly.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alpineplanet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "altunbas.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aidhan.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2krueger.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "archlinux.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ativapsicologia.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agate.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abeontech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "avdagic.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "auerbach-verlag.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ave.zone", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "baselang.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "auplidespages.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "attitudes-bureaux.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "awaro.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arqueo-ecuatoriana.ec", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "betseybuckheit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benjamindietrich.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benjamindietrich.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitbucket.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bassblog.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bina.az", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bodygearguide.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bltc.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bestwebsite.gallery", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "berdu.id", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "betterscience.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bruun.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blogaid.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "boss.az", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bytebucket.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "calendarsnow.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "capitolpathways.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buricloud.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cbdev.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "caroli.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "britishbookmakers.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chbs.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "christopherpritchard.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "citizensleague.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudoptimizedsmb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cocinoyo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cles.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chanz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "copyright-watch.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "channellife.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "channellife.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coding.lv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cpy.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ctrl.blog", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clubempleos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cupom.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "d0g.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "d8.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coolgifs.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datememe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "criminal-attorney.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "defendinnovation.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dbaron.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datenwerkstatt.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "derwaldschrat.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datacenternews.asia", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drawvesly.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "douzer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "duckbase.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dracisvet.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dprb.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eickhofcolumbaria.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domaxpoker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diymediahome.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eigpropertyauctions.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ehazi.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elektrokarges.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eichel.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ensons.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "facialexercising.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "europapier.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ewanm89.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "europeantransportmanagement.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fabianackle.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ewanm89.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "europapier.bg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ewanm89.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "euroscot.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fashionunited.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "europeancupinline.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feminina.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drjacquesmalan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fliptable.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "follandviolins.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freesolitaire.win", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frattaroli.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frau-sucht-bauer.de", "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": "froggitt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fritteli.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "furnfurs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freebetoffers.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "for.care", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frigolit.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "forestraven.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "funken-networks.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gittr.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gensonline.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gierds.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grondius.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gotoxy.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gypsyreel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gutscheingeiz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hayfordoleary.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hash.works", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hashiura.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gymkirchenfeld.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haus-garten-test.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hitterfamily.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hitter-lauzon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "higilopocht.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hitter.family", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heliosnet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "herni-kupony.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hyperion.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "htmlyse.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hugi.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hyphen.co.za", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hoken-wakaru.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "infosoph.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imagine-programming.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "infotune.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "initramfs.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isolta.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isolta.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isolta.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isolta.lv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "huangjingjing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jfr.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jcaicedo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jomo.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jonscaife.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itbrief.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itbrief.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "journeytomastery.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imrunner.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joelfries.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jakubvrba.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "julientartarin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jarroba.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jenolson.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jreb.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kankimaru.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kidsforsavingearth.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "knightsbridge.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "k9swx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kidtoyshop.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kiddyboom.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kleinreich.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kimotodental.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lauzon-hitter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "laraeph.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kupferstichshop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "laserplaza.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "laserplaza.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "krestanskydarek.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lonesomecosmonaut.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loganparkneighborhood.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lostwithdan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "likegeeks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lknw.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lirnberger.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "longstride.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "logitel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linux-mint-czech.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "majid.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "likehifi.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maceinturecuir.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matlss.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matillat.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mensagensdeconforto.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marcgoertz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "melpomene.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maths.network", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linkycat.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mdosch.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "memoryex.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mikegerwitz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michalspacek.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michael-steinhauer.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miklcct.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "millefleurs.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "modafinil.wiki", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mivzakim.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mozilla.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "morchstore.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "murakami-sah.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "memoire-resistance-ariege.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "motoryachtclub-radolfzell.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mozzez.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nbari.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mycr.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mystic-welten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mysteriouscode.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neocities.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nankiseamansclub.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neave.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neko-nyan.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nadejeproninu.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netdex.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neolaudia.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nstd.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ngvf.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nitrokey.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oceanvisuals.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ohyooo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "online24.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oemwolf.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "olivernaraki.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "optik-trosdorff.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oktime.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "orion-universe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oulunjujutsu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "os-s.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paulov.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pctrouble.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pcgamingfreaks.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "philippkeschl.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phuket-idc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "poshsecurity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phelx.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prepaidgirl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "obscur.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "privasphere.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "proteus-eretes.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "raulrivero.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "redcorus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "researchgate.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rasty.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "respectmyprivacy.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "respectmyprivacy.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "perd.re", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rlove.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "riesheating.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "respectmyprivacy.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "recolic.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roelhollander.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "riverweb.gr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sanatorionosti.com.ar", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ruwhof.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "salon-minipli.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sarink.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sdns.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "secundity.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sectelligence.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saz.sh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shareoffice.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sapac.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shadowsocks.com.hk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rezultant.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shimi.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skifairview.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "securitybrief.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "securitybrief.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slanterns.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "somuchbetterwithage.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sopher.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sportsmansblog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sole-erdwaermetauscher.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "securitybrief.asia", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "snippet.host", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sorex.photo", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stickies.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "srroddy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sotoasobi.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "streets.mn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sit-brn.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spoofhaus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stadtplan-ilmenau.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stonystratford.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stern.koeln", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tallcraft.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sunfox.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sweharris.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "studium.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stopthethyroidmadness.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stkeverneparishcouncil.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tangel.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tecnoarea.com.ar", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "team-azerty.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techday.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techday.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techday.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tatara.ne.jp", "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 }, { "name": "transformaniatime.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobyx.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobiashorvath.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobyx.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobyx.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tovare.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "too.gy", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trafficmanager.xxx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ukooku.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tuning-werkstatt-nuernberg.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "urlscan.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "utw.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ventizo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "violetraven.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vallei-veluwe.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weils.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vinarstvimodryhrozen.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "web404.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wifipineapple.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whiteink.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "worldsgreatestazuredemo.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": "wilane.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "winter-elektro.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yohanesmario.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yd.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zwartendijkstalling.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zootime.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ziroh.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zootime.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0x00ff00ff.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1kmi.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abundent.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aktivace.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "allamericatrans.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alphapengu.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aux-arts-de-la-table.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bakkerinjebuurt.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bayer-stefan.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bayerhazard.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benabrams.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bernd-leitner-fotodesign.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bernd-leitner-fotodesign.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bernd-leitner.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bettflaschen.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brandonhubbard.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brio-shop.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "budolfs.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "burcevo.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "calaad.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cathosa.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "censurfridns.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "censurfridns.nu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chat40.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "churchwebsupport.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ckennelly.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cphpvb.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "creativeink.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "csvalpha.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daracokorilo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davidschadlich.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digdata.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dosenkiwi.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doska.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drheibel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dylankatz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ensage.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ezgif.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fashionweekweb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fastworx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fckd.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ffprofile.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "film-tutorial.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "filterlists.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "floffi.media", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foto-leitner.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foto-leitner.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fotoleitner.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fotoleitner.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fotostudio-leitner.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fotostudio-leitner.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fragstore.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freeinoutboard.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "g10e.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "galinas-blog.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "garda-see.mobi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gargazon.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geekzone.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gelb-computer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gfk-kunststoff-luebben.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "girlan.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "glamour4you.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guesthouse-namaste.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guim.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "handleidingkwijt.com", "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": "hoto.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iclinic.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inglesnarede.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iostream.by", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jahanaisamu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jan-rieger.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "janjoris.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "je2050.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jekhar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jnm-art.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joa-ebert.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joshua-kuepper.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "justgalak.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jwatt.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "karneid.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kastankaoffice.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kastelruth.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kc-holzfaeller.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kucnibudzet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lambauer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "law-peters.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leafandseed.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "logfile.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lupinencyclopedia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marlosoft.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "material-world-fuyouhin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maximiliankaul.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maxkaul.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "megagifs.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mehrleben.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "melchizedek-forum.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meransuedtirol.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "messer24.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michal-spacek.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michal-spacek.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mk89.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "motohell.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mredsanders.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mrsk.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mtcq.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mythicdelirium.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "naturheilpraxis-p-grote.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nepovolenainternetovahazardnihra.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "opendataincubator.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ozoz.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "painefamily.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "payboy.rocks", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pecker-johnson.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phuket-idc.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pires.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "planmemberpartners.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "plassmann.ws", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pluslink.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pokl.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prepaidkredietkaart.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "put.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "puzzle-welt.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rc-shop.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "regnr.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "residence-simoncelli.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sackmesser.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scheinlichter.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schlachter.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sebastian-janich.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sellajoch.com", "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": "sexgarage.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sexmobil.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shadesofgraylaw.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sheaf.site", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shift-to.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shishamania.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shop-s.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "siku-shop.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skischule-wildewiese.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "snafu.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soundabout.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spackova.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spielland.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spirella-shop.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "springerundpartner.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stalkerteam.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stargarder-jungs.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "startlab.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stefan-bayer.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stefanbayer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "steuerkanzlei-edel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "strefapi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stuvel.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theresa-mayer.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trigular.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tsironis-olivenoel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tsundere.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "twlan.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uncensoreddns.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uncensoreddns.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "urbanietz-immobilien.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "url0.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "urlaub-leitner.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "useyourloaf.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webexp.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "werbefotograf-leitner.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "werbefotografie-leitner.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wieckiewicz.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wineworksonline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wxh.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xenoworld.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--cctsgy36bnvprwpekc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--manuela-stsser-psb.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xzclip.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "youhavewords.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zdenekspacek.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zillertaleralpen.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zobraz.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "24-7.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2c-b.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2c-d.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2c-e.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2c-t-2.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2c-t-7.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2c-t-8.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2fm.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aandeautobody.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aaronhorler.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abigisp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolition.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolitionism.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolitionism.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolitionism.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolitionist-project.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolitionist.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolitionist.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolitionistproject.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abouthrm.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aboutict.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aboutlegal.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aboutmedia.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "accesloges.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adrafinil.wiki", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aegisalarm.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aegisalarm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aetherc0r3.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ahlaejaba.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ajarope.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "akamon.ac.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alb-flirt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alcnutrition.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aldous-huxley.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alicetone.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "allesrocknroll.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alterspalter.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alvosec.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alwayslookingyourbest.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "americasbasementcontractor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amorim.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andrewrgoss.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anedot-sandbox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "angry.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "animal-liberation.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anime1.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "antispeciesism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "antispeciesist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "appninjas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apv-ollon.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arcaik.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aryan-nation.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "authinfo-bestellen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "avtoforex.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bayer-stefan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bayer-stefan.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bayerstefan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bayerstefan.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bayerstefan.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bayherbalist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bbimarketing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beadare.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "belastingmiddeling.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benbozsa.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benleemd.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "betshoot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beulen.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bevedo.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bglsingles.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bierochs.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bike-kurse.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "billgoldstein.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bimmerlabs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "binding-problem.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biohappiness.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blogbooker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bltc.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bltc.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bogdanepureanu.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bookshopofindia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bornhack.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bottke.berlin", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bouchard-mathieux.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "braiampeguero.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brentnewbury.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brianroadifer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "britishbeef.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "britishmeat.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brodowski.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brompton-cocktail.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bsociabl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "btcpop.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bupropion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "burntfish.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bytes.fyi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bytesizedalex.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cadman.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "candidasa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "capsogusto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carauctionsillinois.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carnet-du-voyageur.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "catbold.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ceebee.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "centruvechisv.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chaisystems.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "changesfor.life", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chaos.run", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "charlestonfacialplastic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chatu.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chatu.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chatucomputers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chiemgauflirt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chimpanzee.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "churchwebcanada.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cinemysticism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cityworksonline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "civillines.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codeeclipse.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codeine.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "collabora.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "collaboraoffice.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "compassdirectportal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "compassionate-biology.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "convergnce.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coribi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "craftandbuild.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "credex.bg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryothanasia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cuoc.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cyph.healthcare", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cyph.ws", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "d00d.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dailyblogged.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dave-pearce.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davecardwell.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davepearce.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davidpearce.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dawnbringer.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deinewebsite.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deontology.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "desagaz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "designer-drug.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "det-te.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "detroit-english.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dhlinux.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diamorphine.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dicionarioetimologico.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "didierlaumen.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diveidc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "djt-vom-chausseehaus.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dnstwister.report", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "docxtemplater.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dolorism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domodeco.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "donateway.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dragonkin.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drillion.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dsm5.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dtk-vom-chausseehaus.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dxm.no-ip.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dynorphin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dynorphins.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dysthymia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eastarm.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ebayinc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ebooksgratuits.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eer.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "effective-altruist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ekonbenefits.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elektro-metz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elements.guide", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elephants.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emi.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emirichardson.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "empathogens.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emperor-penguin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emperor-penguins.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emw3.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "energyelephant.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "englishcast.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "entryboss.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erinaceinae.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "esdiscuss.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eskdale.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eujuicers.bg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eujuicers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eujuicers.com.hr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eujuicers.com.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eujuicers.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eujuicers.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eujuicers.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eujuicers.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eujuicers.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eujuicers.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eujuicers.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eujuicers.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eujuicers.rs", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eujuicers.si", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eujuicers.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "europeanwineresource.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "evasioncreole.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "everyday.eu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "evosyn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "express-shina.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "expressmarket.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "faroes.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "farsil.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fdlibre.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fence-stlouis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ferticare.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fickweiler.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fishtacos.blog", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flatbellyreview.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flirt-norden.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "floriankarmen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fluoxetine.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "focusministries1.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fosdem.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frandor.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "franksiler.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freedev.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freegutters.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "friedrich-foto-art.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "friedsamphotography.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frinkiac.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "furkot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "furkot.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "furkot.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "furkot.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "furkot.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "furkot.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "garanteasy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "garycarmell.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "general-anaesthetics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "general-anesthesia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "generationgoat.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "genetidyne.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geoffmyers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "george-orwell.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "georgiaglassrepair.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getnib.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ggs.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "giant-panda.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "giant-tortoise.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gigantism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gigawattz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "giraffes.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "given2.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "glueck-im-norden.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grapeintentions.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gregorykelleher.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gruenprint.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guillaumematheron.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "h3z.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hadrons.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "halacs.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hallucinogens.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hangtenseo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hardforum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hashcat.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hashish.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hedonism.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hedonistic.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hedonium.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hedweb.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heidisheroes.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hessen-liebe.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "holebedeljek.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "holywhite.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "house-sparrow.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "httpsecured.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "human-clone.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "humanenrich.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "humanzee.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hummy.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hundter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "huntingdonlifesciences.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hyperalgesia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ignatovich.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ilazycat.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "im66.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "immortal.run", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "incowrimo.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inficom.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "innerfence.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "innsalzachsingles.de", "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 }, { "name": "internationalfashionjobs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isaacphysics.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ishiharaken.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isil.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "islam.si", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itactiq.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iz8mbw.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamesaimonetti.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jeannecalment.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jefrydco.id", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jelewa.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jeremybentham.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jesuisadmin.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jgwb.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jgwb.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jiogo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joshschmelzle.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jpshop.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jrtapsell.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "julianweigle.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "julie-and-stevens-wedding.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kack.website", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kaigojj.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kalastus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kangaroos.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kbb-ev.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kemptown.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kemptown.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kemptown.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kernelpanics.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ketamine.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kevinhill.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kirainmoe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kisallatorvos.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koalas.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kraft.blog", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kvn.tf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lawnuk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "legit.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leipzig.photo", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lenspirations.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lignoma.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lindskogen.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liqd.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liyin.date", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lkp111138.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loli.world", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "louisvillecarguys.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ltls.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lucasgymnastics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lutoma.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lyricfm.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maff.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "magasinsalledebains.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "magasinsalledebains.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "magiclen.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "magicspaceninjapirates.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mahjong.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mallach.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mammals.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "manatees.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "markitzeroday.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "markusueberallconsulting.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mastodon.top", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mathspace.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matrixmedia.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mattferderer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mattonline.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mauldincookfence.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maxchan.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maxwaellenergie.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mbr-net.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meadowfen.farm", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meat-education.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meme.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mephedrone.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mescaline.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "metacode.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "methylone.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mflodin.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michu.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miketheuer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minakov.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minigolf-reisinger.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minikidz.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minube.co.cr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "modalogi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moderatoren.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mon-a-lisa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "morbotron.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mosin.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "movingtohttps.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "musickhouseleveling.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mycrypnet.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mymed.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mymed.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myrig.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nah.re", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nanotechnologist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nanubo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nanubo.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neecist.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neeerd.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nemez.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neobits.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neosdesignstudio.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nerdmind.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netamia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netfabb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neurotransmitter.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "never.pet", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nomifensine.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "normanbauer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "noscript.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "noswap.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nota.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "novilaw.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nuacht.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ohai.su", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "opcenter.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "open-desk.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "openrainbow.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "opin.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "orang-utans.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "orgasmium.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oswaldsmillaudio.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ozonitron.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ozonitron.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ozonitron.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ozonytron.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ozonytron.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ozonytron.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "panpsychist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paradise-engineer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paulus-foto.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peep.gq", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "personal-genome.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peyote.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pharmapolitics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phillipgoldfarb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pinemountbaptistchurch.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pinimg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "planeteroliste.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "planeteroliste.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "play.cash", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "playsnake.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "playtictactoe.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pleasure-science.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pokemondb.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "poopjournal.rocks", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "popmagz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "population-ethics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "post-darwinian.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "post-darwinism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "postdarwinian.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "postdarwinism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "potatiz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "power-flowengineer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prefix.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "preludes.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "priv.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "profile.tf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "propagationtools.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "propertyone.mk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pseta.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "psm.org.ph", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "puxlit.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pyopenssl.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qubes-os.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "r-rwebdesign.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rally-base.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rally-base.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rally-results.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rally-vysledky.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rallybase.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rallybase.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ranking-deli.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rapidstone.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ravis.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reachrss.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "really-simple-ssl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reboxetine.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rechtschreibpruefung24.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "redneragenturen.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reinierjonker.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rens.nu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rentex.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reproductiverevolution.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reprogramming-predators.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reprogrammingpredators.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "repugnantconclusion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rhein-liebe.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rhetthenckel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ricaud.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rj-onderneemt.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rm-it.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rnag.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robertlysik.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robin.co.kr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rodichi.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rodomonte.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rogagym.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rogerhub.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "root.bg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rootcamp.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rosenheimsingles.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rteone.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rubyquincunx.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rulu.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rutiger.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "s95.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saengsook.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saengsuk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saifoundation.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saipariwar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sallydowns.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "salutethepig.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sanmuding.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schier.info", "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": "scubadiving-phuket.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seaholmwines.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "security.gives", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "selfishness.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seosof.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sharanyamunsi.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shareselecttools.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shh-listen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shintoism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.co.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simon.lc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "singel.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "singles-aus-hamburg.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sinterama.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sklotechnik.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sktan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sloths.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slovenskycestovatel.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sneak.berlin", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "snowalerts.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sociobiology.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sockscap64.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "songsthatsavedyourlife.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soukodou.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "speciesism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spellcheck24.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ss64.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ss64.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ssh-vault.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stalkr.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stastka.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "steef389.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stift-kremsmuenster.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stockpile.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "suchmaschinen-werkstatt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "swarlys-server.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tarasevich.by", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tatsidou.gr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techinet.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tedsdivingsystem.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tefek.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teixobactin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "telefonni-ustredna.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "telly.site", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tenthousandcoffees.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tgui.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thecarolingconnection.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thefnafarchive.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theyearinpictures.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thomas-suchon.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thomsonscleaning.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timtelfer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tokkee.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomkunze.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomschlick.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomwassenberg.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tortoises-turtles.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tourtransferitaly.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "touslesdrivers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tractorpumps.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trailerparty.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "transhumanism.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "transhumanist.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "transhumanist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "transhumanist.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "transhumanist.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trbanka.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "truestor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tsicons.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "turncircles.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tuto-craft.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "twit-guide.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tylerdavies.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "u.nu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uchargeapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ukrnet.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unite-ka.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unx.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "upbeatrobot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "urcentral.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "usajobs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "utilitarian.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "utilitarismo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "utilitronium-shockwave.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "utilitronium.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "utopian-surgery.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vaew.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "veganism.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vendigital.com", "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": "vertebrates.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vintagejeeps.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "virtubox.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vyzner.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "w-p-k.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "w4eg.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wallabies.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "websiteservice.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whiterabbit.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "williamjohngauthier.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wombats.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "woof.gq", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wort-suchen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wrc-results.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wug.news", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wygodnie.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--rt-cja.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yatsuenpoon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ybti.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ych.art", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yoshibaworks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zdorovayasimya.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zetamode.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zooish.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "3james.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "41199.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "987987.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "100-downloads.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "a7m2.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "123midterm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aceinstituteonline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "advancedoneroofing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adamfontenot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acg.mn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "affordablepapers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aikenpromotions.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adminforge.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "admino.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ak-varazdin.hr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abox-kb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anime1.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alleskomtgoed.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anypeer.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apadrinaunolivo.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "animefluxxx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amb.tf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "appartementmarsum.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "annaenemma.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ajnasz.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "antama.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asra.gr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atease-salon.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bad.pet", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "austromorph.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bakongcondo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "babai.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "b4z.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "audiorental.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "azso.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "baumannfabrice.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bearingworks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aqua-fotowelt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bfam.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beulen.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bedandbreakfast.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bedandbreakfasteuropa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "berlin-flirt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biblioblog.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blizhost.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bakersafari.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitsync.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bradypatterson.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bornfiber.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "briansmith.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blakecoin.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brianfoshee.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bsidesf.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "boutiquedecanetas.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bs.to", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "burlapsac.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buydissertations.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bug.blue", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buypapercheap.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buyessay.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buyessays.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "byatte.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ca5.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "capekeen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carre-lutz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cevo.com.hr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chad.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "charmingsaul.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cheapwritinghelp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cheapessay.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chesspoint.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chrstn.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cipri.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cocalc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "collegepaperworld.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comparesoft.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coastline.net.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "copycrafter.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "compubench.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "controleer-maar-een-ander.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chaifeng.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "corlinde.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crisp.chat", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cross-led-sign.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "creeks-coworking.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crunchy.rocks", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptofan.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "damaged.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "data.world", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cssai.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cubile.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davetempleton.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cspeti.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darkfire.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darylcumbo.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davie3.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "delahrzolder.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dawnbringer.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dermot.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "devalps.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deliandiver.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dicionariopopular.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digitaldeli.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dissertationhelp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doc8643.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domynetwork.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domycasestudy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domyassignments.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domycoursework.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domypapers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domycreativewritings.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domydissertations.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domyessay.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domscripting.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domyreview.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domyspeech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domyresearchpaper.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domythesis.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dm4productions.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dfmn.berlin", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "driver.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "e-tech-solution.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": "ea2drocks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eat-sleep-code.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "droidhere.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "echofoxtrot.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "effectivepapers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "duh.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digitalcraftmarketing.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elifesciences.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "efaas.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "envescent.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dovenzorgmalawi.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "efflam.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eickhof.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eickhof.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elternverein-utzenstorf.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erikheemskerk.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "essaypro.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "essaylib.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emeliefalk.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erwinschmaeh.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "essayhave.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "essayforsale.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eltern-verein.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "evanfiddes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fashionunited.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "evidencebased.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "efag.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fantasticcleaners.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fernandomiguel.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fcforum.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fefelovalex.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flumble.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fiodental.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freegame-mugen.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flokinet.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "funniestclip.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fokan.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "espigol.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gebn.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "genesismachina.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geekzone.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gethow.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "george-brighton.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gero.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gleanview.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gerald-zojer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gmc.uy", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gmx.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geektopia.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gmx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gmx.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gmx.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gfxbench.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gpalabs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freesourcestl.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gioielleriamolena.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gmx.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gmx.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gmx.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grasmark.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hackerone-ext-content.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frontline.cloud", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "harveyauzorst.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haschrebellen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "harmfarm.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hen.ne.ke", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hexapt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heartbeat24.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "henneke.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heimatverein-eitensheim.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hermanbrouwer.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hatarisecurity.co.ke", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "houraiteahouse.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "i-red.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hte.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imperdin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hik-cloud.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inmateintake.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inlink.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ichasco.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jabergrutschi.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jaberg-rutschi.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jakobkrigovsky.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "johnrockefeller.net", "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": "joelle.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jrxpress.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joblife.co.za", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jixun.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keb.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keb.net.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kerebro.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "issasfrissa.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kaamoscreations.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "justgalak.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keishiando.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kissgyms.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "karlzotter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kplasticsurgery.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "johnnybsecure.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koptev.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kolizaskrap.bg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kpop.re", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "laflash.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lanceyip.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "learningis1.st", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leetcode.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lanroamer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koscielniak-nieruchomosci.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lawn-seeds.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lenyip.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lenyip.works", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "josepbel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liquidinternet.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lidl-shop.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "livepaperhelp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kominki-sauny.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loli.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linuxiuvat.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lolibrary.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "logbook.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lookatmysco.re", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mail.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "malikussa.id", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maedchenflohmarkt.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maedchenflohmarkt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maliar.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mastersthesiswriting.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marshmallow.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "madbin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "markus-ullmann.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mcgovernance.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maxims-travel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mathers.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mapasmundi.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mcdona1d.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "midterm.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mmmarco.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lydudlejning.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "montychristie.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moritztremmel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meganandmarc.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mortis.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mountain-rock.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minamo.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myriadof.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mydarkstar.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meadowfenfarm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nacin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nevolution.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neostralis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nickcraver.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nicul.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myspicer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nicesco.re", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nna774.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "niyawe.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nystudio107.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onlinecollegeessay.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "omronwellness.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "omertabeyond.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "offenekommune.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "omertabeyond.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "openstem.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "palabr.as", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "papersmart.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paperwritinghelp.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "panascais.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "passwordscon.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "panda.tf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "passwd.one", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pdfconvert.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "party-kneipe-bar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paranoidpenguin.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pensador.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pensador.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "partyschnaps.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pfft.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "passions-art.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peterlew.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "petelew.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peraparker.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.engineering", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peterandjoelle.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "philipdb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pascalchristen.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "piraten-basel.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pedimoda.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pollingplace.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pnsc.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pneuhaus-lemp.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "proctorio.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prac.to", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "post.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "practo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "popinga.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "praxis-familienglueck.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "postcode.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "profloorstl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "profitablewebprojects.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "privacynow.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "promods.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "productpeo.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ptrl.ws", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "protonvpn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pieterbos.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "packagingproject.management", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "puzzlepoint.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rakugokai.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "readysell.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rebelz.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reflexions.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rathgeb.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "resourceguruapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "recmon.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "richardson.engineering", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "revisionnotes.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qifu.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rishikeshyoga.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "retro.rocks", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "richardson.systems", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rosehosting.reviews", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rootedlifemontessori.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rootcommand.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rognhaugen.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rotol.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "richardson.software", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "s4tips.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sayura.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sanitairwinkel.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schraugerrun.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sanitairwinkel.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schrolm.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "security-brokers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schwarzegar.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sekisonn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sens2lavie.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shawnhogan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sec-wiki.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silsha.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "siloportem.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shoptec.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "singles-berlin.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "single-in-stuttgart.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smartwritingservice.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skatingchina.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sma-gift.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "snerith.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.hk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smit.com.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "starlim.co.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "steamgifts.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "steamtrades.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sprachfreudehoch3.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "strategiclivingblog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spielezar.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "snrub.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "substitutealert.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "strozik.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sportovnidum.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sukrie.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stormi.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "survivebox.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "szybkiebieganie.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tadtadya.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techhappy.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "technicallyeasy.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teamupturn.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techshift.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techshift.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techshift.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "taniku-succulent.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thebrightons.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tf2calculator.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thepathsofdiscovery.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thepartner.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thunderkeys.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thor.edu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobyx.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "torstensenf.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tokyomakino.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "troyhuntsucks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "topicit.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tavolaquadrada.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "transcend.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tuts4you.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "traceroute.guru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "traceroute.network", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "traceroute.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trace.guru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "topprice.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unikrn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tvsheerenhoek.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theory.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uedaviolin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "urcentral.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uvocorp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vccmurah.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ultratechlp.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": "vijay-international.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "veritafineviolins.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "viktorprevaric.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "veverusak.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vancouvercosmeticsurgery.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "viking-style.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webbiz.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vitoye.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "web.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wibbe.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wellbeing360.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "werehub.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webliberty.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "worldessays.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "windsock-app.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "writemyessays.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "writemytermpapers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "writemypaperhub.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "writepro.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "write-right.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "writing-expert.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "victoreriksson.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "writingcities.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "writingtoserve.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wug.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xjjeeps.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webaholic.co.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wrapitup.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "www.re", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--baron-bonzenbru-elb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "woheni.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--tigreray-i1a.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xuming.studio", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.com.hk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xt.om", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.com.tr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.com.hk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.com.ar", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.cl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.com.sg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.com.ph", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.com.tw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.com.mx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yiyuanzhong.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yubico.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.my", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yourticketbooking.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yotta-zetta.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zekinteractive.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zlima12.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zrniecka-pre-sny.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zhuji.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zhuji.com.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zonemaster.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zilsen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xnet-x.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "10ppm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acat.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "accessacab.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1ll.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "5francs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amyyeung.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "airvpn.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arenlor.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arkadiyt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aessencia.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "4garage.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asmdz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arenlor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acendealuz.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atplonline.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "balslev.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bedrocklinux.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bbka.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atorcidabrasileira.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "belfasttechservices.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bagspecialist.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bandeira1.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "billy.pictures", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blued.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bl4ckb0x.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ben-stock.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "booquiz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "boweryandvine.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bonami.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bonami.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bonami.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bonami.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "capimlimaoflores.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brazillens.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cacaumidade.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cbr-xml-daily.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cbw.sh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "casadoarbitro.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carolcestas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "casapalla.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ch-laborit.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cheeseemergency.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chat.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ckostecki.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ciphersuite.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coda.world", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comicspornos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "contractormountain.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "conradkostecki.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cw.center", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "corpio.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptorival.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "csharpmarc.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crowdbox.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ctliu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daubehosting.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dcc.cat", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dcc.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dbapress.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "democracyineurope.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digibull.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "debuemon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dao.spb.su", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "decorestilo.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dataspace.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diveplan.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dualascent.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "donutcompany.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eaimty.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "devkid.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "e30.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edgeservices.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ebrnd.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "des-hommes-et-des-clous.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elhossari.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edisonchee.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "electr0sheep.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edsm.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eggblast.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "engvid.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ekd.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "etalent.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drew.beer", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ebolsas.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ezdog.press", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fashionunited.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fashionunited.lu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "facanabota.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "farfallapets.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "finalx.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "facanabota.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fontawesome.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frozen-solid.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fermabel.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "forum-kinozal-tv.appspot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "exporta.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ford-shop.by", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "finnclass.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ftng.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "giuseppemacario.men", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fullautomotivo.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frebi.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "givesunlight.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gtopala.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "graumeier.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gnilebein.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gov.tc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gruene-im-rvr.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gruenderlehrstuhl.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hexxagon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "golser.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hirotaka.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hematoonkologia.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "homegardenresort.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ictl.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "indilens.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "instant-hack.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ip.sb", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ivor.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inter-culinarium.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ivor.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ivorvanhese.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ivorvanhese.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "insside.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "intermezzo-emmerich.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jazzy.id.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "highlandparkcog.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "intertime.services", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "janaundgeorgsagenja.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jross.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jell.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kenyons.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kd.net.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kiku.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kostecki.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kogi.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kostecki.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kostecki.tel", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "krismurray.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kthnxbai.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leafinote.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "letsgowhilewereyoung.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "larepublicacultural.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lakonia.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linkmauve.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "legavenue.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lonniec.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lohanaflores.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lojadewhisky.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lojavirtualfct.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "la-petite-entreprise.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "livrariacoad.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lojadoarcomprimido.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lojaprojetoagua.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lojaprimemed.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lunasqu.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "magnatronic.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mdsave.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mentalhealthmn.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mallonline.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matjaz.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "materiaischiquinho.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "megapixel.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miss.com.tw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minnit.chat", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moondrop.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "medcir.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mne.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "merojob.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mycircleworks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mylifeabundant.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "milhoazul.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mehhh.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nbafile.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myproblog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "murof.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nba2k.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neojo.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nerdhouse.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "niklasbabel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mitrax.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "newmed.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neoz.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ojdip.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "owl.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "perpetualemotion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pattyliao.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pictr.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pressureradio.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "plongee-phuket.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "polymake.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "productbarcodes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "progress.photos", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "planetasuboficial.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pc-tweak.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pssgcsim.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quantum2.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qto.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rbltracker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ravhaaglanden.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "redgatesoftware.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "raykitchenware.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "richardson.pictures", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rocka.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rise-technologies.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rootlair.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rosi-royal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "runschrauger.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saimoe.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saveora.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reidasbombas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sa-mp.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sammyservers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rosabellas.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "priorite-education.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sb0.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "searchdatalogy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shadowsocks.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shadowsocks.la", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shopifycloud.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sereema.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sera.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sfg-nordholz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sientemendoza.com.ar", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slotlist.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sim4seed.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skysuite.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "socal-babes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sstaging.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sparkasse.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spek.tech", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sql-und-xml.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soprabalao.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stavros.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stephensol.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stephsolis.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sqroot.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stephensolis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "straka.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spur.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tbrindus.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teachwithouttears.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spdepartamentos.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "testpornsite.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tgui.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "telefonseelsorge-paderborn.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "the-pcca.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tetedelacourse.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tgexport.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tartanhamedshop.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ticketsource.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sorakumo.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timbishopartist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomwassenberg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toptec.net.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomatis-nantes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theodorahome.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toplist.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timing.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theodorahome.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tucsonfcu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tmcreationweb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theruleslawyer.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trockendock.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unixtime.date", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toschool.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "urology.wiki", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "upbeatrobot.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "upundit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ur2.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "visudira.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "voloevents.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "walk.onl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vialibido.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vssnederland.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wickrath.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "windowsforum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wideinfo.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "web-design.co.il", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whitewinterwolf.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wildwildtravel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wmaccess.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "worldcigars.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yaharu.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--7ca.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "youruseragent.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--0kq33cz5c8wmwrqqw1d.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yoga-in-aying.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zerobounce.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zfast.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "albertathome.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dheart.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "consuwijzer.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "corningcu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agrarking.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codingfromhell.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "forro.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "exe-boss.tech", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "balancenaturalhealthclinic.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jaccblog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cronometer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "einsteinathome.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frebib.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "latecnosfera.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "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": "cyberduck.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mindleaking.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miticobikes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "redivis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dingcc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mikakalevi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sujoydhar.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nfls.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nova.live", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agrarking.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aliantsoft.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "allpointsblog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alternador.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apk.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apn-dz.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aquarium-supplement.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atwonline.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "barsashop.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bonnieradvocaten.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chentianyi.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cirurgicalucena.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "conformax.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "corporatecomputingsolutions.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "d.nr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "denisewakeman.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dimeponline.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "e-cottage.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emporiodosperfumes.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "esite.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frugalfamilyhome.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "globalprojetores.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hotcandlestick.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hulpbijmarketing.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "instafind.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ishamf.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamaat.hk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jerseylvi2013.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "karlsmithmn.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leipziger-triathlon.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "librazy.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lojaterrazul.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maury-moteurs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mediafocus.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "memiux.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mexicom.org", "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": "nycoyote.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "placasonline.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spaziobenedetti.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tdrcartuchos.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobias.gr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tsedryk.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tyroremotes.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tyroremotes.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tyroremotes.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tyroremotes.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tyroremotes.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tyroremotes.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vcti.cloud", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wireless-emergency-stop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wowaffixes.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xehost.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adelightfulglow.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andrewpeng.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "antirepressionbayarea.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apponic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arenns.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bkhpilates.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bobstronomie.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bonamihome.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bonesserver.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bs.sb", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cenatorium.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clairegold.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coonelnel.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "creativelaw.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crosspeakoms.com", "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": "dismail.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dustyspokesbnb.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "evelienzorgt.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "everlong.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fallofthecitadel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firetotheprisons.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "forgotten-legends.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geertdegraaf.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grailians.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grapee.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gustaff.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hoflerlawfirm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ifort.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "independencerecovery.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ingo-schlueter.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ingoschlueter.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inter-corporate.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jeremy-chen.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joespaintingpgh.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jxir.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kinetiq.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kotori.love", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kplnet.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kram.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kwedo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "laurenlobue.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leevealdc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mikevesch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mir.pe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "my-host.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mybb.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nerot.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nico.st", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nijikata.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ohchouette.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "olmsted.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onix.eu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peoplelikemeapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pixelurbia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "promolover.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qhse-professionals.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "random-samplings.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seraph.tokyo", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sheepfriends.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simon-mueller.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stefan-schlueter.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "systea.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tavsys.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "technicabv.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tibipg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trollingeffects.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uniteasia.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vidiproject.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--f9jh4f4b4993b66s.tokyo", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ziemlich-zackig.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ziemlichzackig.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zurgl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0wx.cat", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0wx.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0wx.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0wx.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "complexsystems.fail", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cranforddental.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dado.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dado.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dlde.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emeraldcoastrideshare.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "esolcourses.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "f1fever.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "f1fever.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fauvettes.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firma-cerny.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "highlevelwoodlands.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hips.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hypotheekbond.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jorisdalderup.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "logostock.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ma-eir.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "psw-consulting.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sbanken.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "suelyonjones.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "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": "whatarepatentsfor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "a1scuba.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": "admin-serv.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adriancostin.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aehe.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agent-grow.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alaboard.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexeykopytko.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "allproptonline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "allurescarves.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alpertron.com.ar", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amorgos-aegialis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anime1.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "annettewindlin.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "araxis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "astrosnail.pt.eu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "b72.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "backschues.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "betecnet.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitenose.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blacklightparty.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blogging-life.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bounceapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brck.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brecknell.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brecknell.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brecknell.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brecknell.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brecknell.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "btth.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buddie5.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "budeanu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "builtvisible.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "calotte-academy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carol-lambert.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "catbull.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cheapiesystems.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cine.to", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coingate.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "colorblindprogramming.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comicwiki.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "conciliumnotaire.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cool110.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "corpulant.coffee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "corpulantcoffee.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "corpulent.coffee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "corpulentcoffee.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darc-mak.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dark-infection.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "data.govt.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deanbank.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deephill.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "delicioustable.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "documaniatv.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domian.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dora.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dragoncave.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "driverscollection.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dtnx.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dvdland.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "easycoding.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eldrid.ge", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elijahgrey.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emolafarm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emresaglam.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enflow.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enotecastore.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enrollapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "epilis.gr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eyps.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "failover.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "failover.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fantasyescortsbirmingham.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fastcommerce.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fatidique.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feastr-dev.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feeltennis.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fernandob.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fernandobarillas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fiftynorth.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fonte-trading.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foot.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frantorregrosa.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fsky.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fundacionfranciscofiasco.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "g-rom.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "games4theworld.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gamesplanet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gauthier.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gehrke.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getyourlifestraight.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gilangcp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gluecksgriff-taschen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greenwithdecor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "health-plan-news.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heartwoodart.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hideouswebsite.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "horror-forum.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hulet.tech", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hyckenberg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ideashop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ieeesb.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ihc.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ilhan.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iligang.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "instelikes.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "insult.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "integratedmedicalonline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itzap.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jdc.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jokedalderup.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "k8r.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kdw.cloud", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kimisia.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koetjesenkanker.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "konzertheld.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kopteva.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kpfanworld.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kupid.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kwcolville.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lanetix.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "libmpq.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lifeinhex.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lifematenutrition.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "longhorn-imports.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lubar.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luvare.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "m4g.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mabankonline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maldives.cx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "manneguiden.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "manualscollection.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "markridgwell.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "markup-ua.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maxisito.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "menole.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "menole.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "menole.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mercadopago.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "merlet.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michaelpfrommer.pub", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moveltix.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moy.cat", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "musclecarresearch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myaggic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mybloggedlife.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myrandomtips.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myrotvorets.center", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "n-m.lu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nordmoregatebilklubb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nvq.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oliveoiltimes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "opryshok.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paazmaya.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "photodeal.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pizzagigant.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "planitz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "planitz.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "plant-gift.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "planteforum.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pogoswine.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ponga.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "popoway.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "portsdebalears.gob.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "postfalls-naturopathic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "praerien-racing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prelved.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prelved.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prelved.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prelved.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prelved.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prelved.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prelved.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prelved.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prlved.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "probely.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "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": "quasseldroid.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "question.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qwertee.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rainpaper.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "realum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "realum.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "realum.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "realum.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "redshoeswalking.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "refreshliving.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "resourceconnect.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "restauranttester.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reverseloansolutions.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "risada.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rockymountainspice.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roemhild.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sacred-knights.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sarpsb.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schefczyk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schefczyk.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schefczyk.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schefczyk.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scheuchenstuel.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schwarzes-muenchen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "secure-gw.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seitai-taiyou.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sellguard.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sicilianbalm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "significados.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skei.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smartmomsmartideas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smeso.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smuncensored.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sozai-good.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "st-steuern.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stb-schefczyk.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "steamerrors.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stembureauledenindenhaag.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stlu.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stodieck.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "studio-fotografico.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stuudium.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sw33tp34.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tanz.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tb-itf.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tbs-certificates.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tc.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teatrarium.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "telefoncek.si", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tennismindgame.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theboxofcarlos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thriftdiving.com", "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": "tlca.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tntmobi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobias-kluge.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toom.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trhastane.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tutanota.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "typist.tech", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ucppe.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ullah.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unieducar.org.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uuit.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "v-d-p.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "v2bv.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vernonsecureselfstorage.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "victoriaartist.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "victoriastudio.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vuzi.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weinbergerlawgroup.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wellcom.co.il", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wellnesscheck.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wien52.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wifi-names.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wiki-play.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wild-turtles.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wili.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "willowdalechurch.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "winfieldchen.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wjg.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wjg.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wollongongbaptist.hopto.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xblau.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--grnderlehrstuhl-0vb.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--zettlmeil-n1a.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "youhua.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yuxuan.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zettlmeissl.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arvutiladu.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freifunk-burgaltendorf.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moonchart.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "upd.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wochennummern.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0iz.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abidinginhesed.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acul.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "advara.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "akijo.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andrew.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andyt.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anextraordinaryday.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "animaltesting.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "antennista.milano.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "australien-tipps.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "averageinspired.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bennierobinson.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biobuttons.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blackseals.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bleaching-tipps.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "block65.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blogdieconomia.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blogdimoda.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blogdimotori.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blogtroterzy.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bouzouks.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bsc-rietz.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buttonline.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "childrenfirstalways.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coinloan.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cristau.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danamica.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dashlane.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dellipaoli.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "depotsquarekerrville.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digilicious.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drei01.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eco-derattizzazione.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eco-work.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edgetalk.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ehaccp.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "errietta.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eshop-prices.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fengyi.tel", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "filhin.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firemudfm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geek.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "genehightower.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "globalisierung-fakten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gooday.life", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goshin-group.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hacker101.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heiliger-gral.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hevertonfreitas.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hiltonarubabeachservices.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hiv-symptome.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "homesteadfarm.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "horaceli.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "igmus.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ile-sapporo.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imbianchino.roma.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imex-dtp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ingenius.ws", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "issio.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jetflex.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jimdorf.com", "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 }, { "name": "lernenamsee.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matel.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "materialyinzynierskie.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matsu-semi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mediagrand.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mediajurnal.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": "mnguyen.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mscc.mu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myapexcard.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nacktwanderfreunde.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "naga-semi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nbriresearch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nevntech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nfl.dedyn.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "noslite.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onpay.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ope.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oxborrow.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paipuman.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "patdorf.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "present-m.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "princovi.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "producertools.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qualtrics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quasarelectronics.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rebane2001.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "restaurant-oregano.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rizospastis.gr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rootsandrain.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "securelect-inspection.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seltendoof.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seo-analyse.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shift-record.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simonbondo.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simonfischer.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slaughter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimento.napoli.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sofiavanmoorsel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sportnesia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stolkpotplanten.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sustainabilityknowledgegroup.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sweetgood.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "symptome-erklaert.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techcracky.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thesisgeek.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "travel365.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tru.ltd", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tworaz.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "txcap.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uddi.ng", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "veterinario.roma.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "virtualmt2.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "w5gfe.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wasfestes.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "watchparts-and-tools-okayama.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weacceptbitcoin.gr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wivoc.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wolszon.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wordcounter.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wuerfelmail.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yosbeda.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, // END OF 18-WEEK BULK HSTS ENTRIES // START OF 1-YEAR BULK HSTS ENTRIES { "name": "1-2-3bounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1st-bounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1stclassbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "20denier.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3countiescastlehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a1jumpandbounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aaapl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abacusbouncycastle.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abcpartyhire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboces.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abouncycastleman.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abuse.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "achterblog.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acorncastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "activehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adtgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aergia.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allbouncesurrey.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alphabouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amateurvoicetalent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amministratore.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angryteeth.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ansichtssache.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antennista.pavia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appveyor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arterienundvenen.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atelierbw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auto-plus.tn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aycomba.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bagsofbounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bannermarquees.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bee-line.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beethoveninlove.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belvoirbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bennettshire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bensinflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestoliveoils.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bexleycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beyondbounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigbouncebouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigbounceuk.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": "bio-disinfestazione.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bkositspartytime.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "black-mail.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blivawesome.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boosinflatablegames.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bounce-a-roo.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bounce-on.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bounce4kidz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bounce4less.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bounceaboutsussex.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncealotnorthwest.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncearoundsheffield.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncebackcastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncemaniaevents.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncenortheast.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bounceroosevents.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncetasticuk.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncincastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncinghigher.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncy-castles-surrey.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncybouncyboocastlehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncycastlehire-norwich.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncycastlehirechelmsford.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncycastlehirehull.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncycastlehiresurrey.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncycastlehirewinchester.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncycastlesisleofwight.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncykings.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncymacs.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brau-ingenieur.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "braudoktor.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brilliantbouncyfun.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bristolandwestonsuperbounce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casasuara.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "castlecapers.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centio.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cfsh.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checos.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheekycharliessoftplay.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chehalemgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chloescastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christian-gredig.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christmaspartyhire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chronology.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clairescastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clearip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cobracastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cocoscastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coloristcafe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colourfulcastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "connectmath.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cool-parties.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coole-fete.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creators.direct", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crowncastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "currentlystreaming.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dancingcubs.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danmarksbedstefredagsbar.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ddracepro.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deano-s.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derdewereldrommelmarkt.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "detroitzoo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalsurge.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discarica.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazione.venezia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazione24.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni-umbria.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disroot.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djwaynepryke.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamlux.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamlux.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dtbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duncanfamilytrust.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eastlothianbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electronicafacil.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ellisamusements.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ellisleisure.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elternbeiratswahl.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erkaelderbarenaaben.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethika.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "event4fun.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evolutioninflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabian-fingerle.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "facebylouise.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fachschaftslisten.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "familyparties.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fantasycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fastpresence.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fb.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fbcdn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fbsbx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fdevs.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstchoicebouncycastlehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstclasscastles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flyp.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "francesca-and-lucas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freedomonline.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fun-bounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fun-tasia.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fun4ubouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fundayltd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funhouse-inflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funtime-inflatables.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": "fuzoku.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gameshowchallenge.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gardengameshireuk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geerdsen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geometra.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getupandbounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gladwellentertainments.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glcastlekings.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glendarraghbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gobouncy.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gobouncy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "h24.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haveabounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haydenjames.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hazeover.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heldundsexgott.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hireabouncycastle.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "horrell.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huglen.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idraulico.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ijunohana.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ikinokori-marketing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ildomani.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imprendo.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inflatablehire-scotland.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inflatablesny.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infovision-france.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inhouseents.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "investarholding.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itraveille.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itsabouncything.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itsecblog.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itsmyparty.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jagbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jamieweb.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jbsinternational.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jdpleisure.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jdscastlehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeankygourmet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jjspartyhire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jkinteriorspa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jmalarcon.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jmentertainment.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joellimberg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jollykidswobbleworld.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jpsinflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jump4funinflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jumpandbounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "junglejackscastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jvbouncycastlehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kanecastles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kangaroo-bouncycastle.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katieskandy.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katieskastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kbleventhire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kellyskastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kensbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "khas.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kids-castles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kidsplaybouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kidzsmile.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kingofthecastlecoventry.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kingofthecastlesrhyl.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konst.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koodimasin.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koushinjo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krazykoolkastles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "labouncycastlehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lce-events.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "learn-smart.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leisure-supplies-show.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leon-tech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "letspartyrugby.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lidel.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lilysbouncycastles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "limberg.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lipartydepot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "littlescallywagsplay.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lizzythepooch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "localbouncycastle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lukesbouncycastlehire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maaya.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manicbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuscript.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marshallscastles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mayomarquees.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mbainflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mclinflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meg-a-bounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megabouncingcastles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megainflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mehalick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melodiouscode.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikerichards.photography", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minigolfandgames.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mjasm.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkbouncyhire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mojilitygroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mondo-it.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monstermashentertainments.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moorfunevents.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrbouncescrazycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msi-zlin.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msnr.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mucmail.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n26.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newburybouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newmarketbouncycastlehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noon-entertainments.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nopaynocure.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "normandgascon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northdevonbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novecity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ohsohairy.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omgbouncycastlehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onceuponarainbow.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ond-inc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oodlessoftplay.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orangejetpack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p22.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkviewmotorcompany.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parquettista.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "party-time-inflatables-durham.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partyhireliverpool.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partyrocksbounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partytime-uk.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partytimeltd.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partyzone.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pedrosaurus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pelican.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perfectsnap.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": "pointum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "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": "prestigebouncycastles.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 }, { "name": "ptmarquees.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quevisiongrafica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qvggroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raccoltarifiuti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raidensnakesden.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raidensnakesden.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raidensnakesden.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rainbowinflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rascals-castles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rascalscastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rcdocuments.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realitycrazy.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": "rgbinnovation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rickscastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rmsupply.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robocop.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rodeobull.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rodeohire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rodeosales.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roguefortgame.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roma-servizi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rsl.gd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "russellupevents.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s404.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sandmanintel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scallywagsbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scatsbouncingcastles.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "security-24-7.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seo.london", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sfile.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sfleisure.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sillysnapz.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simply.scot", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sj-leisure.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sjleisure.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skhire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skuldwyrm.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skylineservers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyzimba.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slavasveta.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sndbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snote.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "softplay4hire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solentbubblesandbounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solihullinflatables.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "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": "southambouncycastle.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spahireleeds.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startaninflatablebusiness.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoffelnet.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stordbatlag.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studio-architetto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sub-net.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superbouncebouncycastles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supercastlesbrisbane.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supercastlessunshinecoast.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supersteosbouncycastles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sushi.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svantner.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "t47.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tbtech.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "texasvolunteerattorneys.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tfg-bouncycastles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebcm.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebestfun.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebouncedepartment.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefunfirm.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thehaxbys.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thepartydoctors.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thepieslicer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiggeriffic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tilleysbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tmc.com.mt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topclassfun.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topdogsinflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toptheto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "totalparts.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toushi-return.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transnexus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traslocare.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "treehouseresort.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trianglecastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tubs4fun.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuppenceworth.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvs-virtual.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "txlrs.org", "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": "usbevents.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "v-tek.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vividinflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warringtonkidsbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wdmg.com.ua", "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 }, { "name": "wecleanbins.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weddingsbynoon.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wefitboilers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "werkgroepderdewereld.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westcoastcastles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westmidlandsbouncycastlehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westmidlandsinflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wexfordbouncycastles.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whizzzbang.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikivisually.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wizardbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worcesterbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldofparties.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wowbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--erklderbarenben-slbh.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--t-oha.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xntrik.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtremebouncepartyhire.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yabuisha.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ybresson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yorkshiredalesinflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yorkshireinflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zk9.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zooom2.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a-oben.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cir.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dbrgn.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "draftguru.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hacksoc.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justinstandring.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kato-yane.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lacaveducinquantenaire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovg.ren", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaelizquierdo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "securi-tay.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stedb.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiihosen.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsumegumi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ubermail.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vlovgr.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wootware.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aaltocapital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ait.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alice.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpinestarmassage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andybrett.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "archined.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bakibal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bergfex.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bizstarter.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boulzicourt.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buildplease.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "byeskille.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centurionunderground.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cles-asso.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comparatif-moto.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptonom.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cytech.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "czaw.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daisy-peanut.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daisypeanut.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desec.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digibull.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfesta.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.verona.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dll4free.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dominicself.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreyfussplasticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-id.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electrostatics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emex.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "equipandoloja.net.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "equippers.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eternit.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fiscoeconti.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flowcom.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frasesdodia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gate2home.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giardinaggio.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gobarrelroll.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gvobgyn.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "handbrake.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harapecorita.com", "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 }, { "name": "herberichfamily.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hlucas.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holisticacupuncture.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i-verbi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inetserver.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isaackhor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jas-team.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jaytx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeancardeno.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jec-dekrone.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "journeyfriday.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juszkiewicz.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klm-huisjes.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klmhouses.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knarcraft.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krokedil.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "larsklint.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lhost.su", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lidogr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lugui.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maiaimobiliare.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manawill.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michmexguides.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myjumpsuit.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nah.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nasbi.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neba.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panda-community.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parsonsfamilyhomes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "payboy.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planetromeofoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pony-cl.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "risparmiare.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rmrig.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosevillefacialplasticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rsap.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rueg.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rumlager.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ryu22e.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "satimagingcorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "save-me-koeln.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "semaflex.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shaicoleman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shehata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplifylivelove.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sparanoid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "splendorservizi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sport-socken.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sprucecreekclubs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sprucecreekgcc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spufpowered.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sr33.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taabe.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tribac.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "victorhawk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villa-gockel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villagockel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vosgym.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vreeman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waf.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webdesignplayground.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webmotelli.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wogo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wormbytes.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zachaysan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "233blog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4vector.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5y.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aerisnetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrewensley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bella.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bgfashion.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bioetco.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "castible.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clarkwinkelmann.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cliniquevethuy.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudcloudcloud.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coco-line.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collinel-hossari.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collinelhossari.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csfd.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datatruckers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datatruckers.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "degracetechnologie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denaehula.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dieecpd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dienchaninstitute.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitaldem.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "docs.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dont.watch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragonsunited.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragonsunited.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragonsunited.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragonsunited.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragonsunited.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragonsunited.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragonsunited.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dtnx.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dtnx.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-lambre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eaucube.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "el-hossari.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ensley.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eternalsymbols.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fetlife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fluteandpianoteaching.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freizeitplaza.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gehopft.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geleenbeekdal.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gmpark.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gommista.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guozeyu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gymagine.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heikorichter.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiccupsandjuice.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hlsmandarincentre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holvonix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hroling.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iaeste.or.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "illsley.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-jobbank.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itswincer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jababu.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jannisfink.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobindex.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johndball.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jonpavelich.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "julianxhokaxhiu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ken.fm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "l7plumbing.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "larondinedisinfestazione.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laviedalex.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "librebox.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "librisulibri.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lin.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "littlefamilyadventure.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lobsangstudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loew.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magasinsalledebain.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magasinsalledebain.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maniosglass.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masterplc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "max-went.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megaflix.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moteksystems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netmeister.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nickserve.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ns2servers.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "numarasorgulama.tel", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omegahosting.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opencircuit.nl", "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 }, { "name": "pabloarteaga.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pabloarteaga.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pabloarteaga.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pabloarteaga.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passwordsecurity.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peanutproductionsnyc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "port67.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "potolok.am", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raven.dog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redir.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robots-ju.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanitairwinkel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "semaphore-studios.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sergefonville.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skigebied.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimentoamianto.latina.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimentorifiuti.veneto.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spamdrain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stepstone.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tamindir.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teemulintula.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tescoludia.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tls-proxy.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ur.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urcentral.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vaindil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volta.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waterleeftinbeek.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waterschaplimburg.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webstu.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wegotcookies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wellist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wsspalluto.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--mgbmmp7eub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--pe-bka.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yutakato.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "123termpapers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3queens.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3queens.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "6lo.zgora.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ac.milan.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acemypaper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amministratorecondominio.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apio.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arteaga.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auskunftsbegehren.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bennygommers.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bngs.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bologna-disinfestazioni.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chapiteauxduleman.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cy.technology", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daravk.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "degoulet.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derattizzazione.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derattizzazioni.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derattizzazioni.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "detekenmuze.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "detuinmuze.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dierabenmutti.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestando.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazione.brescia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "distribuidoracristal.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dorth.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "egarden.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epiteugma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faidanoi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fburl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gastoudererenda.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gensenwedding.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giardinaggio.napoli.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "global-village.koeln", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grinnellplans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grootinadvies.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guhei.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haccp.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hub385.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hypothyroidmom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imgup.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juliedecubber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kruisselbrink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "labcoat.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lenguajedeprogramacion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lon-so.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lv5.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minerstat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mojeco2.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moskeedieren.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "movie-infos.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n-design.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natlec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ncc-qualityandsafety.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noovell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nunnun.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "offbyinfinity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omoteura.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "one-resource.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "overstemmen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paulward.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcrypt.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pedicurean.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petlife.vet", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pianetatatuaggi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixelution.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prakhar.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proggersession.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rcmlinx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rentacaramerica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rittau.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robotattack.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rubenkruisselbrink.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sana-store.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sana-store.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sana-store.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shutter-shower.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siciliadisinfestazioni.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soopure.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportparks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportparks.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ssuiteoffice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ssuitesoft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stevenz.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stucydee.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studionowystyl.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techview.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebit.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "todoscomciro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tracinsurance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trunk-show.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vagaerg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vagaerg.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "varcare.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vik.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vvdbronckhorst.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xdty.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xjpvictor.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--dragni-g1a.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "young-sheldon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2333blog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2li.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abckam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutyou.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutyou.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutyou.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutyou.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutyou.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aceanswering.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adhd-inattentive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alljamin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altaplana.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ameriikanpoijat.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antennisti.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apache-portal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apination.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aromacos.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arteaga.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arteaga.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arteaga.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artecat.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artmarketingnews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atelierdeloulou.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atheist-refugees.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": "australianimmigrationadvisors.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autres-talents.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avexon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bachata.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barabrume.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benjii.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benzi.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestbatteriesonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biletyplus.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biletyplus.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biletyplus.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biocheminee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blazing.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blobfolio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bodypainting.waw.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bordes.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bovenwebdesign.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsa157.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsd-box.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bytema.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bytema.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caarecord.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calcedge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canker.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "captainark.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartadeviajes.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartadeviajes.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartadeviajes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartadeviajes.com.ve", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartadeviajes.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartadeviajes.ec", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartadeviajes.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartadeviajes.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartadeviajes.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartadeviajes.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartadeviajes.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "certifiednurses.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cfpa-formation.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checkspf.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cherie-belle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chiboard.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christopherkennelly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ckenelley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ckenelly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ckenely.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ckenneley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ckennelley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ckennely.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clnc.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clorophilla.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collectorknives.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "commco.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "convergencela.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corporateclash.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creatieven.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cribcore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cronologie.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cueca.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cumplegenial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidbranco.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dedg3.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devagency.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dicio.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "direct-sel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.venezia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dotshule.ug", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dp.cx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drillingsupplystore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drugs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dsmjs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-tech-solution.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-techsolution.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-techsolutions.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebizarts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eddokloosterman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edxn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electric-vault.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elviraszabo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elwix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elysiria.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emvoiceapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ephesusbreeze.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etech-solution.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etech-solution.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etech-solutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etechsolution.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "euroskano.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurousa.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "event64.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exchaser.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "f2h.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feuerwehr-mehring.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filanthropystar.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flowinvoice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fmussatmd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frederikvig.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ganasoku.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gayukai.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "generalinsuranceservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getpagespeed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goquiq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gorgias.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gotrail.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "habitat-domotique.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haccp.bergamo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haptemic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hashimoto-jimusho.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hf51.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoaas.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "honeycreeper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoorr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howgoodwasmysex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humboldtmfg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hunstoncanoeclub.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iainsimms.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iainsimms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iane-ccs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ich-hab-die-schnauze-voll-von-der-suche-nach-ner-kurzen-domain.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idered.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inetsoftware.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interiery-waters.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isaaczais.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "istheinternetonfire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-maker.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jastrow.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeepeg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jlot.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joeyhoer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jose-alexand.re", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jselby.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaeru-seitai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalamos-psychiatrie.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalwestelectric.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kamppailusali.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kargl.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kirwandigital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kivitelezesbiztositas.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kochereva.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konventa.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "korben.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kotly-marten.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kraftzeiten.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kwench.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "la-compagnie-des-elfes.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lanternhealth.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "law.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leadquest.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "librarytools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libre-service.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livelifewithintent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lojavirtualfc.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "losangelestown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lucaslarson.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mamuko.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manageathome.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marketingco.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "math.hamburg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattari-app.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattmcshane.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mauricedb.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mchan.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcpaoffice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "md-clinica.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mdlayher.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "memo.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metro-web.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mfen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikhirev.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minehattan.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minerva2015.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirrorsedgearchive.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mlpvector.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mockerel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modelclub-draveil.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "momy-genealogie.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moolah.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motowilliams.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrknee.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myessaygeek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mypaperdone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myref.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "namskra.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nc-beautypro.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nc-formation.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neilfarrington.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neoeliteconsulting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neonataleducationalresources.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neonatalgoldenhours.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nepremicnine.click", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nettamente.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nickscomputers.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nikkasystems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ninepints.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "norichanmama.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nsa.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oclausen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oisd.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oliverclausen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oliviervaillancourt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "online-calculator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onspring.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opalesurfcasting.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pablo.scot", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pablo.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pabloarteaga.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pabloarteaga.science", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pasearch.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcdocjim.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peaceispossible.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peddy.dyndns.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "penguinprotocols.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "permajackofstlouis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petit-archer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pflan.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pimpmypaper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinklittlenotebook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixiv.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixloc.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plannedlink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planujemywesele.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plasticsurgerynola.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playreal.city", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "policereferencecheck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powersergholdings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psdsuc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pulpproject.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pvda.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pvpctutorials.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pzsearch.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "r1ch.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recipex.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "red-trigger.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redactieco.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regisearch.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resfriatech.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ristrutturazioneappartamento.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rollingbarge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rook-playz.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roopakv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roseparkhouse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruobr.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rwx.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s-n-unso.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s-s-paint.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salon1.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sandiegotown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarahplusdrei.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "screenmachine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sergiozygmunt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "setenforce.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shico.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiga1.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shihadwiki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shura.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sim-minaoshi.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplyregister.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sinclairinat0r.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sjaakgilsingfashion.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skedda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skiddle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skolagatt.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartcpa.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "socialtrends.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "societe-chablaisienne-de-revetements.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "societe-chablaisienne-de-revetements.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sokouchousa.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sommefeldt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sonicdoe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soruly.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spaconnection.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "specialtyalloys.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speechdrop.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speedof.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "splintermail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spoluck.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sr-33.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "staktrace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stouter.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuudium.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suroil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swap.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sweets-mimatsu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sym01.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "systemd.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techformator.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tenzer.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theadultswiki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thewoolroom.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiglitub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiny.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobias-kleinmann.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobyx.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "todacarreira.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toekomstperspectief.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tokinoha.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torngalaxy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torte.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "touchweb.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tourtrektrip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toyota-kinenkan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "troomcafe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trustednetworks.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuwaner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuza.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utcast-mate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vantagepointpreneed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vats.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vaughanrisher.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verbier-lechable.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vernonfigureskatingclub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vintagebandfestival.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wisak.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workshopszwolle.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workshopzwolle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpformation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "writemyessay.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wrmea.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xnu.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xsec.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourfriendlytech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zacharyschneider.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zachschneider.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zitseng.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zrnieckapresny.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7graus.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abcstudio.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akdusekbudil.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alanhua.ng", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amaresq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amchainitiative.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amesgen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amnesty.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amobileway.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ampproject.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ampproject.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "analogist.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andreoliveira.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "annawagner.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apartment-in-rijeka.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apdx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "api.biz.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asiba.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aztraslochi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barbarafabbri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bcansw.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bedandbreakfasthoekvanholland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bequiia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestattungen-kammerer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "binarycreations.scot", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bleche-onlineshop.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bobkidbob.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boost.ink", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bremerfriedensforum.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "britanniapandi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "britishpearl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsatroop794.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catfooddispensersreviews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccprwebsite.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celectro-pro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charlestonsecuritysystems.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrislane.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chromcraft-revington.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clweb.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cookwithmanali.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "copdfoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corbi.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crispinusphotography.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crossoverit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danhalliday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "david-reess.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discarica.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.bergamo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.firenze.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.genova.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecotur.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "efmcredentialing.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elainerock.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elementshop.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethicalpolitics.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurofrank.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "extensia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fireshellsecurity.team", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frankierstar.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frebib.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frebib.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frostprotection.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaysexpositions.guide", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geek1.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geocompass.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giac.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giebel.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glenshere.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graecum.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gruble.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gw2efficiency.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gymnasium-hittfeld.de", "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": "halliday.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heatershop.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holmq.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotels-insolites.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "houstonauthorizedrepair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hquest.pro.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i-office.com.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idenamaislami.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infobae.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ip-tanz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itaiferber.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobsisbrown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jrabasco.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juanfrancisco.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kirillaristov.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kr0n.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kralovskapradelna.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kvadratnimeter.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "labortogether.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ledscontato.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logze.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ltib.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lumitop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marvelmoviemarathon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masrur.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meh.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meklon.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miegl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milania.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modding-welt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morethancode.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moutiezhaller.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muzikantine.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrewardspoints.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ncc-efm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ncc-efm.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nccemail.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nebelhauch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neoedresources.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neurozentrum-zentralschweiz.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niles.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nordicirc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nytrafficticket.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ochrepoint.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "office-furniture-direct.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oita-homes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oksafe-t.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "padberx-marketing-consultants.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paintball-shop.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panaxis.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panaxis.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkeren.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkinginparis.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parquettista.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parteaga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pasticcerialorenzetti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pendriveapps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "permistheoriqueenligne.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pfcafeen.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phileas-psychiatrie.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planetromeo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plural.cafe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pn.id.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polytekniskforening.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "potature.rimini.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "potature.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prpferrara.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdfproject.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remi-saurel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rexdf.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rogoff.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "room-composite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruyatabirleri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s-huset.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s10y.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sabrinajoias.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saunatime.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scallywagskids.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scarafaggio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schutz-vor-schmutz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scsd.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scul.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seirei.ne.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shan.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shark5060.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shaunc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shuset.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvoy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimento.caserta.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spazzacamino.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spottedpenguin.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strongpassword.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studipro-formation.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studipro-marketing.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tasogarenoinori.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tecnicoelettrodomestici.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terabyte.services", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thismatter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thummer.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tindallriley.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "titandirect.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tndentalwellness.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tontonnews.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tourgest.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traceheatinguk.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traficmusik.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tweakers.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ugx-mods.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "underfloorheating-uk.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vx.hn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "watoo.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "werkgroeppaleisparkhetloo.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "werpo.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xbertschy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xcler8.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--frankierknig-djb.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--imker-in-nrnberg-szb.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yousei.ne.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zouyaoji.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zwk.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "28-industries.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a4sound.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acrylbilder-acrylmalerei.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acsbbs.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affissioni.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aireaseleaks.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexanderneng.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anleitung-deutsch-lernen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anleitung-zum-flechten.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anleitung-zum-haekeln.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anleitung-zum-schreiben.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anleitung-zum-schweissen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anleitung-zum-toepfern.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antennista.catania.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artroscopiaperlosport.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asexualitat.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asian-industry.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "attinderdhillon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "b0rk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baer.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bannsecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benshoof.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berichtsheft-vorlage.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-essay-service.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "binans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "binans.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "binans.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boat-engines.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bremen-restaurants.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "briefvorlagen-papierformat.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buytermpaper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartongesso.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cgal.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cipy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coathangastrangla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coathangastrangler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coathangerstrangla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coathangerstrangler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codific.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colorhexa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comohacerpara.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "contractwriters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "craftsmandruggets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cretica.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "customdissertation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "custompapers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "customwritten.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dailyxenang.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielstiner.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daubecity.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deutsche-tageszeitungen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deutscher-bericht.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "die-seide.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drillingsupply.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drsajjadian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ec-current.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edilservizivco.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "egrojsoft.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eklitzke.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elguillatun.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essayads.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essayforum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essaynews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essayscam.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essaytalk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essaywebsite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estetista.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eternal-warriors.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eu-darlehen-finanzierung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eu-datenbank.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eu-stellenangebot.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everythingaccess.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fackovec.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faxvorlagen-druckvorlagen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filidorwiese.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firmenwerbung-vermarktung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flyer.tools", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fokep.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framboise314.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freeenglishhelp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freelanceessaywriters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fukikaeru.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "g3d.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gcoded.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genocidediary.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gravilink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gvwgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "h1ctf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hexcode.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holzschutz-holzbearbeitung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holzundgarten.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i-sports.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immobilien-in-istanbul.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impelup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impresaedile.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insureon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inventum.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "investoren-beteiligung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inzelabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ismywebsitepenalized.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it1b.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itchybrainscentral.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itsaw.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jaszbereny-vechta.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joeskup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koenleemans.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kolpingsfamilie-vechta-maria-frieden.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koozal.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krankenpflege-haushaltshilfe.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kselenia.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kunstdrucke-textildruck.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magi-cake.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magonote-nk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "majkassab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manach.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masaze-hanka.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maslin.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mietwohnungen-vermietung.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mitarbeitermotivation-anleitungen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moas.design", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moneycredit.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motiweb.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moviesetc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mustat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muster-folien.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muster-schablonen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mustertexte-musterbewerbung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myting.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "namu.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neildaniels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nerdwallet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nkapliev.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noahsaso.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nogerondier.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oelbilder-oelmalerei.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okukan.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "online-lernprogramme.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oprueba.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p5r.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "padpilot.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parteaga.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phenixairsoft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plegro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polanda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polish-dictionary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polish-flag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polish-translations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polish-translator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polish-translator.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polish-translators.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polishforums.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polishmarriage.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polishtranslation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polleverywhere.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polskiemalzenstwo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "priorityessays.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "projektarbeit-projektplanung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pycrc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "racheldiensthuette.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recipeyak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retireyourpassword.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roughcopy.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rpmdrivingschool.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruediger-voigt.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scoop6.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serviziourgente.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "signalmaps.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skin-cosmetic.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skizzen-zeichnungen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soulmating.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speak-polish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steuertipps-sonderausgaben.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stevenbolgartersnakes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strangelane.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strangemusicinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stratuscloud.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuudium.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunwolf.studio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sydneyhelicopters.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sylvaloir.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "systematic-momo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "systematic-momo.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tenno.tools", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thermalbad-therme.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thomaseyck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tit-cdn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tit-dns.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tit-mail.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "titanwaterproofing.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tlumaczenie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toetsplatform.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tournamentmgr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trace.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "translate-polish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trialandsuccess.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turunculevye.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unicorntooling.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urlaub-busreisen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urltodomain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usa-greencard.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valtlai.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verifyyourip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vertrieb-strategie.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verzekeringsacties.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visualizing.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vorlage-musterbriefe.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vorlage-mustervertrag.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "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": "whatclinic.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whatclinic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whatclinic.com.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whatclinic.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whatclinic.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whatclinic.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whoisamitsingh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wolfgang-kloke.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xluxes.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zanellidesigns.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zarabiaj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zatsepin.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zimmer-voss.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adf-safetytools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advanceworx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affordablehealthquotesforyou.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agechecker.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altphotos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arno-klein.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arno-klein.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arschkrebs.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autospurgo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "b72.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bart-f.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baseconvert.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benc.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestautoinsurance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blueskycoverage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bowlcake.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "br7.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brainsik.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carbontv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catalogobiblioteca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudfiles.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cmftech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danwolff.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dataregister.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dedge.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dorfzittig.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dzsibi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edlinger.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elektronische-post.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enbecom.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "euwid.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ex-deli.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exoscale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "facucosta.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "final-expense-quotes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foundchurch.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funtime.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garyrh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getthefriendsyouwant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goflo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grafmag.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greatlifeinsurancegroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "horizonlawncare.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hsn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ianmooreis.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipresent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janvari.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janvaribalint.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kamui.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kevinmoreland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kimdumaine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knightsbridgewine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koolitee.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuttler.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laranjada.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "larbertbaptist.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifeinsurancepro.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lincolnfinewines.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loposchokk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medicare-providers.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medicarecoveragefinder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medicareinfo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medigap-quote.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morepablo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "movie1000.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtgsuomi.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myphotoshopbrushes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nationalhomequotes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neil-barrett.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neil-barrett.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nejenpneu.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netfog.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "octarineparrot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ohne-name.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "online-health-insurance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peterbruceharvey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pircher.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "play-charades.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "policesromandesrecrutement.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portofala.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psdreams.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pst.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psytrance-pro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quiet-waters.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "re-engines.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rightnetworks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rpus.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "segaretro.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seriouss.am", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sgutranscripts.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shorehamfort.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "short-term-plans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shyuka.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skid.church", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "somaliaonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportvereine.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "star-clean.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sternadel.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sternenbund.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strajnar.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supermercadosdia.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tagabrand.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taxi-puck.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "time2choose.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tjampoer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truentumvet.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trustserv.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tty1.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usage.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verry.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vulns.sexy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wallacehigh.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wella-download-center.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wijnbesteld.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wjr.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wonghome.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpmu-tutorials.de", "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": "yukari.cafe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zfg.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zorig.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1montre.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7proxies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "8maerz.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aavienna.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acheter-ethylotest.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adftrasporti.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agnesk.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ahtuxpk.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allontanamentovolatili.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allstakesupply.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alphaetomega3d.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apparelfashionwiki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ask1.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badblock.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benceskorka.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "booksinthefridge.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "city-walks.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codetheworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crunchrapps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csfcloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.rimini.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dokipy.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drivya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-traceur-france.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elixi.re", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elnoorandelmohanad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "falegname-roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fassaden-selleng.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fishgen.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "francetraceur.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freesoftlab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funds.ddns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "griechische-pfoetchen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gubagoo.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "illicitdigital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ironpeak.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jvega.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightbox.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "listekdo.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logtalk.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maintenance-traceur-hp.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "majkassab.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marcelwiedemeier.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marshmallow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medi.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medienweite.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijndiad.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobiletry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "montredeal.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "navienna.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netspeedia.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "np-edv.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ouglor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pasportaservo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pilotgrowth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pix-geeks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scpslgame.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "securitysense.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sergeemond.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "showroom.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simark.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tcspartner.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebannerstore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tir-mauperthuis.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "touhouwiki.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utazas-nyaralas.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "versicherungen-werner-hahn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wolfarth.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80aejljbfwxn.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zenti.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zooplankton.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3s-datasolution.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3s-datasolutions.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3s-ddns.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3s-dns.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3s-mail.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3sdatasolution.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3sdatasolutions.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3sddns.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3shosting.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akiym.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allontanamentovolatili.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aloesoluciones.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antennista.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apercloud.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apobot.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appgeek.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arteinstudio.it", "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": "backtest.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bbkanews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beadare.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benjaminvasel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bildkomponist.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billhartzer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biogeist.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blindpigandtheacorn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluntandsnakes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bookingworldspeakers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buildmorebuslanes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdom.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrisbryant.me.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "claus-bahr.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comicspornoxxx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cur.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cursosingles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dataharvest.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deuchnord.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dictzone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dieterglas.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discoverthreejs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.torino.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dockerup.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dramyalderman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dsteiner.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duonganhtuan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dybuster.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dynamicdesignuk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esgr.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exoten-spezialist.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fahrwerk.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "falaeapp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filezilla-project.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finalrewind.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "findapinball.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ftptest.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glotechrepairs.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hacc.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hartzer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthplansamerica.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herkam.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hestia-systeme.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hestia-systeme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hestia-systeme.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hestia-systeme.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i00.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infermiere.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infranium.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ismena.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jan-hill.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jerret.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jhill.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katemihalikova.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konpyuta.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladadate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legaillart.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lequerceagriturismo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lukas-gorr.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.info.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mariereichl.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marshallwilson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattatoio.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mclmotors.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediafly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melodiouscode.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melodiouscode.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "memrise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mes-bouquins.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "movimento-terra.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtltransport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nte.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onvousment.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openbeecloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "permeance108.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ph3r3tz.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pharmica.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plob.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porte.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "progenda.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qianqiao.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qis.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rainel.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reckontalk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richie.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rleeden.servehttp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roams.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ronnylindner.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruckzuck-privatpatient.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "santoshpandit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scottseditaacting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scrumplex.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servx.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirencallofficial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sisseastumine.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skybloom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "songtianyi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sos-falegname.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spacestation13.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steigerlegal.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studytactics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suffix.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tebodental.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tecon.co.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecompany.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thewagesroom.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thor.re", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "time.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transporta.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traslochi-trasporti-facchinaggio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trattamento-cotto.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vasel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vasel.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virtit.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivaldi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vulndetect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webdl.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wichitafoundationpros.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xqk7.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ybzhao.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yukimochi.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhcexo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zonewatcher.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "230beats.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acem.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adept.org.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aignermunich.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aignermunich.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alp.od.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altes-sportamt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altoa.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antani.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antennisti.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avptp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "b4ckbone.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basicattentiontoken.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "be-up-developpement.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bedels.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "besole.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bug.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camping-seilershof.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "candaceplayforth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "candex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carepassport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudflare-dns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubnoetig-ink2g.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crazy-coders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dafont.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danstillman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "das-forum24.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derattizzazioni.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazione.torino.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.udine.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dmd.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domus-global.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domus-global.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elonaspitze.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epos.az", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eulenschmiede.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evolvetechnologies.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flatmail.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "floersheimer-openair.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "francoise-paviot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gfestival.fo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gomasy.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "govype.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graniteind.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackerone.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "halfhosting.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heartlandbiomed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herpes-no.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holzstueckwerk.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homeoesp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iiit.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ijsblokjesvormen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imjo.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inflate-a-bubbles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intelly.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipemcomodoro.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-academy.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jasminefields.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jelleraaijmakers.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jugendhackt.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kevinhq.com", "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": "koodimasin.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lineageos.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macros.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mariapietropola.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megztosidejos.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melodiouscode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "more-terrain.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multitec.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ncsc.gov.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nodecraft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noleggio-bagni-chimici.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noriel.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noteskeeper.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nve-qatar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opengovpartnership.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palmen-apotheke.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panlex.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paxerahealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peterborgapps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pieland.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plesse.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privy-staging.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prosperontheweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rabbitfinance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rollatorweb.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "root-space.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scaffalature.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimentorifiuti.firenze.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smokinghunks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soakgames.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starcoachservices.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steamstat.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thisishugo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thomas-sammut.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toreni.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trad-n-vo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usninosnikrcni.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usnti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vikapaula.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villehardouin.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vlndc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-art.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webline.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weekendinitaly.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": "xif.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--myrepubic-wub.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--myrepublc-x5a.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtrainsights.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youc.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airconsfourways.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allarmi.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allcarecorrectionalpharmacy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arteaga.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brandrocket.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catalystapp.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "certfa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chaussenot.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clemenscompanies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consulenza.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creared.edu.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptoguidemap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dinocarrozzeria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.treviso.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazionivespe.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etrecosmeticderm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhba.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guegan.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herramientasbazarot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homecheck.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "illegalpornography.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": "jackson-quon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knowledgeforce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lavinya.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightning.community", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightning.engineering", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "littleskin.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livebythesun.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lookup-dns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lyrical-nonsense.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maneggio.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maryeileen90.party", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "media-library.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "messengerwebbrands.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muratore-roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nextevolution.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinekmc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pascualinmuebles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pf.dk", "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 }, { "name": "research-panel.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retrocdn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "romaservicegroup.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seohackers.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sglibellen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siw64.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sparta-en.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talentcast.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thenowheremen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vapensiero.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vda.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wateroutlook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zakojifarm.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zy.md", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "233vps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "90r.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acoustics.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agic-geneve.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akuislam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antik-trodelmarkt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apogeephoto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beimchristoph.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsg.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsgamanet.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bytepen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calcinacci.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cascavelle.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cascavelle.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celine-patisserie.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chl.la", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chlth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dasug.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidlamprea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elettricista-roma.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esthesoleil.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evilmartians.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exexcarriers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackreone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hin10.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilmiogiardiniere.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "improved-madness.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inchenaim.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaikei7.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kooliveeb.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linkthis.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepubic.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naturheilpraxis-oida.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neftis.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nikonschool.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novilidery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pulizieuffici.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qponverzum.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimentoamianto.frosinone.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tax-guard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tempa.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsatestprep.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unece-deta.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viris.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "walshbanks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warofelements.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wisal.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaloghaz.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zenvite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhuji5.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "00dani.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "123writings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ableprop.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accessoirescheveuxchic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acrepairgeorgetown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acrepairhutto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acrepairroundrocktx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affping.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aginion.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akasha.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allstarquilts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anime-tip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aucielrose.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayanomimi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bahnhelden.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bijouxcherie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluestardiabetes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "briefassistant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cachetur.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carbon-project.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charlotteswimmingpoolbuilder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ci-suite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "concertsto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "concreterepairatlanta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "d-macindustries.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dak.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "damonline.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dearktiel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deelmijnreis.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digital-liberal.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digital.govt.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discoveryaima.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioneblatte.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.bari.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dougley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drei01.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eliasojala.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ellencorddry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ensurtec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "envoie.moi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "envoyez.moi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "escuelabiblica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eutotal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fackovcova.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fackovcova.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fackovcova.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fackovec.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fackovec.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferienhausprovence.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fleetcor.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fur.red", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamesaviour.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ganggalbichler.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garrowmediallc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gcfadvisors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geba-online.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "get.how", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graf-igor.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hang333.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homegreenmark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hstspreload.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hybula.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ia.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iam.soy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "illerzell.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infranium.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infranium.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infranium.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infranium.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interaktiva.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ionovia.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ishet.al", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jabbers.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koerperkult.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kolcsey.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lambertshealthcare.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "langzijn.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lars.moi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "letsdebug.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lobstr.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logicne-hise.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logoglo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lotro-wiki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luyckx.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "majkl.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marco-hegenberg.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaelschmidt.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkchandler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobila-chisinau.md", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtlconcerts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mydroneservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myetherwallet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepubiic.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublic.com.kh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublic.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naturesbest.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.goog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.how", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.soy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.xn--q9jyb4c", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nosecrets.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nvl-game.tokyo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nyan.stream", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oakesfam.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ollieowlsblog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ongea.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openreview.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orionfinancialservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pashminacachemire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pjo.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "princessefoulard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qoml.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qx.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rawdutch.nl", "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": "robertbln.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robertopazeller.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sacprincesse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samdev.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scripter.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shivamber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silent-clean.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sppin.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stefan-rothe.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stellarguard.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stolin.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superaficionados.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "symlnk.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tekniskakustik.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teusink.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebakery2go.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tildes.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topekafoundationpros.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trillian.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tunnelventilation.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unityconsciousnessbooks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vancityconcerts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verasani.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viyf.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "walkera-fans.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "walpu.ski", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "walpuski.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whta.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wm-access.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wm-access.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wmaccess.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wolfermann.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wolkoopjes.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xentox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yvonnethomet.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zebulon.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zephyrbk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zephyrbookkeeping.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zozzle.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ace.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acroyoga-nuernberg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advenapay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aifriccampbell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ajaxed.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ajiboye.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alonetone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antonin.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aotearoa.maori.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asws.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autobelle.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avv.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "awaresec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "awaresec.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axelname.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "behoreal.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bentongroup.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bentonweatherstone.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best66.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitlo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitlo.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitlo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blabber.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blanket.technology", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bmhglobal.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsp-southpool.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "btsapem.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bullshitmail.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bytesign.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cad-noerdlingen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centralmissourifoundationrepair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheela.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christiehawkes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clive.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cockybot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "connictro.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consultimator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creteangle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crys.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cvc.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dagensannonser.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danbaldwinart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datatruckers.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datatruckers.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "defeestboek.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "degressif.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deltaservers.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "developerdan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnscrypt.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dowhatmakegood.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drhathazi.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drusillas.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dumbfunded.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dybuster.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dybuster.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dylanspcrepairs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edwellbrook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eemcevn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emby.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etch.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fairydust.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferrousmoon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fimsquad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "franz.beer", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "franziska-pascal.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "friendshipismagicsquad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genderidentiteit.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gowithflo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greenpanda.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guanzhong.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heaaart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hellomouse.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iankmusic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iftarsaati.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "illumed.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "import-shopping.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "j15h.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jasperpatterson.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jdm.elk.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jelleluteijn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jelleluteijn.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jelleluteijn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jelleluteijn.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jimfranke.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "julian-uphoff.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "junglememories.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kersvers.agency", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kommaer.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kooli.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krise-chance.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krsvrs.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lavanderia.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loginsentinel.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marketing-2.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marksm.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markus-musiker.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "memememememememe.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "memind.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaelwermeester.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaonline.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mine-craftlife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miproximopaso.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkk.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moeking.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monkeybusiness.agency", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrazek.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mynextmove.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nexwebsites.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ng-musique.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nil.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noahmodas.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ntags.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okinawa-mag.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onetcenter.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onetcodeconnector.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onetonline.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orgsyn.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pacatlantic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parry.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paste.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peerweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pluimveeplanner.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pomelo-paradigm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powelljones.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qtn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "readingrats.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recipea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rejects.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reklamjog.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reticon.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retmig.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rolleyes.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rvender.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safebaseflorida.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seasidestudios.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplecoding.click", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spartaermelo.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ssready.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studyin.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sustainoss.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techsolvency.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telephonedirectories.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theonethaimassage.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thiagohersan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thiepxinh.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "threexxx.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toolroomrecords.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transgendergedenkdag.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transgenderinfo.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transgendernetwerk.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tricefy4.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unicolabo.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unsourirealecole.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urcentral.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "varztupasaulis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "varztupasaulis.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "varztupasaulis.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "varztupasaulis.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vawlt.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veronic.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vtaxi.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "watfordjc.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webfixers.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webkef.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wegrzynek.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weiling.clinic", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weinundsein.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winkelcentrumputten.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "with-environment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wtfnope.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xenon.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xenoncloud.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xhmikosr.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xviimusic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yannikbloscheck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zabbix.tips", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3prn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acgtalktw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "actc.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affittacamere.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ahosi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airwolfthemes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akplates.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alab.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amministratore.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antroposofica.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "app2get.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arbejdsdag.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arzinfo.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "askvg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asystent-dzierzawy.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autospurgo.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barcamp.koeln", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bendyworks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bioresonanz-ibiza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "birkenstab.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitmidi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blakekhan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bloggermumofthreeboys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonami.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buchwegweiser.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buurtpreventiefraneker.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camastowncar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "careerpower.co.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carinthia.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chiropraktik-riemann.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cipri.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cipri.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cipri.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cipria.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "circle-people.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cities.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citroner.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coda.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "compasslos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "correctiv.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crisp.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crisp.help", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cronberg.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crys.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danselibre.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datenschutz-consult.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dbmiller.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "decoratore.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deliacreates.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazionecimici.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.catania.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.padova.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "divari.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dshield.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dylmye.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easypay.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edu-kingdom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edvgarbe.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ehne.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essaybrand.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "factuur.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fancy.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "felinepc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fergtm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firmware.science", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flooringsourcetx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frprn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "g8energysolutions.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ghini.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giardiniere.bologna.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giardiniere.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giraffenland.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gisher.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "god-clan.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "godclan.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gomelchat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gplans.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gunworld.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hansonian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hapsana.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heartsintrueharmony.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heroiclove.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiromuogawa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hlavi.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hofapp.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "https.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hurtigtinternet.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hvrint.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idraulico-roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imgbb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infrarank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "innovate-indonesia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ithinc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joeyfelix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juergenklieber.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kado-ya.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kedv.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinautas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kleine-strolche-lich.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kost-magazin.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kvnsport.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lagout.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ludovic-muller.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "majkassab.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mathys.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattcorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mego.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meta-word.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metaword.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobius.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "more-hikkoshi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motekmedical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mpa-pro.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtasa.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musicompare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myvalleymarketing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "navient.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nekomimirouter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nuffield.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nullonerror.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oldtimerreifen-moeller.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onhistory.co.uk", "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": "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 }, { "name": "pack-haus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parmels.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parnassys.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paste.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paulwendelboe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pew.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pg-mana.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plissee-experte.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ponydesignclub.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornloupe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pors-sw.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pressup.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prismacloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prostoporno.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prostoporno.sexy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pure-gmbh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rachelmoorelaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raltha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redstarsurf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redweek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ricobaldegger.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royceandsteph.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roycewilliams.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samhuri.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "satoshinumbers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "securitypuppy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siciliapulizie.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simonastallone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smileytechguy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "socialstrata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soph.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sotthewes.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steel-roses.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stefan-schmid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storytell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studentpop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sucretown.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supertutorial.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swetrust.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "synchronyse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tandzorg.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taprix.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "termografiranje.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "textundblog.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thalia.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theimagefile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ticketassist.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tierarztpraxis-illerwinkel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tollerunterricht.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tools.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traditions.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traditionskapperscollege.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tycho.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "udvoukocek.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urbancreators.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verifalia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vocustest.aero", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wbudd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wermeester.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wijzijnwolf.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "windowslatest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wingify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wonderfuleducation.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wonderfuleducation.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldtalk.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wowi-ffo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wuifan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yukimochi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zacharydubois.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adam-ant.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ai-soft.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexlouden.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amani-kinderdorf.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ariaartgallery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "askcaisse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astrovandalistas.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autowerkstatt-puchheim.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badanteinfamiglia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoin-casino-no-deposit-bonus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitlo.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackfire.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blyat.science", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "borchers.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calcularis.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carpetcleaningtomball.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centura.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charliegarrod.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cojam.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "compoundingrxusa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ctf.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cwgaming.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "detalika.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diekperaiwseis.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discord4j.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doomtech.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dotsiam.co.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dutchforkrunners.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dybuster.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dybuster.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dybuster.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dybuster.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dyscalculia-blog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ergodark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exclusivedesignz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "facilities.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fastblit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fonts4free.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fusiongaming.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gabecook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gabrielsteens.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gensicke.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gluit.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "go2ubl.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hexstream.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hexstream.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hexstreamsoft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hj-mosaiques.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hks.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hosting-swiss.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huisartsenpraktijkzonnehoed.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iatfei.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janikrabe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klausen.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koyo.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lagodny.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lampposthomeschool.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "learningman.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liberdademg.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lodewijkict.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luteijn.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macil.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mail.storage", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matt.re", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medikuma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "messdorferfeld.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michellavat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikkelscheike.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mnemonic.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monad.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monoworks.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mpkrachtig.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ms-ch.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nathaliedijkxhoorn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nathaliedijkxhoorn.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nathanaeldawe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netsphere.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newreleases.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newvehicle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nextstep-labs.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ntcoss.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orthograph.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ovelhaostra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "papelcraft.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pawelurbanek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peda.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perala.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perthhillsarmadale.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piscine.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plantes.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porchdaydreamer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portugal-a-programar.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pouwels-oss.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pru.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redcoded.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reflectivity.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "repology.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retractableawningssydney.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "root.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sadev.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sap-inc.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sctiger.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendbox.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shuffleradio.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silo.org.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spritsail.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stickandpoketattookit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suaudeau.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suaudeau.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techsys.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "texasparkinglotstriping.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thelonious.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theserviceyouneed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thinkingliberty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiim.technology", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tonnycat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topservercccam.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truqu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tryndraze.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvlplus.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "typeof.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unkrn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "venev.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waifu-technologies.moe", "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": "westcode.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yhe.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeal-interior.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zealworks.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0x0.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3sdns.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aati.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "academichealthscience.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aiki.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aiki.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aikido-kiel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angelicare.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astrology42.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audiobookstudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "austin-security-cameras.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "b-f-s.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bioexploratorium.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blasorchester-runkel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bookingslog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "certifix.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrismorgan.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crimefreeliving.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datenschutzzentrum.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datmancrm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "david-jeffery.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidsimner.me.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diamantovaburza.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "felett.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fijnewoensdag.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "floridafabrication.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fojt.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forefrontcloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "full-stack.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gogroopie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goto10.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hanschventures.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hansen-kronshagen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hilde.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hjphoto.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "httpsiseasy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intelly365.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internetmuseum.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itmindscape.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": "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": "landchecker.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "line.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lmtls.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithspring.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmiththewoodlands.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "louerunhacker.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m-chemical.com.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marmista.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikakalathil.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msroot.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netrogue.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nickplotnek.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ninth.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openstreetmap.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "papaya.me.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pasarella.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passabook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "r-t-b.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rt22.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seadus.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serveradium.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sesam-biotech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svenmuller.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "szafkirtv.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tamriel-rebuilt.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telamon.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transgendernetwerk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uldsh.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vocus.aero", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vovladikavkaze.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vuotila.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "williamboulton.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "windsorite.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zamalektoday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0des.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "114514ss.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advance.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alaskajewelry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "am-dd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arekatieandchrisgettingmarried.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arekatieandchrisgettingmarried.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arekatieandchrismarriedyet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artefeita.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auszeit-walsrode.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badgirlsbible.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basicapparel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baswetter.photography", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beaglesecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beuteugeu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billigerfinder.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackhat.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bowdens.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brianjohnson.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bridgement.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brush.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "byronkg.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cardios.srv.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cargorestraintsystems.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlocksmithfallbrook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlosfelic.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "childrens-room.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "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": "cloudns.net", "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": "compassfinance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conectumfinanse.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cp-st-martin.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cwinfo.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielpeukert.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danmassarano.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "decoratingadvice.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deflumeriker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devcf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devirc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "direktvermarktung-schmitzberger.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discord.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doihavetoputonpants.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dumberger-bau.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecxforum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electionsbycounty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricimagination.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emanuel.photography", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epdeveloperchallenge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eyesandearsrescue.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "f-u-c-k.wien", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "f0x.es", "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": "filiio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "floatationlocations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fnkr.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "folio.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fsbn.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuselight.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "georgecolgrove.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gillfamily.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gkoenig-innenausbau.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grabacabpa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grailify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gross.business", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helfordriversc.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "henley-computer-repairs.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herofil.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hesyifei.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoeren.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hof-mulin.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoop.la", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hulpmiddelenshop.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huyvu.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hxp.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ichbinein.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "identity.plus", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iligang.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infraflip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ingatlanjogaszok.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inovatecsystems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iramellor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jesec.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jonblankenship.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaminbau-laub.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katagena.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kazakov.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keybored.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kibea.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krishofer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kylegutschow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "l33te.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lachlan-harris.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lexdigital.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leymaritima.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locker.plus", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithbalchsprings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithgarland-tx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithgrapevinetx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lukem.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maidoty.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marcelwaldvogel.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marcelwolf.coach", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markstickley.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martinvillalba.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martinvillalba.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martinvillalba.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martinvillalba.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "media-serwis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "members-arbourlake.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miemus.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mivzak.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mivzakim.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mivzakim.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mivzakim.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mivzakim.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mivzakim.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mo2021.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motifstudio.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mpgaming.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrv.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multitenantlaravel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myeml.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublic.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublicgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublicltd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublictelecom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepubllc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nerdbox.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nice.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notsafefor.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oculus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oneiroi.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onice.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "overzicht.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "overzicht.ws", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pflanzen-shop.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pharmasana.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pharmasana.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phillyinjurylawyer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinkerton.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pirates-comic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pkirwan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poezja.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "popcat.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prontossl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rambo.codes", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rapidoo.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rctalk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "relojeriajoyeria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "researchstory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roguenation.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosalindturner.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roundrock-locksmith.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ryan-design.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sasioglu.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "se.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sealaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sekoya.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimento.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sms.storage", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spdillini.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spirit55555.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoinov.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunjiutuo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supermercato24.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "switch-trader.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tallyfy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tasks.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tearoomlints.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teknoforums.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecamels.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecoffeecamp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefurnitureco.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tigernode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trasloco.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "troopaid.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truong.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uiterwijk.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "umanityracing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valiant.finance", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "victory.radio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vixrapedia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wanda.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wandelreizen.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warenmedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "welshccf.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westcoastmarineadvisor.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": "wrn.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xants.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--5dbkjqb0d.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--5dbkjqb0d.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--gfrr-7qa.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--martnvillalba-zib.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zander.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a0print.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigbendguide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blyth.me.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "breitband.bz.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bscc.support", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "busuttil.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c3wien.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catchhimandkeephim.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catl.st", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cccwien.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ch47f.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": "drchrislivingston.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-colle.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eduroam.uy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eihaikyo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elevatoraptitudetest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emperola.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erperium.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everpcpc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fjordboge.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "froehliche-hessen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "havetherelationshipyouwant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibericaderedes.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iliastsi.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "importsagt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infranotes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iowaschoolofbeauty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-service24.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jadchaar.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jockbusuttil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jordhy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "josephbleroy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "k7azx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kzar.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lai.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovelychalets-peisey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malezan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuel7espejo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcgaccountancy.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meeco.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moneybird.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monzo.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muell-weg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ninverse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openre.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "protobetatest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rexskz.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riku.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "romatrip.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ronniegane.kiwi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saleduck.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saleduck.co.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saleduck.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saleduck.com.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saleduck.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saleduck.com.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secretsdujeu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "semsec.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sgsp.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slate.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spacinov.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spacivox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ss.lazio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strafensau.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stroeerdigital.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superstropdas.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thehairrepublic.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timeless-photostudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tradik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trucchibellezza.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tunnelbear.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvipper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twinztech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "werbeagentur.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wood-crafted.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wtpdive.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--gfrrli-yxa.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1password.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1password.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "783lab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abdelsater.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acousticalsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adwokatkosterka.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adwokatzdunek.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affordableblindsexpress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airductcleaninggrandprairie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akr.services", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amifoundation.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anshar.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anthonyvadala.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aofusa.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armbrust.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autodidactic.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avidmode-dev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avidmode-staging.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avidmode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badoo.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badoo.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bahnenimbild.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baristador.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betaprofiles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billionaire365.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "binnenmeer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biztouch.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blogdelosjuguetes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonito.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "browsemycity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cabineritten.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlot-j.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catalogosvirtualesonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charisma.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chibr.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chmielarz.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "choyri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christianlis.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christianlis.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrysanthos.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comeals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conner.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "connorhatch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "couvreur-hinault.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crawler.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crowdsim3d.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "culturesouthwest.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cwrau.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "d3lab.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielmorell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielran.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dentistesdarveauetrioux.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dereddingsklos.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devsjournal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dexigner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drawxp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drinkcontrolapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drlandis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drusantia.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dryerventcleaningarlington.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dryerventcleaningcarrollton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dso-izlake.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dym.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dym2012.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dym2013.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dym2014.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dym2017.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dymmovie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dzyszla.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-ptn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ec.mine.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eentweevijf.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ehub.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ehub.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ejkmuseum.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ejknet.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ememsei.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enjoy-drive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enpasenerji.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epidauros.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epigrafes-led-farmakeia.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erikkruithof.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evavolfova.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evromandie.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "familie-kruithof.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fluids.ac.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fogway.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foundationspecialistmi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "g-p-design.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gachiyase.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gameplaysforkids.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamivo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gdngs.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gehirn.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gepgroup.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gerbyte.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gerbyte.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gf5fcalc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ghowell.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gisher.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glitzerstuecke.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gnk.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldcoastasian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldcoastphotographycourses.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldfmromania.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gradingcontractornc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grahamcarruthers.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greensborosecuritycameras.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grillen-darf-nicht-gesund-sein.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grottenthaler.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guerard.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hacker.holiday", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hardwareschotte.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthyteame.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "henzenhoning.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howellaccounts.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hsappstatic.net", "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 }, { "name": "ianklug.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inflationstation.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infocoin.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "innerlightcrystals.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "innocenceseekers.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "investor-academy.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jacik.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jacobjangles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janterpstra.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jantinaboelens.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jerryweb.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jf-fotos.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jmce.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jsdelivr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "k4law.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kashinavi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kidsclub.photos", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kotobox.net", "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 }, { "name": "legrandvtc.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leonbuitendam.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linux-audit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liverider.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luke6887.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maeln.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mahjong-navi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "majolka.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maki-chan.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manski.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mapstack.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mark1998.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markridgwell.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matejgroma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matthewj.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattlaks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcuuid.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcversions.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medja.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "menuiserie-berard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mibuiin.com", "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": "moneybird.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myamihealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mylittlechat.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mylotto.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mymun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n8solutions.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nadsandgams.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natura-sense.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "network-midlands.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "network-midlands.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "networkmidlands.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "networkmidlands.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicolemathew.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nitschinger.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noahjacobson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nordwal.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "norsewars.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nulle-part.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nyansparkle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olbat.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oles-hundehaus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opportunity.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osnova.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pact2017.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paper.sc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passionatelife.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pie-express.xxx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pow.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pplsoft.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pressakey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pressakey.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "procarservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "projectlinuseasttn.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pt-d.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ptfiber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ptfiber.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ptfiber.spb.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "r7.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rail360.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "railbird.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "railorama.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "railpassie.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "railvideo.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "railvideo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "railvideo.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reactpwa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recaptcha-demo.appspot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "relojes-online.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remedionaturales.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riaki.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richadams.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rkmns.edu.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robinwill.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rostclub.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s1ris.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s64.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sailormoonlibrary.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saleduck.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saleduck.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saleduck.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saleduck.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saleduck.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schottenland.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scubaland.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seanrodda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "searchcandy.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sebald.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sebald.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seibu-kikaku.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sethjust.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seventwentynine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sidemount-tauchen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sight-sound.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simrail.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slim-slender.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solden.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soldesduck.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soldesduck.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soundprotectionllc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spoorcam.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stanron.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stcplasticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuarteggerton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studiopirrate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunfiregold.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sweak.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sympmarc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tannerwj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tbejos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techtrader.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "termux.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "the-woods.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebinarys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebulletin.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theworldexchange.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theworldexchange.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tina.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobiaswiese.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomandmara.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomspdblog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toplist.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trainmagazine.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trainplaza.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trajectfoto.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trajectvideo.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "troyhunt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unicorn-systems.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upholsterydesign.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urlakite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uskaria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valleydalecottage.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vandyhacks.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vangoghcoaching.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verifiny.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "victora.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vrjetpackgame.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wandystan.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wblinks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-odyssey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-siena.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-smart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webadiccion.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webadicta.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webadicto.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webdemaestrias.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webnexty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whatusb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whynohttps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wxforums.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xdos.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xeiropraktiki.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yogahealsinc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zacharyseguin.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zalvus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zbut.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "24hour-locksmithsanantonio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "24hourlocksmithdallastx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5percentperweek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "addon.watch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aerobasegroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alainfrancois.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amati.solutions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amend-friseur-schwabing.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arose.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badoo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "banham.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beacham.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beeming.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blue-gmbh-erfahrungen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blue-gmbh.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brittanyferriesnewsroom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "captain-dandelion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlocksmith--dallas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlocksmithellicottcity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlocksmithmesquite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carterstad.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celebmasta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ching.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chiropractic.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christthekingparish.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cinemasetfree.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudsign.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "club-creole.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "club-premiere.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cnvt.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comeoishii.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "countermats.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cybersecurity.run", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dampedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datagrail.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dealerselectric.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deltasigmachi.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dotjesper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ehub.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "europarts-sd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashiondays.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashiondays.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashiondays.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feildel.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "franzknoll.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "game4less.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gazete.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "georgiaautoglass.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getwemap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ginzaj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "git.sb", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glamourdaze.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gmslparking.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gnfrazier.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gregmote.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hanpenblog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hitn.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotdoc.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotels3d.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huber-informatik.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibodyiq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idratherbequilting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imaple.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "improfestival.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infinitybc.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infrapass.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jakubklimek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jamesross.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jloh.codes", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jolle.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keyhomechecker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "larryli.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ledshop.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linkedpipes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithedmonds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithmissouricity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithsanantoniotexas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithservice-houston.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithspringtx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mail-de.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marcelkooiman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martijnvanderzande.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mathiaswagner.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcon.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "merlinsoap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meurisse.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mygirlfriendshouse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakalabo.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nickhitch.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nikonlibrary.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okmx.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opendata.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "owlandrabbitgallery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixe2019.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plutiedev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privacychick.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proadvanced.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "progressnet.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prontointerventoimmediato.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "providencecmc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pxl.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qr.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qrbird.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rail24.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richardharpur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rimorrecherche.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rootonline.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salonasymetria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scan.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seby.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "securityheaders.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendaiouji.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serendeputy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shadowkingdomrecords.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shop-hellsheadbangers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silkon.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyynet.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sletat.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stephencreilly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stiltmedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stma.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stmarthachurch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stromzivota.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunsong.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "surefit-oms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tabi-runrun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teammateworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theflowershopdeddington.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thetvtraveler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ticketsource.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tierraprohibida.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tilosp.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timsayedmd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tl.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uniontestprep.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uraimo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uxteam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vega-rumia.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viagusto.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinsation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virtualcommodities.org", "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": "winch-center.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "world-lolo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wxdisco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wyrickstaxidermy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--klmek-0sa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xrg.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yatstudios.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ycnrg.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zerotoone.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zionsvillelocksmiths.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amateurradionotes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amionvpn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ankitpati.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balancedbrawl.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bardes.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitaccelerate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bombe-lacrymogene.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calcoolator.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlocksmithbaltimore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "castle-engine.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catherinejf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cathy.guru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cathy.website", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cathyfitzpatrick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cathyjf.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cathyjf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "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": "christtheredeemer.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "club-slow.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crgalvin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cursosforex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cursossena.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dowell.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "druckerei-huesgen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dxgl.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everything-everywhere.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "figure.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gensokyo.re", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hagiati.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hatpakha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthcultureexpo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hkr.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hues-in-lee.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imyjy.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "incert.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jcb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jointotem.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "k8n.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kellimacconnell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keygen.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuroha.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liamelliott.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifeartstudios.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithdearborn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithlivoniami.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithmadisonheights.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithsammamishwa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithscottsdaleaz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lumminary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magic-cards.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magiccards.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marylandbasementandcrawlspacewaterproofing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moviltronix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mudbenesov.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nex.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "odinseye.net", "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": "piroleikki.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixelz.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pokemonlab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pokemonsimulator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "premiumcredit.am", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resine.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sandervanderstap.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scottgalvin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shakingthehabitual.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiqisifu.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skill.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skillmoe.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soulike.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stmichaellvt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stremio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supplynation.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teslamagician.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theadelaideshow.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topciderska-crkva.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tresor.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vault81.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veloroute.hamburg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vintagemakeupguide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vogelbus.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "01011970.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "01110000011100110111001001100111.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "06091994.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "291167.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2y.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "51tiaojiu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abdel.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accoladescreens.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.co.cr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.co.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.co.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.co.ve", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.bo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.bz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.ec", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.gt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.hn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.kh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.mt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.ni", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.pa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.py", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.sv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.gy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.la", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alaskafishinglodges.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aliorange.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allamericanprotection.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allgaragefloors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anthonyfontanez.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aptitudetests.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asproni.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ataber.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atvirtual.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "austenplumbing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avvocato.bologna.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bellamodeling.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bethpage.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biddle.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biegal.ski", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bloglogistics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bot-manager.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncycastlehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cardsolutionsbh.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlocksmithtucson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cg.al", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "civiltoday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cleandetroit.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clearbookscdn.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clearvoice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clinicasmedicas.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consultoriosodontologicos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "contemplativeeducation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cromosomax.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cubetech.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cumberlandrivertales.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dabasstacija.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dasignsource.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidtiffany.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deftig-und-fein.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "develops.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diatrofi-ygeia.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drewapianostudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drtimmarch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duncm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eelcapone.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eldevo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elizabethrominski.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enalean.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "encycarpedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esrhd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evanwang0.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faelix.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fattorino.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feross.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filestartest.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goodshepherdmv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gregbrimble.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gunauc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gv-salto.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "h10l.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackerone.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "handy-center.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hirevo.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howtoteachviolin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huaqian.art", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huxcoconstruction.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibuki.run", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idealsegurancaeletronica.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ideiasefinancas.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "identigraf.center", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "instead.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jackhoodtransportation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jaetech.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jamesjboyer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jamesturnerstickley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katex.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ketotadka.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "killdeer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kokona.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kristofba.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liquipedia.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loungecafe.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loungecafe.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovebigisland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lupecode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luqsus.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magnunbaterias.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mana.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mangahigh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marjeta-gurtner.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martin-loewer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediarithmics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mhadot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michadenheijer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mim.am", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mimemoriadepez.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mixrepairs.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "momentum.photos", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrevery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nativitynj.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newmusicjackson.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "npsas.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "o-results.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ohol.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olfnewcastle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ond-inc.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pacificcashforcars.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partnermobil.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peacedivorce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peterjin.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pgh-art.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinkylam.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playviolinmusic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polis812.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powerfortunes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "praktijkpassepartout.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "precisiondigital-llc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pro-taucher.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pro-taucher.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pscp.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qvg.company", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ranfurlychambers.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rebelonline.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reesmichael1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remax.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richardson.cam", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roundtablekzn.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s4q.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safeguardhosting.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanantoniolocksmithtx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scbdh.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schoolcafe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scigov.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "securetrustbank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sfaparish.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shawnow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiqi.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shortcut.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skutry-levne.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skutry.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sky-coach.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sky-coach.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spinalo.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "srife.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "staer.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stclementmatawan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stclementreligioused.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stjohnsottsville.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stjoseph-stcatherine.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stjscatholicchurch.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stjustin.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stlukenh.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strawberry-laser.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sujal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suttacentral.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syntheticgrassliving.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tellyourtale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terminsrakning.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebeginningviolinist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theforkedspoon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theyakshack.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "threatcon.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "threatnix.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uptechbrasil.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vidracariaespelhosbh.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vogue.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voidma.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vvzero.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wa.me", "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": "worldrecipes.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wtp.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ymoah.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yoast.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "360vrs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "69wasted.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abitidalavoro.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "academkin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acklandstainless.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "actioncleaningnd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aerospace-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agriculture-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ailitonia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnbchina.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aktin.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "all-fashion-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allemoz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allemoz.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allius.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "american-school-search.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antennista.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "architecture-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asegem.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auspicacious.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "author24.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ay-net.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "backseatbandits.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beaverdamautos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bejarano.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-accounting-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-art-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-business-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-community-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-education-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-engineering-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-graduate-programs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-hvac-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-lutheran-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-management-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-marketing-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-nursing-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-trucking-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biology-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitsoffreedom.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bongo.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "browserleaks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bubblin.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caldoletto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caroffer.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheap-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chemistry-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cololi.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "computer-science-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "construction-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ctcom-peru.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cubing.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cursos-trabajadores.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberogism.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dance-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dataguidance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidkennardphotography.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dcain.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dental-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazione.verona.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djvintagevinyl.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dschwarzachtaler.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dsgnet.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eastplan.co.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "economics-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edenming.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electrical-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "environmental-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esgen.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estherlew.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esuretynew.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exordiumconcepts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "experise.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fdresearch.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "film-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finance-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fire-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "footloose.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foreign-language-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geography-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geology-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gifudodo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graphic-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hashemian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hbcu-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hikerone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hinata-hidetoshi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hirtzfr.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "history-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hospitality-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huininga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huininga.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huininga.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hysh.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iblackfriday.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infogram.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infralist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interior-design-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internationalschool.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipfire.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipplans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iskanderbroere.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivy-league-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jaxfstk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "journalism-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jpralves.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kabulpress.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kamranmirhazar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kochinke.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kochinke.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koumakan.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladyofhopeparish.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "law-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawrencewhiteside.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lewiscollard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lgbt-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lijstje.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lijstje.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "literature-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "looseleafsecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "louisemisellinteriors.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madscientistwebdesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mail180.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "majlovesreg.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "makechanges.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markuskeppeler.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "massage-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "materassi.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "math-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxb.fm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mechanics-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "med-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediarithmics.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medical-assistant-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mexico.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mormon-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mypnu.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nmmlp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noobow.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "npregion.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "occupational-therapy-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "odhosc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ofertasadsl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olfsecane.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omeopatiadinamica.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ondevamosjantar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orocojuco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oysterworldwide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patrocinio.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "performing-art-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petroleum-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petrotranz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philosophy-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "physics-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pilot-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "police-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "political-science-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "praha-9.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pratorotoli.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "precisionmachineservice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "presbyterian-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psicologo-especialista-barcelona.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psycolleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pxl-mailtracker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qdabogados.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radegundisfest.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rain.bz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdmc.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "respecttheflame.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revivalprayerfellowship.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robbiecrash.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saint-cyril.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintpatrick-norristown.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secretary-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "securitygladiators.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sgitc.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiqi.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shivammathur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shop4d.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skk.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "social-work-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sociology-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sports-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stannri.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stanthony-hightstown.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stefanvd.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stisidores.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stjosephspringcity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stmariagoretti.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stmattsparish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syplasticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tanacio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terrorbilly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theatre-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theverybusyoffice.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toontownrewritten.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truyenfull.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuev-hessen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ubuntu18.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verwandlung.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veterinary-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weather-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "werkslimreisslim.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikihow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikihow.fitness", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikihow.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikihow.mom", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikihow.pet", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikihow.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wolke7.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wunschzettel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yosida-dental.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zdymak.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeal-and.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zp25.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2chan.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2chan.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aeronautix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akademie-frankfurt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "albertcuyp-markt.amsterdam", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "almut-zielonka.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "am-executive-consulting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amandadamsphotography.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antaresmedia.com.py", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anwalt.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azsupport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackjackballroomcasino.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "borneodictionary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "builtory.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bytrain.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christwaycounseling.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codevat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corvax.kiev.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "craftsmany.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darklaunch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desuchan.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desuchan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diamond-hairstyle.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.gorizia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dojozendebourges.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dostalsecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drpetervoigt.ddns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eco2u.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eletor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eletor.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurodentaire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabian-klose.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabian-klose.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabian-klose.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faidatefacile.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fantasticservicesgroup.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feuerwehr-gebirge.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "formulastudent.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fpsclasico.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frownonline.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fs-g.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happybirthdaywisher.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiparish.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holycrossphl.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "im-haus-sonnenschein.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jack2celebrities.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jazminguaramato.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jazzy-feet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joanofarcmtcarmel.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joompress.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jtconsultancy.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karewan.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klose.family", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koenzk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kvalitetsaktiepodden.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lamontre.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lemazol.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leontiekoetter.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifetree.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ligadosgames.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loli.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovemanagementaccounts.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malik.holdings", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manti.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mariskavankasbergen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marksmanhomes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mecaniquemondor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medpeer.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "microzubr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minutashop.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mta.org.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muz2u.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mzstatic.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northcreekresort.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ocni-ambulance-most.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okurapictures.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oldsticker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oldstmary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ourladymountcarmel.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ourladyofcalvary.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ourladyoftheassumptionchurch.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ourladyqueenofmartyrs.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pension-am-alten-waschhaus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philipssupportforum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proeflokaalbakker.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "progresswww.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regeneo.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rokass.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rteguide.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sainthelenas.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintjohn-bocaraton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schlarb.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schwarz-gelbe-fuechse.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendtrix.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sfg-net.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sfg-net.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sfg-net.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sfg-net.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shee.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shinsyo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soontm.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steemyy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stfrancisnaugatuck.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stgabrielstowepa.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sthenryrc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studiohomebase.amsterdam", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swiftcashforcars.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thevenueofhollywood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thrillernyc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiekoetter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topgshop.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ustugov.kiev.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ustugova.kiev.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valek.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valkova.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "variomedia.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vlakem.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vos-systems.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whirlpool.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wyydsb.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wyydsb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--ehqw04eq6e.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youpickfarms.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anothervps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beforeyoueatoc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blenderinsider.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bryggebladet.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calculadoraconversor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casa-lunchbreak.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chascrazycreations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "civicforum.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consultoriadeseguranca.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coolcamping.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cuxpool.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davisdieselandautorepair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ddosolitary.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "depannage-traceur.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dicesites.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "douzer.industries", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamdivers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eden.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "extradivers-worldwide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "floogulinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fortuna-apotheke-lahnstein.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "francoisharvey.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gessettirotti.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "havarijna-sluzba-bratislava.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hnn.net.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ikxkx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infranox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jelenkovic.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "js-web.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "julienschmidt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "k-system.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "komplet.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koplancpa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kxway.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lapicena.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luowu.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maitheme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mandynamic.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minecraftstal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morbius.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mosaicmarble.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "movacare.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nenkin-kikin.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nunesgh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olastrafford.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "online-textil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "online-textil.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "online-textil.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palestra.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paulsnar.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pepeelektro.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petermaar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pro-ben.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "promedyczny.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pushoflove.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "questoj.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rainiv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rct.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reddyai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reinhardtsgermanautorepair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resourcesmanagementcorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ripcordsandbox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rumartinez.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintmarkchurch.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "santiagogarza.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "savaari.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sb-sd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schnuckenhof-wesseloh.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seedisclaimers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shadowsocks.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simkova-reality.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sion.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studioavvocato24.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "subjektzentrisch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superdroni.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supra.tf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svorcikova.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swingular.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "themenzentrisch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tom-kurka.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vos-systems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vos-systems.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vos-systems.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vos-systems.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vsd.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whitebirdclinic.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xsteam.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yeskx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhaopage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zom.bi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1911trust.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "21stnc.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2718282.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ainutrition.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aktin.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrejstefanovski.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "annunciationbvmchurch.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artfabrics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atelierhsn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autoto.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avvaterra.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basementwaterproofingdesmoines.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bjmgeek.science", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bkkposn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluekrypt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bucek.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casa-lunch-break.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casalunchbreak.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caseycapitalpartners.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cellebrite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cennelley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cennelly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coltellisurvival.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "commeunamour.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corpuschristisouthriver.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coxcapitalmanagement.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cpasperdu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cra-bank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cra-search.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cratss.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crc-bank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crc-search.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crisp.watch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cronoscentral.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ctkwwri.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cubebuilders.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "d6c5yfulmsbv6.cloudfront.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dev-gutools.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devtty.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dirtyprettyartwear.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discarica.bologna.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "divinemercyparishvld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "divinemercyparishvlds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dmparish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domakidis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dras.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drlinkcheck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dvipadmin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "echobridgepartners.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eflorashop.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eflorashop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eflorashop.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eflorashop.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eflorashop.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eflorashop.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eflorashop.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eflorashop.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eflorashop.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ehrenburg.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eichler.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emarketingmatters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emdrupholm.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emil-dein-baecker.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emil-reimann.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epspolymer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "euroflora.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "euroflora.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fdalawboston.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fdaregs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferienwohnung-hafeninsel-stralsund.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fewo-hafeninsel-stralsund.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fileservicios.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finwe.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fioristionline.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fliesen-waldschmidt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "floraclick.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "floraexpress.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frasesconemocion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glassrainbowtrust.org.je", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "golang.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greathairtransplants.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haemka.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "havernbenefits.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holycrossverobeach.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holyfamilyrussell.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holyghost-church.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holyspiritpalmyra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holyspiritweb.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iamanewme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idxforza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ifgcdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "im4h.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "im4h.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "im4h.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immigrantdad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivsign.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jackassofalltrades.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jclynne.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jgregory.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jmorahan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joergschneider.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johanpeeters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jonathanlara.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jonola.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juanmazzetti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kacgal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keylength.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kingsfoot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klingenundmesser.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lachyoga-schwieberdingen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libre.cr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lindnerhof.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luca-steeb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lusitom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailnara.co.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mangotwoke.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mburaks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "me-soft.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metricmutt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modemchild.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mt-bank.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtauburnassociates.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n-linear.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naahgluck.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nashvillebasements.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neotiv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nhdsilentheroes.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okaidi.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okaidi.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olcbrookhaven.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olhcparish.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olmc-nutley.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olqoa.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "original-christstollen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "original-christstollen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palmaprop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panjiva.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pedimanie.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pekarstvivetvrzi.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philipdb.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pooltools.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poorclarepa.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psg-calw.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remiafon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rhumblineadvisers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ripcorddesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roeljoyas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rupeevest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sadhana.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sainthelena-centersquare.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintisidorecyo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintjosephschurch.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintpius.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintpolycarp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarkisianbuilders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sbscyber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sdgllc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "se-booster.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "showersnet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shtaketniki.kz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siberas.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siberkulupler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sjbwoodstock.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smithchung.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smvcm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sniderman.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soft41.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "somethingsketchy.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sos-elettricista.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sos-muratore.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sourcecode.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spediscifiori.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spikelands.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "splnk.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "springhillmaine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stbartholomewmanchester.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stbl.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stelfox.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stockstuck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stonehurstcap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ststanstrans.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stthomasbrigantine.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supedio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supracube.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sz-lessgym-kamenz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technospeakco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techpilipinas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "the-big-bang-theory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "the8rules.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebestofthesprings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theeffingyogablog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thehamiltoncoblog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theninenine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thetinylife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thevalueofarchitecture.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timi-matik.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toomy.pri.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trueduality.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truetraveller.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unternehmerrat-hagen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viewing.nyc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viveport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vodicak.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "w1n73r.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wba.or.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wegonnagetsued.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whitehats.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whysoslow.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "windforme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wplistings.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yoa.st", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zinnowitzer-ferienwohnung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a2a.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accpl.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "actheater.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adlignum.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aedollon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aidanpr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aidi-ahmi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aiho.stream", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alfred-figge.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allurebikerental.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alternativeinternet.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anciens.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animes-portal.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antennista.bari.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aplusdownload.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "archaeoadventures.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arroba.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aryalaroca.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asafaweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ashkan-rechtsanwalt-arbeitsrecht-paderborn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asurbernardo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auntmia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "australianattractions.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autobarn.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autotransportquoteservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badaparda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bankpolicies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bavartec.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-tickets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betaal.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beyerautomation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bhxch.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bidman.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bioleev.sklep.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biomed.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biospw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bistroservice.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinfees.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitski.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitso.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bjolanta.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brk.st", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buayacorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bueny.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buissonchardin.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bunnydiamond.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlinmack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlocksmithkey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carshippingcarriers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccc-ch.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdvl.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "certaintelligence.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "certifiedfieldassociate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheatengine.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chocolat.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chocolytech.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chopperdesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christian-folini.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christiancoleman.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "civilbikes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "claygregory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coldcardwallet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conorboyd.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coworking-luzern.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creer-une-boutique-en-ligne.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crownaffairs.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cruisemoab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crystal-zone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cstanley.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cube.builders", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cubecraftcdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielgray.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dataprivacysolution.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datorhjalptaby.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dcmediahosting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diba.org.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalposition.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discarica.bari.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dmaglobal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "docplexus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dolciterapie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doujinspot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dpecuador.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dronebl.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "echoit.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "echoit.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "echoit.services", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "echternach-immobilien.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "educationmalaysia.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edwinmattiacci.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ehcommerce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ehseller.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ehsellert.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elettricista-roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enrich.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eqibank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erasmo.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ericspeidel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esote.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethanjones.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabbro.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fadeev.legal", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fibromuebles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "figliasons.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finagosolo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "floify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flourishtogether.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fluggesellschaft.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forro.berlin", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fredriksslaktforskning.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "free-ss.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fsty.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galaxy.edu.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galeriarr.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garnuchbau.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gayauthors.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gedlingtherapy.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genevachauffeur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geocar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ghettonetflix.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ginza-viola.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gloria.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gordeijnsbouw.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greywolf.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grove-archiv.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gtxmail.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gururi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gutools.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gymbunny.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hashxp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hcscrusaders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hebamme-cranio.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heromuster.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hesslag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idrottsnaprapaten.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iesonline.co.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ihmphila.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ijsbaanwitten.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ikke-coach.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infranoto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infrapeer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "int64software.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interlijn.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isbaseballstillon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isolta.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-boss.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-stack.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-tekniker.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iwascoding.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jpmguitarshop.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justinribeiro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "k1024.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kamisato-ent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karoverwaltung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ke.fo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kitacoffee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klusweb-merenwijk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knihovnajablonne.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "komall.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "l17r.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lamed.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "larabergmann.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "learnlux.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lendahandmissionteams.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "les-inoxydables.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesbrillantsdaristide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lialion.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "living.video", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lizzwood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ljusdalsnaprapatklinik.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lob-assets-staging.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lob-assets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lunalove.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lvguitars.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lzcreation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "makos.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manatees.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mapchange.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marcusds.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maryhaze.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matt-royal.com.cy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediabogen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meistertask.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metron-online.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michelskovbo.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "microwesen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mindmeister.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minepack.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modav.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mohr-maschinenservice.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monsieurbureau.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "montgomeryfirm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musicfromgod.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musicstudio.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myonline.store", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n2diving.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n8solutions.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nadiafourcade-photographie.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nanotechnologysolutions.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natuerlichabnehmen.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ndum.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nemplex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neodigital.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nepezzano13.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netnea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nfam.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicochinese.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nutrafitsuplementos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ofertolino.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinemarketingmuscle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oppositionsecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opteamax.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ordoro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oruggt.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "packagist.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paintball-ljubljana.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pakingas.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phpstan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinterjann.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornagent.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "praetzlich-hamburg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "promiflash.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prospecto.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prospecto.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prospecto.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prospecto.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puestifiestas.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "punchlinetheatre.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "putin.red", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qe-lab.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "queencomplex.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quiq-cdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quiq.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rcgoncalves.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reflets.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "respiranto.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "restaurant-de-notenkraker.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rijschoolrichardschut.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rs-maschinenverleih.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rte.radio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sailwiz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sardacompost.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scottipc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "screenpublisher.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "se-live.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seamoo.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "searchfox.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "section77.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "segnidisegni.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sensoft-int.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "settimanadellascienza.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shabiwangyou.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiqi.lol", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiqi.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sinusitis-bronchitis.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skgzberichtenbox.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skolakrizik.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skorepova.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skpk.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimentorifiuti.livorno.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartweb.ge", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sn0int.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sos-fabbro.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "souked.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spenny.tf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sqsd.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ssl24.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stadtkapelle-oehringen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stang.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stephenreescarter.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stmatthewri.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stonechatjewellers.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stpaulcatholicchurcheastnorriton.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stroccounioncity.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "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": "system4travel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tascuro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taxo.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thedroneely.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theender.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefreemail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thirdgenphoto.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tidy.chat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tittelbach.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top4shop.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torfbahn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toycu.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trianglelawngames.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trueachievements.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twdreview.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ujvary.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "umbertheprussianblue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ungaeuropeer.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unstoppableunits.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vegekoszyk.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verboom.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "victoryalliance.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vsl.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "w8less.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wallsauce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wapazewrdamcdocmanui6001.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weddingdays.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weebl.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wenta.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whatdevotion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiener.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wombatnet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woodenson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--mgbuq0c.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yosida95.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zehkae.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeidlertechnik.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zochowskiplasticsurgery.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": "afterdwi.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amazingraymond.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "australianairbrushedtattoos.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "australiantemporarytattoos.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blakezone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bloody.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bmk-kramsach.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cherrybread.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chipset.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dannicholas.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discordservers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djlinux.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dontbeevil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "draadloze-noodstop.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dzar.nsupdate.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eikounoayumi.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essayjob.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etha.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gavin.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getbrowink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glont.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icecontrol.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inffin-portal.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internetmedia.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isiso.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeremybloomfield.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kap.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ktm-troxler.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lakkt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lriese.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matthewljiang.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mensarena.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mteleport.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natureclaim.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ntlabs.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osirium.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pavamtio.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perfectfocuseyecare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pholder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pokrowcecardo.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polomack.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "procrastinatingengineer.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychotechnique.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychotechnique.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychotechniquetest.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qpcna.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "readyrowan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "readyrowan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rowancounty911.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rowancounty911.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rowansheriff.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rowansheriff.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rowantransit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rowantransit.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rozar.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sacredheart-cliftonheights.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sainteugenechurch.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sainteugeneschurch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintfrancescabrini.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintmaryscathedral-trenton.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samplefashion.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sesrdcem.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shimmy1996.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "showfom.sb", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sicurezzalavoro24.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smokefreerowan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spotswoodvet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stjosephri.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stocp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stpatrickkennettsquare.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stpatrickri.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stpatricks-pelham.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "straphael-holyangels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ststanislaus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theideaskitchen.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toerschaatsenknsb.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torlock2.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torrentfunk2.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tramclub-basel.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvlanguedoc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "u-he.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "werbe-markt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--mntsamling-0cb.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourbittorrent2.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3dcollective.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4lock.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aacs-design.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adativos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "administrator.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adnolesh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alternativetomeds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altmann-systems.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ampleroads.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antiaz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apimon.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "art-pix.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "art-pix.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atc.cuneo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atheistfrontier.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aviationstrategies.aero", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bantaihost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bearlakelife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belezashopping.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belfor-probleme.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bensokol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betonmarkets.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bibica.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bizzdesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bomhard.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brioukraine.store", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brubankv1-staging.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brueser-gmbh.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsapack564.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cafled.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canadianatheists.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canadianatheists.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canopycleaningmelbourne.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinorewards.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cimbalino.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citfin.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citycreek.studio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coatsandcocktails.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "country-creativ.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielparker.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "define-atheism.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "define-atheist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "defineatheism.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "defineatheist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desertmedaesthetics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devswag.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dia.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diccionarqui.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.napoli.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnsaio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnskeep.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dox-box.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragon.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "driftingruby.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "droidandy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "echorecovery.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edshogg.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eglisedenantes.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emailmeform.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emprechtinger.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "entwickler.land", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exmart.ng", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faeservice.eu", "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": "ffrev.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finzy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firexfly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fisiobox.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flieger-funk-runde.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foodloader.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freewoodfactory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fullfilez.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gabiocs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gophoto.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gowancommunications.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grapevine.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gumeyamall.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guolaw.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heldtech.services", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helgaschultz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "himiku.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hnrk.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoge.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holzed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hsts.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ht.mk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hubchain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hubchain.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hubchain.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hundhausen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i-0v0.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immobiliengutachter-holland.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infobrain.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intellitonic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intr0.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iwatchcops.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iwatchcops.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jan-reiss.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jasonsplecoscichlids.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keepsight.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klemkow.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klemkow.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klinik-fuer-aesthetische-zahnheilkunde.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kos4all.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kosherjava.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kramer-edelstahl.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "l-atelier-c.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lacaey.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lancelhoff.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lancemanion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lehmitz-weinstuben.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lequest.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linkopia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livehomecams.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loansharkpro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locklock.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locklockbrasil.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locknlockbrasil.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lumbercartel.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lupa.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "margays.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matrieux.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "merchcity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mesec.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mixmister.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monobunt.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muunnin.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mypay.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nayr.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsgroups.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nexd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northernpowertrain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nphrm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "offgridauto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "om.yoga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openjur.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opensourcesurvey.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oxia.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oxiame.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parcoursup.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkingparisnord.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pellet.pordenone.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perfmatters.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pets4life.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "php.watch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phyley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinot.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pkeus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "preme.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "primananda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "propertysales-almeria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pulsnitzer-lebkuchen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pvamg.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pxgamer.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rabbitinternet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radarbanyumas.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "randolf.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rbmland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retroride.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "returnonerror.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richardson.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ritirocalcinacci.viterbo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roomguide.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salon-hinata.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saultdefencelaw.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scholieren.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sebjacobs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seloc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shimi.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shimi.guru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skulblaka.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimento.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimentorifiuti.prato.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartpti.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smtparish.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spieltexte.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "star.watch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoneedgeconcrete.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syakonavi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tallinnsec.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tea.in.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teganlaw.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teganlaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tekniksnack.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telegram.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thomas.computer", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thomien.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tilde.institute", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tophat.studio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toplist.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tracking.best", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trafficmanager.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ufocentre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unikrn.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upengo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uriports.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utahcanyons.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uzayliyiz.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valuuttamuunnin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vapex.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verschurendegroot.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitalia.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viva2000.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vrcprofile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wangriwu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wildcatdiesel.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woblex.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xdtag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--2sxs9ol7o.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--b3c4f.xn--o3cw4h", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--z1tq4ldt4b.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ypse.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhangwendao.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhouba.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zubr.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5stars.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abitidasposa.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abogadosescobarysanchez.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aborla.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adtelligent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advenacs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aeonct.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aipi.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpencams.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alternativehosting.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alternativehosting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aluminium-giesserei.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alxu.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "americasdirector.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amiciperlatesta.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anatoray.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antonok.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aod-tech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aori.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "archeologicatoscana.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "archit.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arunjoshua.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "athekiu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlascoffeeclub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atmalta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autoreinigung-noack.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "b767.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bananice.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baza-gai.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beavertales.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belos.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benbalter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bfcgermania88.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bfob.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bgmn.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitrefill.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boreo.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brightside.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bukiskola.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "butzies.ddnss.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bypetula.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canberraoutletcentre.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casadopulpo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checkblau.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chromopho.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cihar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cinkciarz.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citas-adultas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cldinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudsecuritycongress.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloze.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collab.ddnss.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comedyhuis.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "commissaris-vraagbaak.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "computerwerk.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "concreterepairconcreteraising.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conotoxia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cronenberg.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csacongress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csacongress.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csasummit.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dafyddcrosby.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidkeane.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "decor-live.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "depedtambayan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devils-point.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digital-sculpture.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalblood.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discus-communications.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnalounge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnapizza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dogodki.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doxal.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "droneland.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duckcorp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easypayments.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elodrias.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emilstahl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "engl-server.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enotefile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "envide.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erlebnisarchaeologie-bayern.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "facarospauls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fbrief.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "findingtheuniverse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flamingogroup.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frau-pusteblu.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freeministryresources.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gadget-tips.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaw.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gearbot.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gehrke.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "givingtools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "go2archive.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackerone.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackingondemand.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hatter.ink", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haustechnik-schulte-sanitaer-heizung-klima.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heitepriem.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hendrickx.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herbertjanvandinther.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hitchpin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoathienthao.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holidayacademy.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homelabquotes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "honoka-seitai.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huangqifu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imcsi.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "independenttravelcats.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipso.paris", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isitef.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "its420somewhere.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itseeze.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iwascoding.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "j-robertson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "j5lx.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "j5lx.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jackyliao.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jacobs-implantate.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jaybrokers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jdm.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jennethaarfotografie.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joesniderman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "julm.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jwz.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kieran.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kizomba.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kjnotes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kleine-viecherei.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koeeusa.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kroell.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ksopp.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kt-events.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laserhealthsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legnami24.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesummeira.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linaklein.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linuxbg.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lipighor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "littleduck.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithmesquitetexas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithsbuda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lostsandal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maduradas.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maduradas.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magicjudges.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martian.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "math-coaching.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mibh.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaelloveys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "micsell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milkypond.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minican.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mnienamel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motor-forum.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrmad.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mudit.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muilties.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myclgnotes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myloneworkers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myopd.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakayama.industries", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakayamaresearch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nameproscdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nerdpol.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netzona.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicolaiteglskov.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nob.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noleggiolimousine.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nourishandnestle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nrsmart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okqubit.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okviz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olivier-rochet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osolutionscorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outincanberra.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ownagepranks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pagerduty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palavalbasket.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palermopride.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pencil2d.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "permaseal.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pickupenc.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixshop.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ponio.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porncompanions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "productionscime.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prove.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "punchlinetheatre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purityclothing.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qrpatrol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raid-runners.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "random.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "razrsec.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reach-on.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "readabilitychecker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regensburg-repariert.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "respons.je", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "respons.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "respons.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "respons.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "respons.ws", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "responscode.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "responscode.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "responscode.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "responscode.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "responsecode.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "responsecode.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "responsecode.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "romtex.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rtsak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samorazvitie.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schmatloch.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schonstedt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sigma957.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silvershadow.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sluhockey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sluo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soblaznenie.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soblaznenie2.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spotypal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sqlbi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stiebel.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stiebel.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "summerbo.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sv-schody.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swifteh.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "systemisbusy.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "szasz.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talichi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tallship.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taowa.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tatler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tcl.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teambim.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testingbot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theboats.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theboats.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thelounge.chat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thenetw.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thurn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tib1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tm-t.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tradingview.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "treestarmarketing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trico-pigmentazione.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitamina.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vive.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voxpopuli.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wammu.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webionite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webperformance.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wegrzynek.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "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": "yangjingwen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yosakoinight.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourbodyknows.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourbodyknows.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yunloc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yycbike.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abg.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aianipid.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anciennes-automobiles.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andromeda.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arweth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlas-multimedia.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autoi.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badkamermarkt.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beltar.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benjijaldoner.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bezposrednio.net.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "britishsfaward.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carcloud.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carterdan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cookingperfected.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cupoane-reducere.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dax.guide", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daxpatterns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "driveexport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "econsorzio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "escalesensorielle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "farleymetals.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genemon.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geometra24.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gow220.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hardhat.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hgpowerglue.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ictoniolopisa.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isaropiping.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinderarzt-berlin-zia.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kongress-hostessen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lado.ltd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladotech.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladotech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livogeva.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ljw.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lockaby.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mankomarketing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mountainbatchers.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "museclef.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ncarmine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nyoliveoil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p0l.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paullockaby.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "payjunctionlabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rauschenbach.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ristrutturazioniappartamentinapoli.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saluels.servemp3.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saputra.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarbash.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schluesseldienst-hannover24.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secure-computing.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sheerchain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tende.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thisistechtoday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "u-page.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "umzuege-hannover.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "umzugsunternehmenberlin.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unpluggedjuice.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utrace.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webia.in.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zundapp.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7plus.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allmousepads.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angiejones.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apiplus.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avmup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belanja.express", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bettersecurity.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blubop.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cfigura.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charlie4change.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cncs.gov.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "condominiosi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coya.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crossway.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielgray.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denkmalagentur.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "design-production.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deskaservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eola.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expii.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fkosquad.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fozzie.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gakki.photos", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamcore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gathu.co.ke", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glixee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graph.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "groundthumpinmotors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guadagnare.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harveyplum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hellovillam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hydronicheatingaustralia.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inspiredlife.fun", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jacksanalytics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jamesedition.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justinfreid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katyusha.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kooxdiving.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kscarlett.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lafermegourmande.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lavril.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "learntotradethemarket.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luclu7.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mayorcahill.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mb-server.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metallomania.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newbrunswicktoday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oskrba.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "payjunction.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phibureza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "photosafari.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pimylifeup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pt.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puntonium.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qingly.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rbx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reaksi.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "red-button.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redecsirt.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "refer.codes", "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": "ruha.co.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "runfitcoaching.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarahwellington.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schoenstatt.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sektor41.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seowordpress.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shapediver.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplegoodhealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sitz.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slowcookingperfected.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sneakycode.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sql.bi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steffenmeister.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stiebelservice.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telegra.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebirchwoods.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tio.run", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trentonmakesnews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tryitonline.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tts-assessments.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virtus-group.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-fox23.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "windictus.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xssi.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zumub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0x41.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1android.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allrad-buck.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amyria.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appspace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asmeets.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auto1.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autolawetawroclaw.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bagwrap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barneveldcentrum.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basics.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bazinga-events.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beherit.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackmagicshaman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blogit.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buck-hydro.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citywidealarms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codeandsupply.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coincircle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colcomm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creativ-impuls-dekorateurin-muenchen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "d4fx.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danads.com", "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": "depositart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dictionarypro.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dpsg-hohenlinden.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esteladigital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estudiaryaprenderingles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "excess-baggage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feross.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fili.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firefense.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fletcherdigital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "groundmc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gurunpa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icdp.org.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilmainensanakirja.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "j0e.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jix.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klop.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "komp247.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "left-baggage.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lippu1.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malibumodas.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matematyka.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matteobrenci.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michilaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mindmax.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mmgal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrdatenschutz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mte.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nailsart.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "napkins-wholesale.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "napkins-wholesale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "napkins-wholesale.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "napkins-wholesale.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "napkins-wholesale.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nauris.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newfoundland-labradorflora.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obec-krakovany.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ordbokpro.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "postandfly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ptasiepodroze.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riddler.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "searchpartners.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "securevideo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seemomclick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "selber-coden.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendingbee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servetten-groothandel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servietten-grosshandel.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servietten-grosshandel.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servietten-grosshandel.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servietten-grosshandel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serviettes-et-plus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servilletas-de-papel.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servilletas-de-papel.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serwetki-papierowe.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shavit.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simulping.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skorpil.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimentoamianto.campania.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sonaraamat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studio-n.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techlr.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telsu.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thea-team.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topyachts.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tovaglioli-di-carta.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transferbags.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "troxal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tusmedicamentos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ukrn.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unkn0wncat.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vista-research-group.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "witch-spells.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldsy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--12c3bpr6bsv7c.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--3st814ec8r.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--3stv82k.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--bersetzung-8db.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--durhre-yxa.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yachtlettering.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "42l.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acinq.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adventurecreators.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airport-charlotte.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrewtasso.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apviz.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "archivium.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asylbarn.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aulica-conseil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bereginy.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bettercareclinic.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bhserralheria.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boutoncoupdepoing.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "budolangnau.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberdean.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dermopigmentista.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "draadloos-besturen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duesterhus.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edv-ringhofer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etnoria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funkfernbedienung-industrie.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funknotaus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galvingao.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gitecolombedesbois.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "githubapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hansgoes.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heretic-guild.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoxo.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iinix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "industrial-remote-control.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intellihr.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jogjacar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "khg-orchester.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kindesfreude.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kt3i.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laceysfarm.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loca-voiture.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minapin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirrordream.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moego.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mpu-ibbi.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mussalains.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parnizaziteksasko.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pc28yc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phils1990.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "praxistipp24.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quaxio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiocommande-industrielle.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ranasinha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reactivemarkets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remeb.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saksonski-szlak-parowozow.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sandrabernardo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scalpel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schoenstatt-fathers.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiqi.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiqi1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steam-route-saxony.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoneproperty.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stopoverconnections.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stopthinkconnect.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sweetbabyjesus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "termee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theshots.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thetassos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twmartin.codes", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vairuok.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "view-page-source.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vincent-haupert.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vnctdj.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webgeneric.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webstaff.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webtoro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weknowhowtodoit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whatsapp.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wyatttauber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xgadget.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourpersonalfrance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ypfr.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zstgmnachod.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intercom.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accreditamento.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alabordage.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alfredapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amleather.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aoe9.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arcobalabs.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bagnichimici.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bgbaby.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bomboniere.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlocksmithcarrollton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checkmyhttps.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "civey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coker.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "controllertech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberdiscoverycommunity.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamboxpro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drewzar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "energygenie.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enxadahost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everlastingoak.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "factorit.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashiontrendsetter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foodlist.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freebsdbrasil.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaddini.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harrisconsulting.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iamlife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibericarbenet.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imaginationpathway.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impossible.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impossiblehq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inscribe.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internetnz.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inyourowntime.zone", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "istitutoricci.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kevertje.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "khorne.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kidsdaysout.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "la-laitonnerie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawlessenglish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawlessfrench.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawlessspanish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luv.asn.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mahler.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mascotarios.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mystia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olgcc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openresearch.amsterdam", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paleo.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privateservice.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ptrt.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "said.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samalderson.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "septs.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shoppingandreviews.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "signaconsultoria.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skux.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slobrowink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spikar.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "srpx.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startablog.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startmail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stavnager.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studiodentisticomasi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thenine.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timetastic.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tupass.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tyroremotes.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ultimatepaleoguide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vernis-marins.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visualgnome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volubilisplus.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yachting-home.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yiff.forsale", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourantiquarian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adc64.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "administratiekantoorblom.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adrianobarbosa.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "albilaga.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allseasonswaterproofing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artozoul.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asilo.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "augenlaser-chemnitz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barsgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "campsoulfestival.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citizensgbr.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cockedey.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daniel-milnes.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dieradvies.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drake.partners", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esd.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "f1nal-lap.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "factory-f.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fleet-group.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fleet-search.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gladysstrickland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gregory-thibault.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guidesacademe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helsenorge.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interparcel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iszy.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-inside.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kapsalonlinds.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kita-sun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klempin.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "korbel-loziska.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kunsthandel-augustus-rex.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lcx.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liangxingai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "londonpropertymatch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loremipsum.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maiti.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuscripteditorial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "margaux-perrin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matipl.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikeklidjian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monetki.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mugen.technology", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nateandxtina.wedding", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noleggioimbarcazioni.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ohentpay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onemeter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "op3racional.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opcionpublicitaria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osuszanie-krakow.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osuszanie-radom.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osuszanie-warszawa.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ovisy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcunderground.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pensiunea-paco.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phoenixnest.ltd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "photosafaribg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "przerabianiezdjec.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "publisherservices.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "q1000.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rawpearls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rgz.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rickmakes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rochesterglobal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s-yuz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sannefoltz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarny.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sessile-oak.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sheepproductions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shellta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simulise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "streathamfoodfestival.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taxi-legroux.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techcenturion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tim-demisch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trosell.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "um-sachsen-pictures.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usamdt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wangqr.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wardslager.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woodwormtreatment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workathomenoscams.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhimingwang.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "518.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "69games.xxx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "984.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artistedeparis.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ashtonc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beeswarmrehoming.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bernar.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bierwebshop.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "borysenko.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cadmanlaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cfc-swc.gc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charset.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coinsmat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coldlasers.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cramersoft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecomia.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eightysoft.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "facesdr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fboerman.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fdpbrig.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feat.agency", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "financialfreedomaus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fitnessunder50.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fleetyards.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hell.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hinaryazan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibericarreicomsa.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idbs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infraredradiant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insegne.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "instagib.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "json.download", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karrot.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keevault.pm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kfz-service-wachtmann.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kjmedia.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kolibrisolutions.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lartduportrait.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laurencball.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libre-innovation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifeslonglist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liturgical.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madpsy.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maikoloc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mele.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "momove.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mytime.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noradevot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nuipogoda.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opinionitech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osez-l-odyssee.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pfssales.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pictoriastudios.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poetry.ge", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pogotowiekomputeroweolsztyn.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pommetelecom.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porcore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purplscientific.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quantifiedcommerce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ravencoin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ravencoin.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdcdesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richlj.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schoenstatt-fathers.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scottspainting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "searchmore.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexedrescue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sketch.jpn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skorovsud.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sliptrickrecords.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solomonsklash.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soulcasa.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starryvoid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stefanfriedli.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stucki-bagger.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swc-cfc.gc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teetoptens.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "textpattern.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsueri.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uberi.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "universe.horse", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uranius.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vbsoft.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verasani.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivemedialab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webhotelsoversigt.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wellspringsga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--underux-0za.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amanet.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anaisfae.art", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anyad.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autismewoerden.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bim.physio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsgcredit.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "butts-are.cool", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cadmanlaw.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carbon.coop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carolineeball.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cceputnam360.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chriscutts.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creamsoft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crys.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diagnoseo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drbresnick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "embodiaacademy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "embodiaapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "euro-construction.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabianegli.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fastserv.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fikriwildannugraha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furry.cool", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giardiniere.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grabadolasermonterrey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gunz.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hatcher.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hybrydowe-samochody.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hypnovir.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icanhazpass.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ihorizon.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interssl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "istitutovivaldi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "izttech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jacksball.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johnball.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johndball.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaidoblogi.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kakacon.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kep-sbt.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kepsbt.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krsaustralia.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laurineprice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "link9.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lvcshu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mdtorelli.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miramar.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monarcjuexpo.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mosboutique.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muzykanawesele.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "net-combo-ja.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nichi.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noclegiwchecinach.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "norml.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notariusz-bialystok.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oahpmdata.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peterkrivanek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pierreyvesdick.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plaque-immatriculation-auto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ql.tc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qqiao.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rizonrice.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "runningrabb.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ryanparman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seewang.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seidel-immobilienberatung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serverhunter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sherpa.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siselectrom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trindonball.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsriggingequipment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twwd.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ugy.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vesaviljanen.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vifsoft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wifimb.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wyczaruj.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--anyd-7na.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "101010.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4gnews.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aarailfan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adswoo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aktion-vielfalt.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrewbennett.ltd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autoelettricaperbambini.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barneydavey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biosalts.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bourgeoisdoorco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brownforces.desi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brownforces.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christianoliff.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": "cvazquez.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daniele.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnsrate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ert.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "f8s.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "falegname.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ga-part.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galaxus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gfourmis.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glassemployees.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guysauto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiczp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "highkick.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "houseandgarden.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kohlchan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kryptux.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leapworks.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lrumeq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modcover.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moddiy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modscrew.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mydnshost.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nephology.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newyorkcoffeejobs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "np39.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olmcjc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olschurch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "papermuseum.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passengertravelportal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pharmacy.org.pk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "photoutils.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rocketmill.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seberova.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiqishidai.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soungui.cm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soungui.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soungui.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studenterguiden.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suhaildawood.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": "tutorialseo.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "umasstransit.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vikramkulkarni.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whitevpn.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wintercorn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woopie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaizaia.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zdenekvecera.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aattrans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adaptiveicons.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airtec-france.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "americanwater.lk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anjocerdena.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antifilter.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arnove.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atmind.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autorijschooljohanbos.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "available.direct", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blobemoji.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blobs.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bvbmedia.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlosjeurissen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cwinfo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "detao.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "determapp.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dhelixnet.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dmoj.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edapt.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurocertificazione.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eventosbgp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "excel-mechanical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashion.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feldbogenclub-hamburg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "founderio.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamejobs.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geekbundle.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "germanmasterpainters.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "googleshortcuts.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gummientchen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infinipharm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jakubsindelar.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeffpenchoff.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeurissen.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jolo.software", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juozasveza.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaizenjuku.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katsunet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lissauer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logical-invest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakluky.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "namu.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netz0.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oswaldlabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "otprema.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pepegym.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "periodex.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playsprout.industries", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pollev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "postsubmeta.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pseek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pushpanel.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rannamoisaaiasalong.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s-gong.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "savanna.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serrature.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shuomingshu88.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sjorsvanweert.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sudya-dredd.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talendipank.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "team-io.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ticketcity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timelimit.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "totalsport-bg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tyroremotes.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ukutabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vorbrodt.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wearepapermill.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wir-machen-druck.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xilo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zerosector.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zselicivt.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "233.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3b.pm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abuse.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aqarategypt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ashleykaryl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autonoleggio.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "awsumchan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bellezzasenzalimiti.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brisignshop.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bwgjms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bzh.tf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caseificio.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheatsupreme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "claitec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colourmanagementpro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crocuscoaching.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dansaunders.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "designhuddle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drhildebrand.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dzworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eclectiv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eringmaguire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estintori.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "favorai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giardiniblog.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "give.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greatwebdesign.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greensad36.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hannywbarek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthyspirituality.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iparkki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itconsulting-wolfinger.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "j0hndball.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johndball.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johndball.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johndball.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kingtreeexperts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lalucepulsata.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lhr.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liubliu.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locoserver.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lolaseuropeancafe.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": "metadata.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mierloiu.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "militaryonesource.mil", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nimbo.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nordfinck.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ourocg.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "par-allel.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pincong.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pivovarcunak.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planitz.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playnow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "postimages.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ramsdensplc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reeftrip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revistabifrontal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shadowvolt.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siamrehab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "signpath.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simpleit.services", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sipa.nc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sipa.pf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyscanner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyscanner.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyscanner.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyscanner.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyscanner.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "styletron.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "summiteyekc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teboorthodontics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiergear.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uraniborg.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valemountchamber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vigilanciaysalud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vips.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "what.tf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wit-creations.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wordops.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--l8js6h476m.xn--q9jyb4c", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xor.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yornik.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yukimochi.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zacharyschneider.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zahrowski.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zy.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "204504byse.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "208garfield.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "233v2.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2502.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abdulrahman.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aculocity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alarmat.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alov.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alphadefense.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alteria.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amazetimberfurniture.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amianto.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antincendio.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apprendre-le-russe-avec-ania.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apunkt.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atahualpa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "attuned.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aura7chakr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autocartruck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "az.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aznaetelivy.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betor.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bevedo.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beyerm.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bioedilizia.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackbam.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluecanvas.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boltmobile.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bostonaoii.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boxcritters.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cakeoffencesact.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ce-webdesign.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chirurgoplastico.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cinenote.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "civics.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clouddog.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corsicalaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "criptocert.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cubiest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cuchichi.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cudoo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cuio.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cybermotives.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dcdestetica.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "death.social", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dental-cloud.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "depositomobili.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "destyntek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diabetessucks.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dirtinmyshoes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discordbee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dolph.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamcraft.su", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamz-staging.zone", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duvalo.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "economie2.alsace", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erpelstolz.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "error.fail", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fatturegeko.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flealab.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "floravan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "formsmarts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fritz-koehne-schule.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funbuynet.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gameofbooks.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genossenwiese.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goonfleet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greta-birkner.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grinnellplanes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gvwgroup.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiffo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hisregistries.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hisregistries.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiteshchandwani.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hudobniny.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ideageek.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imisa.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "info-o-zbozi.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "informace-zbozi.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infosecchicago.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infrabind.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isaaccomputerscience.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isovideo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "israel-in-color.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivanovolive.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jiji.co.tz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jiji.com.gh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jiji.ug", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jkg.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jsme.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jubilerkarat.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juliendoco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katieriker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kevchia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kimitang.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kn40la.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kn4ivj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kn4ola.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koenberkhout.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laportedufutur.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lauralinde.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ldm2468.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linge-ma.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lohmeyer.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lou.ist", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luisa-birkner.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lynnellneri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m-net.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macedonian-hotels.com.mk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macedonian-hotels.mk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marc-hoffrichter.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattersource.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mchost.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mio-ip.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motor1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muserver.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mytntware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naka.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natevolker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ndvr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nerv.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netid.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niers.land", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "norrlandsbilverkstad.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noticiasdetv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "numo.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oceanbreezehomes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oe0fcdncxjpdd05b.myfritz.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "offensity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okwu.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "on2it.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onsinscrit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palomardisplays.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peoplescu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pitshift.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixelcomunicacion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "potionlabs.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "primaflorafloristaccrington.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prizehometickets.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prizelink.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pudro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pulizia.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qarto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quenecesitopara.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quicksupplies.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "r102.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raketaro.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reall.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remmik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riddimsworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rident-estetic.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rolandvanipenburg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roman.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safearth.training", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salmanravoof.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarasotadentistry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sardinianvillas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saropa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sbcargo.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 }, { "name": "semplicementelight.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seomaton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seomaton.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serveursminecraft.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiji.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shunliandongli.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siggi.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sik-it.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvoy.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvoy.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvoy.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvoy.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvoy.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvoy.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvoy.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvoy.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvoy.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvoy.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvoy.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvoy.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvoy.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvoy.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvoy.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sito-online.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skiley.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimentorifiuti.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimentorifiuti.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snowparties.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solihullpcrepairs.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sospeed.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spurghi.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stehlik.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strangelandrecording.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strangelandrecordingstudios.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strangelandsoundstage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strangelanerecords.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strangemusicbox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strangemusichollywood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strangevip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strangeworksinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strangeworldmerch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strangeworldmerchandising.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strotmann.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studipad.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "summit-level.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "survivingmesothelioma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swy.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tableandhearth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tcpride.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamliquid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techcu.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tecknobox.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thejoneshub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "themathscentre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theshaker.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thesoundstageatstrangeland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tntware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobevictorious.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobiaswiese.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tosatopsicologabologna.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trattamentocotto.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travel2macedonia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travel2macedonia.com.mk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travel2macedonia.mk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "triefenbach.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "triefenbach.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvquot.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ubiurbe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "umlcode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uniqsys.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unlocks.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vapeking.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "varizh.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vave.men", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vegan-pratique.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visiondetails.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vonimus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webini.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whorepresentsme.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wops.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workplace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wound-doc.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wysz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zbib.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zenidees.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhaostephen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zravyobrazky.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "123birthdaygreetings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "achtzehn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adiprospero.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akuston.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "am22i6xaf1m2a5m9k.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anns.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baron14.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bibliotecadeseguranca.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bwgjms.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bwgjms.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlitoxxpro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chliine.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "counterenlol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ctoin.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "directhomeremodelinginc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djbobbytables.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragcave.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ej.uz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ericksonvasquez.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "franziskaherbert.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frappant.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fukushima-fun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geekstreet.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gellis12.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harms.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hauller.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herrfirm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hmnd.io", "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 }, { "name": "input.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jmsjms.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jmsjms.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juristique.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koenrh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koenrh.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leftbrainsolutions.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liztattoo.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lunite.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mentecuriosa.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mopedpress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mubase.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mystaffonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nazimogluinsaat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p-p.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pechonova.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "predkosci.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rbs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rcmstream.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "romainlapoux.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "romainlapoux.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sandstroh.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seanstaffiery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seutens.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silesianus.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sloneczni.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starlux.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunsquare.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supervets.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tambo.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tissus-paris.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "undp.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upstart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80ahclcaoccacrhfebi0dcn5c1jh.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xpertcube.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "znaj.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1ki174.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "233hub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abstudio.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agentur-pottkinder.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airslate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alplogopedia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amplead.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "art-et-tonneaux.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artigianociao.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auto-i-dat.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autouncle.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autouncle.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autouncle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autouncle.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autouncle.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autouncle.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autouncle.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autouncle.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autouncle.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autouncle.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autouncle.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autouncle.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azh-kunden.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baterioverolety.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bavarovillage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belgicaservices.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bikhof.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "campingshop.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canavillage.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "candinya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celebrasianconference.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chadpugsley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrisgieger.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudeezy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubegolfpt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colyakoomusic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consciente.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consciente.ngo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consciente.ong", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consegne.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "construct.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datax-cloud.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dein-baumdienst.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digicode.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dmfj.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecuadorbienesraices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electerious.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emzi0767.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "entrezdansladanse.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etajerka.spb.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "facchinaggio.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galaltosalento.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gentcdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globologic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grapheneos.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guytarrant.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hag27.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hpvtimmerwerken.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hyper.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iegat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insideevs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isa357.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isa5417.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joodari.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiczela.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kjfaudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kreativbande.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laudableapps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lev103.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovemybubbles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mamoris-net.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medguide-bg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meta4.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minmaxgame.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtechprecisioninc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myconf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nstnet.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ok3on.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openrtm.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parrocchiamontevecchia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privacybydesign.foundation", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "professionalbeautyshop.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "provinciaotlavoro.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qmee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raewardfresh.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rideapart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sagitta.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serenavillage.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyportcloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smelly.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sointelcom.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "support-ticino.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swid.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swisservers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tk-its.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tonight.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trickle.works", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ujiyasu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uplead.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uspaacc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utavatu.mk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "venstar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivaio.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vwh-kunden.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1sand0s.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accessibletravelclub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adnexa.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ajhstamps.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "as8423.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "attendanceondemand.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balaskas.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blideobames.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brandonlui.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "briansemrau.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "co-founder-stuttgart.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "competencyassessment.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discarica.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domein-direct.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donateabox.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easyenrollment.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecsupplyinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elenta.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "embracecontext.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enrique.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "experimentator.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "falegnameria.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "femmesaupluriel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fenhl.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gefolge.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gratis.market", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haka.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hennes-haan.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hennes-shop.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hersdorf-eifel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hielscher.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hyper.lol", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iansyst.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibavaro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impresapulizie.firenze.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inputmodes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jimeaton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jvdham.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kelsall39.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kendermore.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kipwells32.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lansoftware.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "letempsdujasmin.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luminary.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "managedservicesraleighnc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maorx.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mixedrecipe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mold.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motoactionimola.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrjo.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musta.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nadine-birkner.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okazoo.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olmik.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oro.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prsnlafk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pulizievap.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quedos.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radioradicchio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recipesmadeeasy.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riproduzionichiavi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roams.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robotsbigdata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roguerocket.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saitapovan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samkelleher.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sartoria.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schreinerei-schweikl.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serfas.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sethriedel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shadedesign.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solarloon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spilnu.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steiner.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stemmayhem.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terme.viterbo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theundefeated.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truelovesakuya.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "up2staff.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "v0ctor.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verybin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "walletconnector.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webcheck.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webmediums.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiocha.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yukict.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yy-s.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abmackenzie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "academica.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acutewealthadvisors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aguarani.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avinilo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bancosdominicanos.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blueprintrealtytn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csd-slovenije.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cureatr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyphar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "decorativeconcretewa.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "die-seiler.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dominik.st", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duplicazionechiavi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emiliops.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eneko.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "englishtofrench.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashioneditor.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fitchconnect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackendoz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "htb.click", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ift.cx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impresapulizia.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impresapuliziebergamo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "incarceratedwombats.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isamay.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isterfaslur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itsburning.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kagicomb.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katalogkapsli.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kpopsource.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lapageamelkor.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legalatlanta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lilyvet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "limoshka.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manicuradegel.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mckendry.consulting", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mhtdesign.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minimalistbaker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mnciitbhu.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modusawperandi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mohitchahal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moretti.camp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muhcow.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mydais.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nettgiro.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nickmchardy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osimmo.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pacificpuke.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panino.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paninohome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ploi.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "profumeria.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puntacananetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quicksell.store", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rassro.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rexxworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ristrutturazioneappartamenti.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ryois.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sector.zone", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serenavilage.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sismit.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartlink.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartproductguide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sommeilsante.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strm.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sumitchahal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thegroovecartel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomjepp.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traslocatore.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsachs.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tshirtscapetown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twoef.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usa-reisetipps.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weavers.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "writtenworld.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xiumu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xkwy2018.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "360hosting.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aaron-russell.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutpublishers.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aerlux.md", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airship.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ambulanza.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amruta.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amstelveentje.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autofficina.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azotobacter.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biancapulizie.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caph.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carls-fallout-4-guide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cendata.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chlo-products.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chlo-products.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christianrasch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clica.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corevetconnect.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coronersconnect.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crimsonconnect.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cs.money", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cubeperformancecentre.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delphia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dicelab-rhul.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discarica.firenze.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dspace.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethicalconsumer.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fantgames.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fizjoterapia.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "georgewatson.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goehler-baumpflege.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heino-peters.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoofdredacteuren.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hrbanen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ictbaneninnederland.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igorandandre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indigoblack.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "investigatore.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ips-consult.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "j-ph.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobalicious.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobsindemedia.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johnkraal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jttech.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kids-world.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kli.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legalplace.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legalsearch.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marktguru.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marktguru.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mdrsp.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nophelet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nousyukum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omny.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orologeria.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playelephant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pocze.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pollendine.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "programarya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "projet-saara.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prvnirodinna.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "residence-donatello.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richardlangham.plumbing", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "russelljohn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sampaguide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serrande.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "setesat.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shibbydex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siikaflix.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sound.as", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sqdll.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starvizyon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taunusstein.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "termoidraulica.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tldtattoo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomaszdwornicki.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trousers.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ux-designers.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uxdesignerjobs.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veterinario.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wervingenselectieamsterdam.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikibuy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--kl-oja.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youneedfame.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0--1.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a1post.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alaskabuylocal.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "almostobjective.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpha-ag.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arcovix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autopark-ost-fichtner.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bebe2luxe.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biblesignposts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bishoptx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calverleyparish.church", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clocklab.design", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cruicky.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daniela-schwarz-individuelle-lebensberatung-coaching.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datacaptive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dcyph.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deeplink-medical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dimo-crm.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dimo-dematerialisation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dimo-tresorerie.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dimosoftware.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dratini0.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dunyahalleri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eebt.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elle-weine.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eqassociates.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "euc.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "familyrecipe.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frign.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giardinaggio.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gmao.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goodtrip.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homeadore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hrmg.agency", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilacrehberi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indigojewelers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infraedifice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "journeying.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knoxvilleimplants.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koffie-enzo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lasabina.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mexico.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "momsays.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muntproever.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "octovpn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partyausstatter24.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pawgearlab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pensionecani.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perfect-privacy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phpmynewsletter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poundgatepark.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privateger.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "refreshcartridges.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rootie.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saeder-krupp.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samotorsporttyres.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serele.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sicurezza24.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunshine-cleaners.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teichroeb.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thestylebouquet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobis.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "triozon.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "walkman.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "walkman.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webdesign-note.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xingyu1993.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zczc.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "13-th.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2264707.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abogadoperu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agworkers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "applegun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appraf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artyengine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brettpostin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celiac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cododigital.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "contabilidadebrooklin.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crebita.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csy.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestatore.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doctorperu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domjh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donnabrothers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eaststudios.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eckstein.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "escobarservice7000.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estadoreclamos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eve-online-com.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "facchinaggio.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filehippo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fisioterapista.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fresh4.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fundamentt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galganoboutique.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glexia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gordyf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "henlich.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hv-huset.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "japanese-cuisine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobit.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juszczak.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koreanrandom.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithsinsanantoniotx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercedes-benz-kiev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moosmaus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ommcitalflex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orchardnh.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philiperiksson.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phonedoc.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playstationtrophies.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "princezna.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qualbe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "refjob.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stlouisnativeflute.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theoriginalmarkz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tintoria.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tohofc.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twlitek.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "universidadperu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vonkuenheim.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "we5688.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "we9988.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webcaptive.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xboxachievements.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--90adahrqfmec.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--e1aaavheew.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--e1aaavheewr.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--e1adlfhcdo7h.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--j1aoca.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yuzurisa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "77177.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7sdre.am", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aghayeva-edler.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alteraro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alteraro.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antincendio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asart.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayvalikgezgini.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barca-movie.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestsingingbowls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinorobots.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cbr-rcb.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "certificato-prevenzione-incendi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chaboisseau.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrystus.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clare3dx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "correctlydesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cosmohit.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coveredinspiders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberpathogen.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dbplanview.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "definitions360.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "degradarium.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dockstarter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dor-tak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dor-tak.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamstudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "egold-keeper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ekimma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ellatotal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eon.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estetici.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esyoil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fff-du.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flowinity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frosty.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gpcp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gulcinulutuna.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herrschaftlich-durch-dresden.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hudognik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibidyoupeace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immortec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inmag.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ishigurodo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janome.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jellysquid.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jenniferlucia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klumba.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kvestiks.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lodus.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ltheinrich.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mansarda-life.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martian.community", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattadams.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediation-mv.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "model.earth", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "murmashi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naslovi.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nednex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "networkmas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nooben.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "numeritelefonici.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onsudoku.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onzerelaties.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openai.community", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ordermygear.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "popitsnack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "projectobs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ru-e-business.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "russianrandom.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "savebees.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "singer.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimento.salerno.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syogainenkin119.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "texier.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomthorogood.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tourdatenarchiv.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upmon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wieloswiat.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikiversus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wot-zadrot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wotzadrot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zombie-40th.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1ticks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "233hub.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "233hub.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aeksistem.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aetherlink.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alchemy.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anora.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autospurgo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackstrapsecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blaumedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "botnam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brianpagan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caetanoflotas.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chataberan.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clinicaltrialpodcast.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creermonsite-wp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crossroads-gmbh.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cybersecurity.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danbergen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnsmate.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dziaduch.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eisblau.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enodais.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eve-ua.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everglow.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fernland.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fundkyapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guzdek.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hannes.paris", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hellosalmon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "horsky.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intellimatica.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internetstiftelsen.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iperconnessi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jean-luc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joustsec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justmysocks.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jwr.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "k-sails.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kawaiicon.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konfekcjonowanie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "labworks.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linux.pizza", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m23cal.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mamasorganizedchaos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miyatakaikei.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mohot.fit", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monitorbox.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mr-bills.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orbitcleaning.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "overframe.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pandit.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pangoly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peniarth.cymru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pointclickcare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "posbich.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "potature.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "russia.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sampatjewelers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schermkapot.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "searchforbeer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "selfiehome.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sewing-world.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shelvacu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "srb.help", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuartbell.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tolmaidis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topreit.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tytod.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "venditorepoa.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "venetkaarsenovart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vigorspa.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wearetuzag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wwwindows.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wzxaini9.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0-24.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0-24.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asyikbelanja.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": "boresmail.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "butz.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cannabislegality.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comparemymobile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datatruckers.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dolcesalatoweb.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dphipartner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drivetonortheast.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dtbw.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dtbw.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dtbw.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dtmbx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dtmbx.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dtmbx.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dtmbx.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edwardsgrounds.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etaxigraz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eternalparking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eternalparking.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eternalparking.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eternalparking.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "f00f.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fieggen.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fieggen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fsavc.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gb-repair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gipelpsb.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gourgouli.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackintosh.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howtutu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howtutu.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howtutu.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howtutu.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howtutu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hwsw.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ig.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iloveherb.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infobot.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infobot.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itisyourmoney.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kadro.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kanootours.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kcire.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "little-brother.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lucasdamasceno.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lyax.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "machine.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masterton.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meow.plus", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meralda.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meralda.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meralda.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meraldamulder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meraldamulder.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meraldamulder.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meraldamulder.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mladamoda.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "murmashi.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netdiode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netdiode.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netdiode.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netdiode.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "networkdiode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "networkdiode.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "networkdiode.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "networkdiode.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsdiff.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsdiff.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsdiffs.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ngmx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ngmx.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ngmx.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nickserve.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nickserve.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nickserve.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nickserve.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niyen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niyen.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niyen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niyen.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orged.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ostechnix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcprkolo.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plasticstare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quentinaurat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quichante.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raketenwolke.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rednumberone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reroboto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reroboto.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reroboto.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reroboto.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resumeshoppe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retro-game.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royalkitchensandfurniture.co.ug", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rrbt.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rrbt.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sagenesykkel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sellmymobile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sender.services", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sindarina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sindarina.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sindarina.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slow.social", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slowsocial.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slowsocial.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slowsocial.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sony-psvita.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stb-timmler.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stealthmodel.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "streamspouredout.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sumatphoto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swhw.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telford.codes", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testmx.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testmx.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testmx.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "textonly.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theapplewiki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thedinnerdetective.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "therworth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "therworth.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "therworth.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "therworth.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topcarehvac.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unityvox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upbeatrobot.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upbeatrobot.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upbeatrobot.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urcentral.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "velvetia.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "w-architectes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whta.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wirekeep.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wit.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workplace.tools", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80aihgal0apt.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--ikketenkpdet-1cb.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yumiandryan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "100up.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "100up.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agefriendlyri.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amerion.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autocadperfmon.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bazqux.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boughariosbros.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brickadia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calendriergn.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "childrensfurniture.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "claimflights.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloud-screen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comedimagrire.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corsisicurezza.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danelska.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danelski.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "distributore.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doesinfotech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elranchofeliz.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fb.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firerain.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gay-personal-ads.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getacrane.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "growth-rocket.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hbweb.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hokenselect.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hp-67.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "htb.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "htbplc.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ikisser.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilovestickers.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "innvisiondesign.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeps.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jigsawplanet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kartikmohta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiousis.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kisser.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuscheln.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "larpkalender.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "littles.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macangus-wainwright.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marisasitaliankitchen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcwrapper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mhcdesignstudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "midwayrecovery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikerichards.gallery", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikerichards.photos", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikerichards.pictures", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikerichardsphotography.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrnathanpowell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nhv-vintagelemans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notariuszprzybylowicz.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notariuszsych.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nvfoundation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paulmarc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pedago.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perini.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pvpheroes.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qttransformation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quantumcrypto.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ressupply.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rupostel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saletzki.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sembyotic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "softwing.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steph.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stinkefingereinhorn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "styledbysally.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superpi.noip.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tus-kikishinkyo.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuzaginside.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuzagtcs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tytocare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unicorndesign.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unknown-player.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volvoconnect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wearefrantic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weightlossoutcome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wormhol.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zi5.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1941-45.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "428northampton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ashtonbromleyceramics.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "athomedeco.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biogiardinaggio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bizlatinhub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bryanfalchuk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartes-voyance.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cashbot.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cathy.lgbt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drthalhammer.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eichinger-stelzl.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elementarewatson.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ep-cortex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "es-tools.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "es-tools.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essayshark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fimfiction.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forthvalleykeswick.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freefilesync.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaestehaus-leipzig.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "havedicewillsave.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hgmaranatha.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiveopolis.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hosteleriauno.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inoio.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ishimen.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "javiscoffee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jiji.co.ke", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jijistatic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jppcadvertising.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juweliervanwillegen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karodos.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kathy.lgbt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinderopvangthuis.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magebrawl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markstevenkirk.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": "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": "milieuland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nanaimoneighbourhoods.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natur-care.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "officina.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passau-webdesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peers.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philomathiclife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plagiarismcheck.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "providential.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raqoo.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rottamazioni.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roughtime.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sard.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scale.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scom.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shteiman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ssmpuc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starbaese.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecraftingstrider.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thutucxuatnhapkhau.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomstew.art", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trainingswiese.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelexbiz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelexinternational.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trigraph.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "troiaconsultoria.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivaldi.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "w-surgeryhospital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webmail.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "willi-roth-holzbau.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "williejackson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workthings.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn---35-6cdk1dnenygj.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourkrabivilla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaffke.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zakonu.net.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zigarn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zinniazorgverlening.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5ilg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "90920.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aadv.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agenux.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alargarlavida.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alfonsostriano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aquabyte.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arcanetides.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "b-honey.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "backgroundscreenersofamerica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brainobeat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bryanarmijomd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "budgetboats.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calaverasmedicalcannabis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cctv-supraveghere.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chaussurerunning.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "climatizzatore.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cm-loures.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "countrysidemarquees.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cpsa.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "craig-mullins.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cytat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dannygaidateraelgar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "depositomerci.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "directlendingsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emersoncanada.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epal.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "farberplasticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "farmaspeed.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fimp.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "findlocalproduce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fizadvocaten.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "florenciasabio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gdesemena.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goquiqstatus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grilllness.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gyroscopicinvesting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "handymanbypolli.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herqqq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hexsafe.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "houstongaragedoorsrepair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ikx.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iligang.com.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it4sure.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "italik.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kathleendeisher.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lg.gz.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightfoot.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livenewsrussia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lockerroomstories.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithssanmarcostx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithstaffordtx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lorimullins.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lorisfnotary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lukaszuk.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maladie-autoimmune.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matuslab.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milkmoovement.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moneta-rossii.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mullinsfarms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mygreatwebsite.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mypvhc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nurmio.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "operanavigation.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkefficient.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paulandmadge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcisecuritystandards.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcissc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petrotrustlibya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pharmaceuticalcannabis.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pigb.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pleasantonmobilenotary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "progeste.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psw-training.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "public-measures.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quantumfinance.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quiqstatus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rainbowsmoothies.win", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rapport.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reut42.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rockslideengineering.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scotthelmesucks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skateswagger.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "softbit.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spaenny.tf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sparklesvt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studio-abok.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sudanindependent.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superstargossip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "surveer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tablerocksbestrealtors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "termoidraulico.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thenest.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tierarzt-karlsruhe-durlach.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twainhartehotels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vidassemfronteiras.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--4brt03c.xn--io0a7i", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--schcke-yxa.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yangfamily.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yordanisp.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youngmodelsagency.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "your-forum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourmagicstory.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zinabnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zloybot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "znich.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zok-ambicija.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zoko.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zonaperu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zowe.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zsoltbereczki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zumberak.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zverskij-site.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1vpns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5goglobal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ab2web.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accessibilityguidelines.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affinity.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agaveandpine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpha-bet.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anonaddy.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antonimos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appliquette.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avrora-nov.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barcelonawinewalk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bibliatodo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigsam.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bodas.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bssolvfagen-pre-storeswa-wap.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carpetcleaning-cypress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cernac.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dagrs.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domowe-potrawy.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gennerator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hamsystems.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthierweight.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelconsulado.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imstocker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "integ.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "integsystem.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivendi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jabber.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jvlfinance.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lenn-blaschke.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leon-tec.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mars.army", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mars.navy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martincernac.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matrimonio.com.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mmwb.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myfursona.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myinsiderplus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mymkphotography.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myresidence.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "o15y.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ortopertutti.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patriciaramos.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plastischechirurgie-linz.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "positiverbeitrag.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "positiverbeitrag.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "queensfactory.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qwq2333.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roundaboutweb.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sabghijewelers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sabine-dicklberger-massschneiderei-muenchen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarah-jane.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "savemylicence.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servtraqazure.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starsoft.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stenaro.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "step2web-cms.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuartbeard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thwiki.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torreconta.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "touchdown.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trz.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uniaofraternalraulcury.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wojciechowka.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yardesign.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zetasystem.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhestokiemechtyi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zlatan-ibrahimovic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zlotykameleon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "znanie-sila.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zoloftpills.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zolushka-1950.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zooforum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zrinski.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zrs-meissen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2gether.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "activeaerogels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "activespaceautomation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "activespacetech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alessandrobasi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "assis.partners", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astrong.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayudacloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayudalabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayudapreview.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bankheadvegetables.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdmdisinfestazioni.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "connectionstrings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dondiabolo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebenda.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "efoood.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epidastudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eson.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estahl.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "extinctionrebellion.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gerinet.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giac.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gieschke.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gregmarziomedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gt-himmel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indexcesmad.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lakeandriverrestoration.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linestep.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lunarflake.com", "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": "medstatix.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meilleursavis.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meugamer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miasonne.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nastycomics.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinksec.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proastec.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qdon.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quhyu.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revisores.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "risounokareshi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanierungskonzept.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "songdew.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "srilankan-hope-for-children.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stupidest.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supersandro.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "systemausfall.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taguette.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thaihong.co.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theaustinsevenworkshop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tholcomb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinycrm.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "umount.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "universal-tutorial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unternehmensbewertung.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vintagecarparts.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weddingwire.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--s-0fa.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xolotto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yhndnzj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yoba.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yorkshiregardensheds.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "24hourlocksmithhoustontx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "24hourlocksmithspring.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afilio.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airtable.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alles-nur-ge.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aquaist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ashtonwealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avocad.studio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biggerpicture.agency", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brandfolder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "broadbandchoices.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "campmackinaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caphefin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christianr.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comercialroxana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "downtownsuiteliving.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drjosebarrera.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dronepilotgeorgia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eboocker.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edstem.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edusercontent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eznetworks.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homs.design", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "houstonlockout.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "illinoiscaselaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "improv.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "instawierszyki.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jiayi.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kasperstad.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klocast.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kloclabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knrt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knrt.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuhnerts.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kupu.maori.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lars-kusch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lykope.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mitratech.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mjniessen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monodejuegos.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muku-flooring.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "munera.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myekon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noobsrus.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novacoaching.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passfindr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paulsitarz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "podcrto.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "practicalhomes.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "residentiallocksmithdallas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sebastian-kuhnert.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sjwheel.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ssr.llc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strandhaus-claassen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theoosmetalart.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tommyemo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transdevbus.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "translationge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ucmjlawyers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vcm.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "votemate.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waterheaterleaguecity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webdevinsider.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "widgetmaker.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeta.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2jhb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agenciacorujadesign.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allaboutgreg.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bachmatt-baar.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bachweid-baar.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "binaries.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bkkf.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blueskyinsure.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chaturbate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "correotemporal.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creamyfox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ctes.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dark-nova.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "df1nif.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duijf.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dyneco.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emotive.productions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "encontra-me.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esdacademy.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "facturama.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstchoicefriseur.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "food4healthybones.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gliihc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hex.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "how-to-simply.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intensify.pictures", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johndeisher.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kriskras99.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "langgasse-baar.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lavaggista.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luxur.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macappstudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macpress.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mani.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mein-domizil.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metroplex.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netface.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netfolio.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nylasercenter.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ontrio.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paradies-baar.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pro-co.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "promocodius.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purple.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "readifycloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rwx.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shota-sekkotsuin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starb.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startupstack.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stromkomfort.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teckgeekz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tempmail.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toyopac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twobitbusker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "z-cert.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "z3u5.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "9kb.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aigner-club.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aigner-club.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aignerimage.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "albstaedter-kids-cup.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "backupassist.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "banananet.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "becleverwithyourcash.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benu.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bionovanaturalpools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackmagickwitch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brightpool-markets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bviphotovideo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catalogobiblioteca.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdigitale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chathund.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clinicaarques.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creativeideasagency.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ctf-albstadt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dermaldistinction.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dylnuge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elisabethcasanova.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esteriliza-me.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exxpozed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fekir.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferlc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fins.money", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frauen-etappenrennen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gelaendermanufaktur.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gentledance.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gentledance.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "go-datasecurity.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gruhn.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heartbound.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hosoi-tax.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idesoft.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipsum.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irioka.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itzer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jinbijin.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jplennard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kartoffel-tobi.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinaesthetics-forschung.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lequocthai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liberta-me.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lilianejuchli.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mdaemon.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melda.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minton.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modell-lq.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mothership.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mudaomundo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mythen-fonds.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mythenfonds.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n-gram.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noga4you.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nsine.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "octopoos.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ontogenese.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pari.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pelosanimais.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pharmasana.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "praladofuturo.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "progaudio.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "promodance.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quuck.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quuck.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raydius.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salnet.wf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seblod.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sm-kyoushitsu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smcj.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snj.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "srkb.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suroot.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swiftbonds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "videogamer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vpsrussia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westmidlandslettings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wirkungs-forschung.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wirkungs-forschung.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wirkungs-forschung.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wirkungs-forschung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wirkungs-forschung.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wjg.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wordops.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wsv-pfeffingen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--nidar-tib.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--prfontaine-c7a.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yesh.lk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "znidar.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zollernalbtour.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitbucket.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accademiapugilistica.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpine-holiday.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angkasa.net.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antanavagefarbiarz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aphelis.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appub.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berksabstract.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billgradywebdesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyplore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canobag.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cubsbestteaminbaseball.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnssecandipv6.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eciso.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecrownoffire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "europainchemnitz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fairbairnrealty.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": "g2jp.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdbits.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helkyn.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helkyn.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helkyn.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hongbomiao.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i-make.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inspired-creations.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ispmedipv6.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jackspub.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jerseyink.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lackierereischmitt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lauresta.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luv2watchmycam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manshatech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meran.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myfortdodge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n8solutions.host", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nadex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netfoundry.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nextgen-life-insurance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nms-thoracic-surgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plandegralba.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plusreed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quiqurl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rightreview.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secureenduserconnection.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplysmartgardening.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaksbanken.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snizl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tacticalvote.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tatard.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tdstoragebay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tech-leaders.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technochat.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomgaechter.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trinityradioandvideo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twojapogoda.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "victorunix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "violarenate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vunn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whisky.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whitesoxbestteaminbaseball.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wine-route.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80akjfhoqm2h2a.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yogamarlene.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zedeko.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1fc0.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2000.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2255motion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "actionverb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aeroalbrook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agendaspectacles.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alice-memorial.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aljaspod.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anjara.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "app-scope.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artrapid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azrhymes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bgemi.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluebnc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bolt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "claude.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "claude.photo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clemency.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clwrota.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "confygo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyanhexagon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dayswithnostabbings.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "despachomariscal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discord.gift", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-boekhouden.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "educative.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fos-apps.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "franqois.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hayl.me.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hentavfall.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoffnungdeutschland.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ifbagro.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infans.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iosecurity.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jaluzelemoderne.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jarmandental.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jg-skid.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kabinett.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaiwu.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kazvel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kfassessment.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klauswissmann.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithforcarshoustontx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithmidrand24-7.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mahalux.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mahalux.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mairie-sornay.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medirota.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "merlin-memorial.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motto-iikoto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mricspatial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mvorisek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mvorisek.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myresearchtoolbox.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olinux.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partiono.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raynis.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reginaclinic.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robotstxt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rotamap.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanjosecolorectal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarjakuvakauppa.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secapp.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seedno.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sign.dog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slatemc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spillforum.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ssone.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stghv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stonesfamilyrestaurant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thalliman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tilde.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tokyoadultguide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top-zdrave.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tpark.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turiscar.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tutorcruncher.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "txlocksmiththewoodlands.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uj2008.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utrantor.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vectomatic.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webinstit.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xiaoxia.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0x15.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpharoofga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anyi.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apothecarydouglasville.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asakoh.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audiohub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audiohub.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aw.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beatrice-raws.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biuropulawy.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bookingtool.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bookingtool.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brandonlin.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bring-heaven.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bumble.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "campo-salado.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caycehouse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centrumpieknairelaksu.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chiavistello.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christiandiscourse.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christopherd.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clinicos.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crys.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crys.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crys.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crys.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dejongonline.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurotop.net.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "febeditora.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fourmies.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gemeentestein.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldenhost.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "japonyol.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kstr.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loader.us.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ltcwaterwijk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magniflood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nathanbarry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newshell.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noeontheend.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nvoip.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onceuponabow.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osci.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "progresivoptic.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ratujemyzwierzaki.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remetall.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scholtensupport.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scribbler.monster", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siepomaga.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimento-rifiuti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "srqpedals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syuez.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebridalcollection.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tualiadaenlimpieza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veryswing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vsactivity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vsportage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weloveliving.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80ancacgircb8q.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ytec.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yukonlip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0cd.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "14erc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "14ercooper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "222tips.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "45b.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4investors.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4wrd.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adonis.hosting", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advaith.fun", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affiliates.trade", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allanta.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artifexnet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "awangardaszkola.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bachmannyachts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bacsmegye.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baranyavar.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bergfex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bettashoerepairs.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biancazapatka.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bloomscape.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boomfestival.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsstainless.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cameramark.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canhas.report", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chernyak.id.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christineprayon.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clairette-de-die-lantheaume.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codista.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coinsuggest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comfortsolutionsair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "contractorswestga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "correctconstructions.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crowcloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ctmrepository.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dating.wedding", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni24.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dobbshvac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "encoro.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epawnatl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "equipoweb.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fejervar.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fridaysforfuture-bremen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "froogo.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funktionevents.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greengates.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gregorydorrifourt.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grexx.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "has.report", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hasandeniz.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heardcountyathletics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inkthreadable.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janostheil.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jnsz.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johannfritsche.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keestalkstech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kingfast.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kita-freie-schule.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kleor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knuterikskare.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kodkollen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kodkollen.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leveluprankings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libwebsockets.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifetoolscdc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "love-spells-tarot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magyarepitok.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maklerinfo.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martellosecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mgsdb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "micropigpets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikkei.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modelspoor-projecten.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modernautorepairs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mountainutilities.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-web.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natmal.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nogradhont.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "objectif-securite.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okkhor52.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ollies.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onpointplugins.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pandahut.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partnersofprc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pestpilis.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planetchiropracticga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plcgurus.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plz.report", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "priv.gc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privatenebula.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "putnamcollision.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rinkhill.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riptidetech.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rsquare.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rummey.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sand-stoneinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sapphireservicesga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiganmartialarts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sideleau.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skolebil.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sofialobocera.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "somogyivar.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tarife.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tolnavar.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelamm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trebnie.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vnministries.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warmcat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wearebase.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wenceslas.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "west-nerica.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wsave.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xxxbunker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xzibits.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alko-centr.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antennajunkies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antennista.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apostalegal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apostalegal.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "assemblywithoutthewalls.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astrojunkies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baronspices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bcmguide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beestation13.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betmobilenigeria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biblionix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buffup.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyessayscheap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cacrm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cargoio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinosblockchain.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chupanhcotrang.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clipchamp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coin.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "complexcoral.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dark.fail", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dosje.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ducksoft.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electrum.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eulessplumbers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ftl13.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gcode.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geschichtscheck.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gesmav-trier.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gkv-gorinchem.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glimhome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gramtrans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hl8id.vip", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hosteons.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hypotheca.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "id3global.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impakho.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inovatecapi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jiji.ng", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "just3preety.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jyvaskylantykkimies.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kirchenchor-olzheim.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kirillpokrovsky.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kursk-otoplenie.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kustod.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kvetinyumarkety.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "learngreenlandic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lethosdesigns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liberty-med.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lisasworkshop.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lockr.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lukasrod.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martinboerhof.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mastdi.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mathematik.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multicore.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-hps.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pakho.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pfarreiengemeinschaft-neuerburg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plantarportugal.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plumberlewisvilletexas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prepfba.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prowpcare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quantum-evolution.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reinhart-auto.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resolvergroup.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintleochurch.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "santo.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sdn.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seolabuitest.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serenavillageresidence.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solsocog.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storgaarddieu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thouqi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tickettailor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timawesomeness.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelwithbender.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uphabit.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uspesnyprvnacek.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wca.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtaboo3d.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zindec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adonisgrup.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akeenext.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aperture-science.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atrias.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audiohub.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balsamaiso.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bandeirasnacionais.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "banderas-mundo.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bandiere-mondo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barakayu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bayraklar.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beers.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonn.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bosekarmelitky.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "breadpirates.chat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brindesgrafica.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brisq.design", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calluro.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdbtech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chapek9.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "computingsociety.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crafted.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crownsterling.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denisadinu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalarchives.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ditec.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drapeauxdespays.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dtleague.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "engagelogic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ericsilva.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erperium.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fam-borsch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fetishbazar.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flaggorvarlden.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flagi-panstw.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flagistrany.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flagpedia.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flagpedia.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "franchisehive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galeriakobylarz.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grimm.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hearthstonehungary.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibhgospel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infinityvr.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iosprivacy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kettlemetalbbq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "last-strike.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livelondon.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maidenliput.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meetfranz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "micr0lab.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mlohr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mountbatten.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msoll.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msoll.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nemzetizaszlok.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nutrizionista.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "penconsultants.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playinfinityvr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "publivate.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qr1.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quiq-uri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "refinedroomsllc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scip.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sekainokokki.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shotsleeve.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shulyaka.org.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speventos.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "statnevlajky.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "statnivlajky.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stefan.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studiokilund.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "summitlighthousela.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swindontennisclub.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tanks.je", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theheatingoilclub.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tommyemo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "towellconstruction.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ucngame.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verdensflag.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viveportal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vlaggen-landen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vrba.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vtupro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weinboxbuilders.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "welt-flaggen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "williamtai.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worongarymedical.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wossl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xinnermedia.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akerboom.family", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akerboom.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "americans.cam", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amymabel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrey1p.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arno-klein.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arno-klein.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arnoklein.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arx-libertatis.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asianwebcams.webcam", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bekolite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bongocams.webcam", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "breizh.pm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chris-siedler.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ckpl.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "connectme.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consteval.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "constexpr.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "constinit.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cooljv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "craft-beer.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crafters.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidje13.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deshobi.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digital-eastside.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dilibel.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dottore.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dscharrer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dtnx.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eazyproject.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebooknetworking.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "editionsnoiretrouge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "endbox.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erichoekstra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erichoekstra.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erkiss.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eyedesignuniversity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabslabour.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freddieleeman.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fx-rating.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graficasantana.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inflatiecalculator.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inkbunny.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interstateremovalists.sydney", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ixit.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janeymac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jasminlive.cam", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jyoba.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kas.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kelis.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kneppe.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knulla.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knulle.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koef.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kolkinn.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kycisrael.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "le-fumoir.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightyear.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "londonseedcentre.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marjonruns.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marvin.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "menthiere.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musthinsider.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-sex-cam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicolettajennings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paiementdp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paradigma-med.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pimichi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pizza-calzone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "previousmagazine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "profritual.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychiatrie-ricany.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puntaprop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rabbitcallcenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "romanian.cam", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saiyans.com.ve", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scenari.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scenari.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sdebitati.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seishinchuo-lawoffice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sex-sex-cam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shahzaibm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "softwarepara.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spacehighways.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "st42.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stamboomgids.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sth.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svtr.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "televotia.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebasicstudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theorioncorrelation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timacdonald.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tixel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uborka-812.ru", "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": "vertretungsplan.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visuri.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voidancerecords.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voyagewonders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webkam-sex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "websitecyber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikileaks.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woodwo.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ygm.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zenassociates.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "09000113.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "12l.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aland.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apod.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arnove.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aspirevc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bernmail.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bettercleaningcompany.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beverhof.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluesoap.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buddyme.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bvgt.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carium.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdf.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ceiba.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chloes.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ciagutek.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citsc.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crazymarvin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devicom.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dhit.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dipietro.id.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discarica.napoli.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "divjak.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drradin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edtech.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eisen-biomed.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elektrownie-tanio.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emmiwelentain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esoteric.website", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "familiearchivaris.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "felixklenner.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fietsvierdaagsen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genealogiewerkbalk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gentlent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hakkasan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hardfloorcleaninglondon.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heathersmithcommercial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holtslander.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icecutethings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inspiresurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipinfo.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ispfontela.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivetazivot.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jrt.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaputtzich.duckdns.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kernkompas.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kochbar.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leathersofacleaning.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lidl-shop.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lidl-sklep.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightningwirelabs.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": "mademoe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magnesy-neodymowe.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magnesy-neodymowe.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magnesy.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magnesy.net.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martinelias.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mateuszmajewski.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matts.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcjars.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meridanas.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijngeldcoach.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mist79.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mittwoch-nacht.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkm.szczecin.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moteksystems.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mott.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "move-out-cleaning.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mservers.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mt-tech.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nepozitkova.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netolink.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netolink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ololmke.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinestoresite.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optimalrehab.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patchyvideo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "preparetheword.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "producentbalustrad.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "protocol.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prove-uru.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redpen.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "restaurant-fujiyama.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serverhost.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shepherdsfriendly.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplemining.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smtenants.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sphericalvision.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supercharged.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taffe-elec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trabajaenvitamina.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turbomag.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "typeclasses.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "us-10.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utiars.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vicenez.agency", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitavista.health", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "watzijnmijnkerntalenten.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wealthadvisorsmf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xinxin.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xlink.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xmag.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youber.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourcareerhost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zuim.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abdullahavci.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abdullahavci.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abdullahavci.net.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "analisi-logica.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aponkral.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "applied-privacy.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlanticmarina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "augur.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "b4lint.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestporngirls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blog-investimenti.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brazilianbikinishop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cashforcarremovalsipswich.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chungsir.com.pa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clientcms.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clinique-ser.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "competitor.com", "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 }, { "name": "creativeliquid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cremedigital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csci571.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daceurope.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deadpulse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dementiacaring.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drpil.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecodesign-labo.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ff-koenigstein-opf.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fozzie.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idesoft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imaginelab.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infocus.company", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "is-in-hyper.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itsig-faq.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jabberd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jiayi.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keller-aarau.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kneli.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lemonrotools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lindquistnet.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ljskatt.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loan-lenders.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marketing1-0-1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matthias-wimmer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikeowens.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nasaacronyms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nonzero.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nosedoctor.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ociaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patryk.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piatika.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pirscapital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playinfinity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pop.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "produra.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "projekt-allianz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puntoestadodemexico.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pymescentro.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quarim.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recht.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reparacionmovilesmurcia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintanthonylakin.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saorview.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "satania.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scratchzeeland.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sethlmatarassomd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shdw.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shopikal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportboot.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steuerberater-bayreuth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tegel-schoonmaken.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thilobuchholz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelassist.us.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trezor.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vmautorajkot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wolfy.design", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpwebshop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeus.gent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2th.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "action-verite.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ampgroep.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arnesegers.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arsindecor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asdwfwqd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aupaysdesanes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bevelbeer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bikebristol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blanboom.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brinksurl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "by-robyn.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccparishwilmington.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chilliwackchurchofgod.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clearvoice1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudpole.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "connectingrentals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cozmoyachts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dalianbbq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dayuse-hotels.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dayuse.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dayuse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dayuse.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dayuse.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dayuse.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dayuse.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deloretta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dermsf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dev.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dgangsta.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalagencynetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "distributori.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drrr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eastmaintech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eastping.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eastyorkshirebuses.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ekalisch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eprezto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurogarden-parts.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuseyahoken.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "g-lab.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genealogieonline.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "girlinthetiara.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gymnchod.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hassra.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hplace.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hullseals.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "into-the-mountain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-zt.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivanderevianko.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jenniwiltz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jonaskarlssonfoto.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalisch.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lanselot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lexautoservice.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lonelyhaoss.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mbed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mindcms.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkalisch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mocknen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morganwilder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neilpatel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newquilters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nguru.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nutbot.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panthi.lk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perf1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piratesbrewcoffee.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planrow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "post.icu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pylon.bot", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quiqd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quiqurls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiodeutsch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ranyeh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "repliksword.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "runicspells.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sailormoongallery.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sebastianungureanu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sekurak.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sgrossi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simcoecurlingclub.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sixcolors.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "socialclimb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spaceapi.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stickypassword.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stjohnnepomucene.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sukiu.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swagger.london", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "system-admin-girl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taiwanhotspring.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "targetx.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuxsrv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urabain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vandortgroep.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volatilesystems.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vv1234.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "walnus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warrantynowvoid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wetter.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1datatec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2y3x.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "608vets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a3mobile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aarquiteta.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aasvets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abbeyvetspets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accademia24.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adasbench.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ajnah.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allcinema.net", "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": "appliancepronwi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arx.vg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astucewebmaster.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auksnest.ca", "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": "bangkokcookingclass.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blythwood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bomhard.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bomhard.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boundaryvets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bracknellvets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "broadwayvets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buchhaltung-muehelos.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caldervets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casavacanze.estate", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cathcartandwinn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centralpaellera.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centreagree.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chapelhousevet.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheapsslsecurity.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chodaczek.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrxw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cromwellvets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delegao.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deutschland-dsl.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dieti-natura.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dimomaint.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domyhomework123.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-coexist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esfiledecrypter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eskapi.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eventprazdnik.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evony.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ewritingservice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "excelkursdirekt.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "global-monitoring.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gowervets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gpsblackbox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greensidevetpractice.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hancocklawfl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hawickvets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hexaware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hispadent.com.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelcorporate.codes", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hypolineweb.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ifacservice.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilovelwy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immortal-pc.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iqsecurity.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "istormsolutions.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kbsinflatablekingdom.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kentdalevets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laurenball.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ledburyvets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lida-vets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linnaeusgroup.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lizzian.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malinaclub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maplebgm.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minervacars.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moritzkornher.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrmemory.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multimedia-pool.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ndx.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.ads", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.android", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.app", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.boo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.cal", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.channel", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.chrome", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.dad", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.day", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.dclk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.dev", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.docs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.drive", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.eat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.esq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.fly", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.foo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.gbiz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.gle", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.gmail", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.google", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.guge", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.hangout", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.here", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.ing", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.meet", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.meme", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.mov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.new", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.nexus", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.page", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.play", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.prod", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.prof", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.rsvp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.youtube", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.zip", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nocommentsallowed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northampton-vets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nothinfancy.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oakbarnvets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olopp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omniteck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opp.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palner.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paperwritten.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pappasappar.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkvetgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peakvets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "permis-apoints.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pmarbeid.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portierato.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "provlas.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rbtvshitstorm.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resorts.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retraitebysaulsplace.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reviewgeek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riversmeet.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rugeley-vets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saulsplacewebdesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "selltous.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "setuplog.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sevilinux.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiresvets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sitemai.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skolappar.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spellic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strd.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svedalataxi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swiftpak.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tampabayhometours.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tantravoorlichting.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tdvg.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tele-points.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "texasbluesalley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "the5th.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thelevelman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tipsmake.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tmcjobs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsahf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuning-parts24.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tunnelstore.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turnoffthelights.video", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvaerialsmanchester.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urrestarazuserranoabogados.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "us.marketing", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vellingetaxi.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vestibtech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vet4life.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vindafrid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vindafrid.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vindafrid.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voodooshaman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webhotels.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wijaya2u.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wormate.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--90acjfgylpnm.xn--90ais", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--ggle-qoaa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yavorivanov.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yoonas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adamdorman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adhocracy.plus", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agroconsultoraplus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "archframe.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bank-yahav.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barnvets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "besensi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bewegtes-lagern.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bewegtes-lagern.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bewegtes-lagern.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bewegtes-lagern.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bewegteslagern.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bewegteslagern.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bewegteslagern.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackstump.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackzebra.audio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blrjmt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buster.me.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bytheswordinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calitateavietii-ardeal.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calucon.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carolineball.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checkra.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chimpmatic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daie-inc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidgroup.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dcave.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devtea.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dug.net.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-klempir.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edelweiss-pinzolo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eletminosegert.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emkode.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "execbar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fachversand-hennes.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "farallonesrentacar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fluglektuere.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galleonwaymedical.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalipaction.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goaudits.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gregmc.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hennesshop.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hly0928.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hofstaetter.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelcorporatecodes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hrumka.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hubspot.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hubspot.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hubspot.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hubspot.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idee-lq.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idee-lq.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idee-lq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idee-lq.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idee-lq.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indoor-kletterwald.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "informatiger.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iranwiki.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "italiensk-tolk.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivoryandgrace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "izumi-ryokan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joaojunior.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joomla-leipzig.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jzwebdesign.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiwiflowershop.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kreativklinik.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laab.gv.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "larete.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leddingplasticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logico.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mariagealamontagne.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metanumbers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milleron.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modbom.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "molleron.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mygear.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netzwerk-lq.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": "ornsyn.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oz-style.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pacificbeachpub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patlis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pendrivelinux.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polestar.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prawnikdlaanglii.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "primecursos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pro-lq.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pro-lq.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pro-lq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pro-lq.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pro-lq.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pro-lq.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pro-lq.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pro-lq.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pusehusetmalvik.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rekurasi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riklewis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scottshorter.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shawnz.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sheremetka.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slymak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soket.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "southmill.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stefanknobel.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stiftung-lq.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stiftung-lq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stiftung-lq.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stiftunglq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tipranks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tool.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsutawal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ukpropertyrescue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "underwoodpatents.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vechainstats.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verlag-lq.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verlag-lq.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verlag-lq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verlag-lq.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verlag-lq.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verlaglq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visatitans.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visatitans.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visatitans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wear-referrals.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webce.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weymouthslowik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worcestervets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--9xa.fun", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ymatyt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourname.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0q0.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aarwer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aarwer.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abacross.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abona24.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adaptiv.ltd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adsib.gob.bo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agrobaza.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alvimedika.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amoryurgentcare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antipolygraph.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artikel9.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baches-piscines.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basel-gynaecology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basel-gynaekologie.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basilsys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benmack.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigudi.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biotanquesbts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "black-magic-love-spells.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluemoonrescue.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brain-club.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "broe.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buddhismedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buitenposter.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "choservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citylift.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clearbooks.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clearlinux.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cleveroad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "compdermcenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comunal.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "confusion-band.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corsorspp.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cupcake.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dd.center", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denta-ua.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "design-your-life.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "didaktik4you.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "driestwegkerk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dungeoncity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emeraldcoasturgentcare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "envoypresents.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "espiragen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fableheartmedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fapcoholic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feistore.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finsecurity.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstversionist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fix.mk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "folkofolk.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fudie.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funprode.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gantt-chart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "get-baaam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giardinoperfetto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goetzinger-web.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greenangels.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gruslic.org.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gutscheineplus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hetwalhalla.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hexhu.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hide.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hifala.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "housingloan.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ias.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imolog.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infovb.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ingeni.ink", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipggroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "islandsbanki.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jessica-weller.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jovisa.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kasse.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ki-management.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "labs.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logtenberg.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mafworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magnetoterapiapertutti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marktgorman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megaelettrostimolatore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milleron.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miwebmadrid.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mon-butin.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motor-agro.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musedash.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "museloveurania.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myoddlittleworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nationslending.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nertus.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ovpn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oxfordurgentclinic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perfmed.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "princelishan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "princelishan.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prisync.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "provide-your-image.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pruna.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puredayshop.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recoveryunplugged.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resilienzatropical.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resolve-portal.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revitalisierungs-akademie.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rhodos.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scheervergelijker.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schnitzel-und-co.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sh0uld.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "singleproduction.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sitak.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starkvilleurgentcareclinic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stc-istok.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sugarpiano.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tateishi-ip.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": "tennisportal.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theblackboard.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomsoft.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top-rensner.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topyachts-shop.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trauerbegleitung-kudla.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuxsoul.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urbest.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urgentcaresouthaven.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vconstruct.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waldur.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xiphwork.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yachta.kiev.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yashinstore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youtubekids.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a3m.gmbh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "af.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alana.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alaunus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alea.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alex-n.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amion.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "art-dolls.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artycoz.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asker-massasje.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aspirantum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atelierverbeelding.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atkstore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "attentionpleats.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "augredutemps.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "backpackingtours.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bellaaroma.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bern.bz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betolerant.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billiardmaster.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blockchain.poker", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonchaboncha.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brunohenc.from.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buffus.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "byjus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cambridgeanalytica.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celsoazevedo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ciclimattio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cinematherapy.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cocoa-job.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cslbuild.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cursosemmaus.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datasubject.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datasubjects.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deemlove.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "defesaaereanaval.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "departureboard.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djurklinikenangelholm.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamswelcome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drevoline.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duboisinternational.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dwarf.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easymotionskin-japan.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elenapulizieroma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elisabethbegle.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "energy-robotics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethicallogistics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fastpeoplesearch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fishycam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fneon.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foreverydream.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "games2kids.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gebaeudebilanzierung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getintra.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giftofsquare.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giftofsquare.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giftsofsquare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giftsofsquare.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giftsofsquare.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giveasquare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giveasquare.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giveasquare.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goettinger-katzenschutz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gosq.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gosq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guercioarchitecture.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harleyclassifieds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helppc.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hypnose-hennigsdorf.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infoprofuse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeep4ik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jiaty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "job-chocolat.jp", "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": "jw.fail", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kamp-kisten.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ketoliv.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kingsvilletexas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klapib.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krusic22.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kusasa.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lanparty.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lasept.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lelo.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lor.kharkov.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovejms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lucascantor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lukaswiden.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m-epigrafes.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m-hydravlika.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m-office.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mahalaraibanda.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailmerc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maleevcues.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mariasavchenko.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maunium.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megayachts.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minibaggerverleih-aulendorf.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "missmaid.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "missmaid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mmhome.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motor-agro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naql.om", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nibletllc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obuchowicz.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oldpc.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opale-concept.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paisleyandsparrow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planeta-deti.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plastdesign.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plavdoma.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prommontag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "protectionformula.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "protic.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prowindow.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psasines.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psinergy.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psinergyhealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psinergytech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qrz.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reitmeier.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "renehsz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "repauto.com.ua", "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": "sadkodesign.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safethishome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sainzderozas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saltsugarlove.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sapiperelining.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secinto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "security.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sellwithsquare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siberiactiva.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siddigsami.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sk.tl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snipl.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soap-teco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soloinfo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sparklingloungecampiglio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sqap.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sqclick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "square.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "square.engineering", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "square.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "square.ly", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "square.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squaregift.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squaregift.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squaregift.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squareinvite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squareinvoices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squaremktg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squareregister.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squaresolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squarestagingexternal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squareupsandbox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stpatsschool.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuartcrawford.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studioavvocato.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "surthriveak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taoaworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tchealers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techzero.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tecnoblog.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teplohod.kharkov.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebrainfactory.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiance.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tipsypresent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tksainc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobiefornerod.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "totalofficeclean.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transes.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transservice.net.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truckshina-plus.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ucdap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ucibt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ulys.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "varda.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viaggivistos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villa-toscana.berlin", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villawirz.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vipmdh.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivalajack.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "washabich.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "widecontrol.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wrap.in.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xeerpa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn----7sbbgbr0arxb4a4exa.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--90aij9af3f.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xnativi.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4played.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4played.vip", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ae86dy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allenarchive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asokan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basementwaterproofingwi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bebecar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beitmidrashrambam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bmbfiltration.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brucebenes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cherhenri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chilbert.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "claimspharmacy.services", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "communiquons.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cpsecureapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darkleia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidlindekilde.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.cagliari.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnns.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dobreoknaszczecin.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dokee.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dovizborsa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eagar.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ekimaeseitai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epost.pub", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "express-hosting.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fantastici.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fed-shashek.spb.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferestre-bucuresti.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferfer.ga", "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 }, { "name": "funidelia.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamberorotto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genoveve.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gentlent.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gentlent.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gentlent.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gentlent.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gooch.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grahamleeonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "groundsdirect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gununsesi.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gununsesi.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hazelhof.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hjelpemiddeldatabasen.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imphotep.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inu.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irina-beauty.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janv.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jonaskoeritz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katio.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kevinfumbles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiwitastic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kwadraadtevredenheid.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lasercareestetica.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laylo.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "levis.fun", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovink.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maigesellschaft-lammersdorf.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "makepro.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mau.chat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mau.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxiglobal.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nellydallois.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oakshield.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkercs.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peter-r.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixiin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qpaypro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regazofotografia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rouair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saito-koken.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scholz-kallies.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sheltieplanet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shoejitsu.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sindominio.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skydiverecuador.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smmpanelweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swipedon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tas.best", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tecfleet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teddykatz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "templars.army", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tokyotimeline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trainoclock.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unifashion.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villaville.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vsec.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weddingwire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wewitro.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wispyon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wittgen-kfz-technik.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worcesterpethydrotherapy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worcestervetsreferrals.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": "yumepolo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zecuur.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3dsupplies.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apexfacades.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aspirevc-prod.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "awsnuke.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barter.vg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bebemamae.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berghuus.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bizgo.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bookameeting.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brigittaseasons.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cave-vet-specialists.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cfotech.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cfotech.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cfotech.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charmcitytech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clairelefort-architectes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "closecross.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comcenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coprotag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coprotag.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "costco.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidlamprea.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dns.sb", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doi.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dromotique.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edisongroup.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eriksen.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expopro24.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filtershekanha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fractionalciso.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futurefive.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futurefive.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamepres.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamereactor.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gemonite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genericdevelopment.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gevme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giancarlomarino.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goolnk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grupoharbour.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hagbergmedia.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "handwerk-digital-steinfurt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heiden-wir-helfen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "henrikjuvonen.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiledge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ian678.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infihow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jbdesignfoundations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jmstfv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jocelynjenkins.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jpst.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jsjohnsononline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laceleste.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libreho.st", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marmaluot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercatoitticosbt.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaelbeer.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mycoldjet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nanodynelabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nationalcybersecuritysociety.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nordpass.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nordvpn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "octane.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pragmatist.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "precisionclan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reinotools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rumahminimalisoi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s6o.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sairadio.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saisecure.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sashleighaust.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serdarwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shahyadmusic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shtaketnik-metall.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sologoc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steppingoutinstyleonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svenskmediabevakning.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techday.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tenfeetsquare.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thesimplewebcompany.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theviolenceofdevelopment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobyx.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobyx.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobyx.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torstens-buecherecke.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twitcker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitavista.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xyzzyyyz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yearli.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeit.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeit.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zum-ziegenhainer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "133769.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3cbalance.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "50ten40.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ab91corp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aclandia.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adi.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adi.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adinternational.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "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": "albergolafiorita.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpha-shop.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrewwiggins.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "androidtcpdump.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anonym-surfen.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arco.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arcticwolf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aridhia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arthurdejong.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biogaspuxin.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "birthday-to-you.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoin.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "breakerlink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bregnedal.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brk.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buildingbitcoin.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cadmechanic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camberford.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camptuk.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccgx.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centella.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "certificazione.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chemolak.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ckenell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ckennel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ckennell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "club.zj.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "code-maze.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comparetheproject.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "costco.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "costco.co.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "costco.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "costco.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "costco.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "costco.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cupdunarea.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cvj.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dansk8bit.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darfurwall.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daygametraining.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deconstructind.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delfi.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derf.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derpibooru.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diamant.family", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diamant.nyc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.caserta.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dleet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dogma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dolciariasimonini.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doubtaboutwill.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragonreal.estate", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drikuansvarligt.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dromax.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drtimothysteel.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drtimothysteeljournal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drtimothysteelnetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drtimothysteelresults.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drtimothysteelscholarship.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drtimothysteelvideos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ducksify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dymdajce.ovh", "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": "ecologica.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eewna.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurmarketing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurseo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evobox.store", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fac.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feelgood.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "felixbrand.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhm.duckdns.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finexo.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fontela.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forum-batteries.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fotobodyart.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fragdenstaat.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glassochchoklad.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glit.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalizationpedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gorlani.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gorlani.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herkelmedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "highinthemid80s.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hohenpoelz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hyundaisrilanka.lk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilbiscottificiodipamparato.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immanuellutheranmedia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immense.ly", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indexsalaire.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infomax.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interconlarp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iqtechportal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "islamicarchitecturalheritage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iyn.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "izavel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jaeger.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jed.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jedcg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeremywinn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeremywinn.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jldrenergysaver.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobtread.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johlmike.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joshdiamant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joshuadiamant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kemand.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiesuwarbeidsrechtadvocaat.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kimai.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kitseliit.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kos9078.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lacasadelours.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lamnea.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "langapi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ledensite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legion.ge", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "levidromelist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linuxforwindows.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lostinfood.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lottodatabase.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luckycasino.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lumenapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lynnejeancleaning.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "majameer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masterkitchen.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mavenvets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melanieschweiger.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercedes-benz-arena-stuttgart.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metacompliance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metasurfforecast.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michalis.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minhng99.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mma-records.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morningbird.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "murster.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "museumwaalsdorp.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nadlerdentistry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naschenweng.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naschenweng.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "negoya-shokai.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neochan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neochan.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neoko.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nidhoeggr.duckdns.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northbengaltourism.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novel543.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novobi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nunoleiria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "o3ptitschats.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oadeo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ocimumcdn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "odatakao.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oldschool.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onionyst.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opencrm.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openhistory.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ornua.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osrs.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outline.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outnow.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p-soc.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pacecounsel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pagenstedt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perlbanjo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pferdesportclub-chiemgau.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phbits.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": "potreningu.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "promocjedladzieci.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qlcvea.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "racesimscoring.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rainbow-web.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rainbowloompatterns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recordmeeting.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roll-bakery.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rs.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rte.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rteplayer.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "runescape.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safenetwork.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samisoft.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scatterscasino.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scottishcca.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servertutorial.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sfvonline.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sharedgoals.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siccardisport.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sieuthithangmay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimentorifiuti.napoli.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartdb.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spaceanimalnutrition.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sprintkitchen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stabilimento.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stansweather.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stasiniewicz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "statusmachine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stclairvet.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steelsoldiers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stiebel-eltron.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoomstichting.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stopforumspam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swiftcom.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talesbazaar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tax-brain.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techmanstan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terracom.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebroadcastknowledge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thejunkfiles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thuyetphapmoi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tnrf.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tottoya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "townofmineral.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trixiebooru.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upguard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upr.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valkohalla.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vapteke.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "variable.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vcacursus.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitrade.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivaiocolombo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vizion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vkirienko.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wbca.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webminders.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webpixelia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weirdgloop.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westcoastmotors.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wg-smue.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikipedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worklinepc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xav.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.al", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.amsterdam", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.ax", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.com.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.com.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.fo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.ge", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.gmbh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.je", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.limited", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.london", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.ltd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.md", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.mk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.moscow", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.paris", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.su", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4vio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7th-heaven.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arbavere.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "archival-services.gov.ge", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "archive.gov.ge", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitrefill.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cathy.best", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cathy.legal", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cathy.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudzentechnologies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptool.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csvplot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "culturelivresque.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danhotels.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danhotels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denhotels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "florian-knorn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gomasy.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gplvilla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "groundspan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gtagames.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herkelmedia.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hp-lexicon.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "http3.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ippo-juku.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janey.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kathy.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiwee.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krimikiosk.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lakeview.photography", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lamdav.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loader.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locallhost.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lukersallamericanstorage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luzi-type.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mankier.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mdpparish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaelklos.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnnaamdag.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neapi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ninkt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nouveauhosting.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "odyssey44.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "otakurumi.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pano.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pasquinelli-truebag.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "penguindrum.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "platypiduses.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rddjapan.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richardinesrolltop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rottie.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safehero.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sans-hotel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sfpebblesstones.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartstep.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smh.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starinc.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steffi-knorn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swynwyr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tableres.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techraptor.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teodorpravicky.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thekuwayama.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wdmcheng.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winancreekbarn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "www.edu.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "01.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1eanda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abstimmen.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acpica.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alimentsduquebecaumenu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bayer.earth", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cabooneconstruction.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "circus-maximus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudindex.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "curvemedia.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datumplus.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "douzer.earth", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ellhofen-peccioli.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elradix.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fatiguesyndrome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldenyacca.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "halloweenmusic.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i7.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iletisimmakinesi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "image.hosting", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impactparcels.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impactparcels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ineffect.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joyousisle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justacoupleofclarkes.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justninja.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kadenba.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kotmale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesalpinistes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lilith-magic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maisie.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matthijsvos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matthijsvos.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mayblossom.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meherbaba.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milesdewitt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mintplayer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moviro.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ncrypt.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noosxe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osto.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palmbeachcuisine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pano-guru.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panthenolplus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pavelfucik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pavelfucik.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pavelfucik.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planettimer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qdstationary.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qdstationery.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quiq-url.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redwater.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rkbegraafplaats.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sardinianvillas.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saxis.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servermacher.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sonomacountywriterscamp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stehlik.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunrichtec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tannerdewitt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teq-automotive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tewkesburyyoga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "texteditor.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tocasoft.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomvst.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vault.investments", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "velocityfiber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villagemagazines.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wwweb.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yule.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "z4-forum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeihsel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zfxhzc.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zilv.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zondervanacademic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1me.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4cavaleiros.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adventures.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "albionfaeries.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amigosencanada.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arraudi.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asm.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bastter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "battlerealms.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baytv.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bread.fish", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buongiornolatina.it", "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": "californiamusicacademy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chipdig.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citacepro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudturing.chat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cluster446.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "covert.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ctir.gov.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyclonedesign.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danilov-abrosimov.org.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidzimmerman3.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deejayladen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "definingterms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dibal.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digchip.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digchips.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disboard.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazionecimici.napoli.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domacikavarna.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dordtpas.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drivedavis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "echinus.solutions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eeeeeeeeee.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ei-bo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emergencycommand.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "empreinte.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eyy.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fajode.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faststage.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finprison.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flipsidevr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foxycredit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furca.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamingterritory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geico.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goudt.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happyandrelaxeddogs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hastyllc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostpoint.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilctucson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "javaxxz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jesseblum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johnathanhasty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jonohewitt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jswebbdevelopment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinualive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klusbedrijfdupau.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laanius.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lacledeslan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leendebroekertfonds.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maksoud-karim.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meddin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "misfit-media.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n-design-service.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nagoonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nieuwsfiets.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northwoodstudios.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nwh.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onthegosystems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outshinesolutions.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panzdravi.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parachuteteam.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "personalityjunkie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phyllischerry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pressspace2hack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pressspacetohack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychopathtest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roed.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "say-it-loud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "securitelandry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sejageek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seowerkz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shoptio.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sigmasensors.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skypech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stevepacheco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sttl-topographie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuudium-mail.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "szotkowski.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tauran.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefussyeater.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thehasty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "therapyclient.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "therapypartner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toolset.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tproger.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turm-umzuege.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uid0.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unionlife-net.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unlockscheveningen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usctt.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vaniola.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vato.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wizadjournal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wizathon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wjb.marketing", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpml.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ximes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80aebbkaqx6at.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yoogirls.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": "365.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abi95oha.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abrah.am", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anamelikian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ararrl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ararrl.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artj.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ballettstudio-ost.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bech32.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boschveldtuin.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casamentos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cranioo.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crowdstack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datenschutz-gruenwald.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datenschutz-isny.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datenschutz-oberschwaben.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datenschutz-ravensburg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datenschutz-wangen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datenschutz-weingarten.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "defamiliehagen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni-sardegna.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dusty.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dutchassistancedogs.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.wine", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elettricista.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ergaomnes.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faked.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fusionapps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fusionapps.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genbars.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "halovanic.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hangarbox.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hooghiemstrazelf.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immedicohospitalario.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infra.beer", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jakobs.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jb0.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jfvaccountants.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jimkimmel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jnssnfotografie.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keeley.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kreuzwortraetsellosungen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leon.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "librairiezbookstore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linguatrip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loonbedrijfdenboer.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markfisher.photo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markoglou.com.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "massageandwellbeing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mccordscvs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcvs.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medunovi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mountknowledge.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mycrowdstack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nedermisp.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nully.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ontopoflove.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "overlord.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palessit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pipscprd.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poquiloco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puredns.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rabbit.finance", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "repairit.support", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retinacv.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sapuseven.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seminarraum-isny.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sequachee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smlk.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "softskills.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "standheizung-shop.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stevenkendypierre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stjohncamden.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "striata.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "striata.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tactical.zone", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tferdinand.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tgtw.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tkmr-gyouseishosi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobiase.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torremarsalou.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "up-stage.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vanuithartenziel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wippie.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiseradiology.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "www.gov.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yokoda.okinawa", "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": "403page.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4mama.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "6thmarch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aandachtsmeditatie.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "absoluconseils.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "absolucopine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "absolugroupe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "absoluphoto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accessnetworks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "actioncutprint.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adnotam.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adotta.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adregain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adregain.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aebleskoven.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aflattr.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": "allgemeinarzt-wenta-bralla.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alluremedicalaesthetic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alunara.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amethystwebsitedesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amvisualgraphics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antianti.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arvyncerezo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badge.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "becausecapitalism.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "behaviorchangeimpact.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belfix.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benulekaren.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beyondauth.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bietinidesign.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "binairy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "birosuli.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinheaders.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinseed.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitsellx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "borgoaureo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncearoundinflatable.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brooklyntheborough.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c3boc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c3soc.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c3speak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c3speak.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cabina-photobooth.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calim.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carre-jardin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casamiento.com.uy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casamientos.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caselemnbarat.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cbxp.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chaoscommunication.camp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chaturbate.global", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checkmedia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cm-agueda.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coderjesus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colonialfurniturestripping.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "columbiascaffolding.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "computerbas.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "connelink.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conrazon.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "container-kormann.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "contaminatie.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coredns.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coveragecareservices.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "critical.software", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryoflesh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cultrix.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "custosd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "custosd.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "custosd.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "custosd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielhurley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "de-groot.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dentaloptimizer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devignstudios.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digchip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digchip.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digchip.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazione.napoli.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dom.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drivedannyherman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "driveforadtransport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eddie.website", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "efp.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elettrolinkimpianti.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elmahost.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emalm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "englandbeach.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etf.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eth-services.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evxp.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ewanto.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eyespecialistsofla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firecask.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fitcamp.fitness", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fixedtoday.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fjsb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freelance-webdesign.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fruxnux.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funtastic-basketball.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamerwelfare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gavingreer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getbootstrap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gitns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gitns.dev", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gitns.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gitns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gitns.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gitns.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gliagrumi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gmgard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "godofredo.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gometa.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gomods.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gopkg.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grandcafeatpark.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grosser.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guerra24.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gusli.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gwy15.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haakonbecker.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackerspace.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hardwarelog.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hardwarelogin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hauspie.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hausverwaltung-motsch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdview.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hellobee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hjdiaz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hlidani-tornado.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homestead-honey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hothub.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hughfitzgerald.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icepharmaceuticals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ideefactory.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "incontactmetjezelf.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inovigo.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inzichtmeditatie.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "islamqa.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "japanesque.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jarett-lee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jarrods.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jedatw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johnopdenakker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kasasaprotect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kfz.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kfzjeugd.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "khaotipthai.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kielux.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kirkintillochbc.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kitsuna.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuba-orlik.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kultur1.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuscu.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kutekeiki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kvhv-brussel.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lampco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lan-divy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lan-divy.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawportal.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lednavi.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legendwiki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightningseed.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "limehost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "link-man.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linkwater.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lordusa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lostproperty.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m-h-b.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maden.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mariejulien.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matrimonio.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matrimonios.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maximemichaud.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcsteve.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mettin.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meziblog.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miguel-platteel.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mileyweasel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minicampingshalom.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobincube.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mt-west.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "music-privilege.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mybsms.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mypharmjar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naut.ca", "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 }, { "name": "noussommesluniversite.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzt.capital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzt.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzt.dev", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzt.foundation", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzt.holdings", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzt.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzt.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzt.productions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzt.properties", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzt.services", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzt.team", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzt.technology", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzt.tools", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzt.ventures", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nztcap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nztcap.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nztcapital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nztcapital.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nztcapital.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nztfoundation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nztholdings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nztproperties.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nztservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzttechnology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzttools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzttools.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nztventures.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nztventures.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nztventures.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "observer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okkur.community", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okkur.dev", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okkur.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okkur.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okkur.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okkur.team", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okkurlabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oktave.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omaharoofpros.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omega-intranet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinedivorce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oorbellen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opensource.fund", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opensourcesoftware.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ops.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p-art.design", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pdtech.ltd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pfish.zone", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "physioteam-franz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pillowcast.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plastic2print.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pm.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ppissis.com.cy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prostoporno.zone", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychometrictests.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychometrischetests.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychotechnique.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pszinfo.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "publixphere.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pythonhosted.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "red-train.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rediazauthor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rekkur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rekkur.consulting", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rekkur.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rekkur.dev", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rekkur.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rekkur.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rekkur.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rekkur.solutions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rekkur.team", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rekkur.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rekkur.technology", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rekkursolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rekkurtechnology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "renut.com.np", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reposeed.dev", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reposeed.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resumic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resumic.dev", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resumic.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resumic.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resumic.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rimonhwang.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robinminto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rommelmark.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosakkreditatsiya-forum.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "routeto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rozar.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rtlspiele.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rumahpropertigratis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ryandewsbury.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salekaz.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schrok.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seadrive.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seetheprogress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seetheprogress.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seetheprogress.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seetheprogress.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seetheprogress.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sekkom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "self-signed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seonoco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sfera360.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shareasale-analytics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiftcrypto.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shortaudition.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shortaudition.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shortaudition.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shrsl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sindastra.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snelwegzen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "socialblaze.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soliten.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sonologic.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soundmoney.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soundmoney.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sourcecode.hosting", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speedliner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sponsor.software", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stankingma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stankingma.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "statelywork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sterz.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steviate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steviate.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stp-ip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stp-ip.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stp.dev", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stpip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stpip.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studiodelbenessere.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studiosuracidenunzio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunnyside-jazzclub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sustain.software", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sykorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syna.dev", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syna.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tac-performance.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tagstationen.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teddywayne.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teletaxe.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tenthirtyonepictures.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testspsicotecnicos.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tilellit.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toolsense.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trainingminds.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transmutatie.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trentinogenealogy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turalt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "txtd.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "txtdirect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "txtdirect.dev", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "txtdirect.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "txtdirect.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "txtdirect.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "txtdirect.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unibev.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "universellafredsdanser.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upgradeguru.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "userbase.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veritashomeschoolers.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinorossoconero.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viwsec.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voddinteriors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vugt.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "watersoul.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webauthnlogin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "widwap.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiki24.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wolfshoehle.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wp-webagentur.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--j1afcdm4f.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--tgstationen-x8a.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.cy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yrcc878.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zenmod.in.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zercutie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0cdn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "12345.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abemarx.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "achmazstore.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ad-notam.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ae86.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agari-mj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agilee.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aidaccess.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airfareshotels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akerboom.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akmatrix.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altinea.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "araqnid.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arest.web.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atmox.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baltimoreroofingservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basicports.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basicports.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basicports.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basicports.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bijou.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bim0s.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "binarypuzzle.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blinken.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blueyonder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bretti.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "by1u.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "byfare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c-14.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c7ra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cafe-musica.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "campona.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlospiga.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casgp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccatpracticetest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celestialenergies.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chumanskaya-uebersetzerin-russisch-englisch-deutsch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "churchill.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citakon.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudbreaker.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cluboc.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coinmotion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cophumouraustralia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cortex-development.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crossconnected.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danq.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darwinkel.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dashice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dctrl.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delikom.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dengg.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dennmart.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desmu.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dietpi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disableipv4.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dmclix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dotyk.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doyo.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "driveforartur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drivya.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drivya.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dsswise.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dtf.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dubrovnikfoodtours.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dynadns.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eckotech.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecotecelevator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elgoog.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "empost.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etheron.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evolution.codes", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fdp-alsdorf.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fichajes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "findinggenius.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "findolino.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fiosgenomics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flowscale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forcebasements.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fortebet.rw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fortebet.ug", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foundrehotels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freddythechick.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fucajz.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furworks.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gajda.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garagenet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geohashing.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "georgeslasaucisse.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gfgmmarketing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ghobcars.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ghobusers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "girljacket.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gresik.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gxm5.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hangar4.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harlan.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hco4.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heavycaliber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hxkvm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hxkvm.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hyb7.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imisto.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infojmp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inmusicfestival.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intalink.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irfs.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ispro-ng.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "j32b.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jan-bretschneider.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janbretschneider.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeffok.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jimautoservice.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jms8.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "josephalexander.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "journeyofmymothersson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jpilan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaggle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaik.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kawamura-inc.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kevincox.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kilkennyaccountingservices.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kirschgrafik.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klen.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kontist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kriyayoga.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laesisvefurinn.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lain.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lamppostpublishing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "latanadelpolpo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lucia-riemer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lunulanails.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malu.style", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martindales.ltd.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matildeferreira.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattbiscay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mbar.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metablog.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miap.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mimumimu.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobincube.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monshoppingcestcalais.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moparinsiders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moshiachtime.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mta-sts.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mta-sts.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mybizzmail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myid.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakamastudios.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nathancrank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "navigo-inc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "navigo.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "navigo.global", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nefthy.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netsyms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nice-autosurf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nonobstant.cafe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "npc.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nunoarruda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nutleyarchives.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oluchiedmundmusic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ombregialle.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orangesquirrelevents.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ortoemangiato.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p9d1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkcitycu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passedport.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passedport.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passedport.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peacefulrock.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "performancematters.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petscams.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pietron.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plzen-sadrokarton.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porthys.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "postern.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ppbi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prefabrik-ev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pretalx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prodottitipicidellatoscana.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "progtime.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "q1z.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "queensbotanical.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quest3.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radekmazar.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reiner-h.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reveal-sound.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robbievasquez.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rpora.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruhigehand.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruimoreira.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s5g8.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s6jl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sa-mp.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sauerland-rundflug.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schoenstatt-movement.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scott.cm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scouting-kontiki.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scoutingkontiki.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "searx.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siranap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "socstation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "southernforge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spiro.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spit.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "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": "startupswitzerland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steinerkovarik.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sthelen.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stileapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "survivebox.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "switchur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "t4gh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tamboa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taxi-meridian.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tcspartner.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tcuprs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techlearningcollective.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telecallsrl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecheese.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefabulouslifestyles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiandixing.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tilysthings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timesheetcomics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transparencynj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelsets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travishenning.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trojanherring.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tview.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ty0m.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uc4h.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unitedbusinessbank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uq1k.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ut5s.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utopique.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valentinog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vektorparts.ru", "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": "vultrhxl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wacken666.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wcally.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webviewcams.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wedeliverdavao.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whisper-net.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winserver.ne.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wkberg.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldaccord.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wozwebdesign.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xavio-design.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xford.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yj4p.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zakcutner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zango.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5e.tools", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adspu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ai2-jp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrewtaylor.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anex.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aniwatch.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arcza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ascar.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atec.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atelierjs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autonewsreview.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autostramites.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badnjar.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "besiktasmtsk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bimsynergistics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blanx.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bou.ke", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "btddd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "builds.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cafethevibes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codefaq.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coworkanywhere.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "criptofy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dastelefonbuch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalcarbide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disenowebakus.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eden.bz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "equityelevate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faithfulroad.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fitnhot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flatsurfers.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getstat.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gouplinkit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gumbo-millennium.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gumbo.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gununsesiaz.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackforgood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haixingyun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hersmartchoice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icap.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilovecomputering.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impresapulizie.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infinitybooksindia.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ip.dog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irenelove.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jackwarren.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jamiehansonyoga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jetular.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jetular.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johnex.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kandwliquor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kantoorboel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kesslerandsons.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kikoskia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kirina.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiweeagentur.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livingtohearsix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lumieredesoy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mallgastronomico.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malsignature.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melonhub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrbighungary.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neosys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newgle.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ngawa-avocat-paris.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nizozemsku.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noriskit.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "odxin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outrider.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p7jl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "picsastock.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "podd.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pspenvases.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quantrix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "r72w.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ravne.land", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redcapital.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regtify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rpguru.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schoutenseo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seismas1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spotifyfreetrial.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strategicpartnersmedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studentsfirstnb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technicalhelps.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theolodewijk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thesacreds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thorsten-schaefer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "totalityservices.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelgirlsclub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trenta.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wmi4.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worksindev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wwwhackeronecom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "x-way.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yigelangzi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yr.sa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "z2a4.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5000164.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5000164.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adfisicateca.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alifeadjacent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amp-logistics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrewmichaelsmith.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beverleycounselling.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blivvektor.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bogdanbiris.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brisbanecashforcars.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calibreapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carbuzz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dampferchef.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datenschutz-luebbecke.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datenschutz-recht-medizin.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datingonlinecheck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disciplescloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drenergysaverpdx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drenergysaverpnw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eg7.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "energysaveroregon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enquetebeteiligung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erudio-usluge.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finfleet.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flirtportalcheck24.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fratiicazanoi.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freeskateparks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fundacionfade.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "growinghumankindness.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hallighof.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hebamme-sabine.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hf51-domeinen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hitokoto.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hocoma.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hwholdsworth.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jiangshiart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kegan.lol", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lasittellecosmetiques.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loantillpaydaydelaware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logimap.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marekkorlak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michelangelofoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minirizhi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "narzedziownia.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ninsin-akachan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onetranslations.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oregonenergysaver.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patrycjamichera.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pilatesstation.co.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pradersystems.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "princetonradiationoncology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quiz.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "room362.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steelshop.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strefapi.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thehumanjoint.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thpatch.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tnes.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tonyandskye.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transport-gura-portitei.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "v.ps", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voicesofspirit.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "walker-foundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "washa.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "welmo.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arnaqueoufiable.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": "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 }, { "name": "br8.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brandtechdesign.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bugfender.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "candytip.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ceyhanmolla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codigojose.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coursehunter.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creadoc.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csszamotuly.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darrenlines.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ditdot.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drryanstanton.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": "employersupport.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enotovil.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fareinternational.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flightscarhire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fotonza.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fraserengineco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostingsvizzera.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoteldimorae.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelsfares.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i-volve.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infosactu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juancarlosllaque.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keemail.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klickinvite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laodongkynghi.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesmatinesdheres.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mahurivaishya.co.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "md-progressistes.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minuteflightdeals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mitarbeiterbefragungen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moneysmart.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrd-rc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n8solutions.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nanmu.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neurococi.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pavelich.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pc-master.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shaunallen.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strogov.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torwart-jugend.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "town-night.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tutamail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tutanota.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "used255.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-warrior.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webest.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ymy.zone", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "30for30podcasts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "90splease.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abi-kurs.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abilympics.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "addictedtotravel.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aktuelleprospekte.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpinedentalhealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amasea.yachts", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appbot.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aqlivia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arclookup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aviapic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aviapic.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aviapic.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aviapic.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aviapic.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aviapic.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axelr.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babyvillagegt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bachelorampel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baukebies.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beyondthepitch.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bingohalls.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitradius.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bo-rad.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "britofootball.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "byskafasi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caucasusandmercury.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ciginsurance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "communityaligned.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crushthelsatexam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crushthepmexam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptolocalatm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csdcareerday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cubocell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delivr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desertfiredesigns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "designtrc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devslash.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalgeek.social", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dosei.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dotya.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "een-eenvoudige-test-voor-de-maximum-lengte-van-een-nederlandse.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elitephysiotherapy.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emiliehouse.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "entryscape.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erico-hm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "familiebies.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feiromo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foundationmaintenance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "friedli.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fussballtransfers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galexlee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gofoodservice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gokazakhstan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gokyrgyzstan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gonepal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gotajikistan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goturkmenistan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gruener-salon-bochum.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gutterguardcharlotte.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hby.cx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heckmann.photos", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herogaming.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herold.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herold.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hobindesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holmesworkholding.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostathome.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hosuto.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoteldahu.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ienekolife.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imro.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insomniac.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interactiveliterature.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itsm.tools", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itworks.nyc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kebo.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kfoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kidsdj.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "killerwebsites.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kooky.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lammertbies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lammertbies.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laube-school.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lazownik.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leblancq.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lekkerleben.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesborgestv.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leticia.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libcrc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libfins.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libhttp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libpdf.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libscpi.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linocomm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linocomm.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linocomm.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linoplan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linoplan.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linoplan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linoplan.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lvfc.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailsupport.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manufacturingsupportgroup.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxley.yachts", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medcartoon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metasolutions.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mindbuild.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ministryofinternet.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moec.top", "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": "mtabriz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mychicken.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myfsb.bank", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "narec.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nawt.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "new10.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newway.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nintendoreporters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ohiobrewweek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onetrust.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opencache.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opussystems.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ourgame.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pepta.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pic2pat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pic2pat.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pictopat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pictopat.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinkplay.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pizzahut.co.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poynter.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psau.edu.sa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puhudefu.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qualitydns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quora.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rawfitco.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regaltheatre.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rocketdashboard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "russandol.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simple-test-to-demonstrate-the-maximum-length-of-a-domain-name.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simple-test-to-demonstrate-the-maximum-length-of-a-domain-name.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simple-test-to-demonstrate-the-maximum-length-of-a-domain-name.international", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplyfitperth.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplyuniforms.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sintas.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sleepig.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartsprouts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snatti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snowdrop.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spleis.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sqalogic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stickme.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuartcrawford.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swiftirc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tamronhallshow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tespent.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teutonia-grossenlueder.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teutonia08.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theboardroomsubi.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefastmode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thisismit.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timberjoineryperth.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinyhousebarat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "townforge.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trainingsecke.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelphotographycourse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "v.pn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vincehut.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visitationbvm.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vuelosabajoprecio.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vybavzahradu.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vyskocil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wc64.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-3.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "websec.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wsrn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "www.gov.scot", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhuji.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "200.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ac-booster.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acvan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "addictionsolutionsllc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agehotel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aircheapfare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aircheapfares.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aireuropeflights.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airfarefrom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airfarehonolulu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airfarehoteldeals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airfareorlando.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airfaresfrom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allamakee.k12.ia.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amritps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animalcrossingwiki.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anmelden.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apex.ac", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apexconsulting.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asantosdev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ascannes-non-officiel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astro4u.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autorai.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avogel.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avogel.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avogel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baytobayaircon.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betterworlded.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bibitbunga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "binary.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biodieselbr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bittimaatti.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bittiraha.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluxus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bolton-consulting.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brest-master.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brokerdecredite.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bune.city", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codehangar.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collective-incubator.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coremove.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "craftottawa.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creeksidebiblechurch.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyber-m.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyqual.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daidogei.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dampfbahn-leverkusen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dampfbahn-leverkusen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danzavila.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daveyconstructions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deja-lu.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demondms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denarium.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disketteetikette.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ehome.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elovip.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "endofevolution.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enriqueferreira.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enteratesoria.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epcomputacion.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epliar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "escolamais.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "falsesecurity.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fameslook.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feluck.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freepornhunt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freesexvideo.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamingph.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getvalidate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalpolarbear.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glowfic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gorgeouslyflawed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guardedbox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happyhumans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heg.ge", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heybyrdie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hofmannenhofmann.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "horizontalsystems.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hrkfamilylaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humanewolf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hvylya.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iegatpracticetest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infinityrecruitinggroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "innogames.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "integrishield.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iocorp.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itbrouwerij.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jacaranda-deutschland.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "japanchiropractic.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeanphilippe.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jewelleryoutlook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johncook.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "josephmarino.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jpvermogensregie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jsphys.org.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justinsinkula.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalk-shop.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kevansizemore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kodifirestick.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kodioso.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konata.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krishnendu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kseniya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kt-motors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kutvonen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lamper-design.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laperla-chemnitz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lnk.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithedenvale24-7.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lohkoketju.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loire-en-bateau.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luematecidos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lynnesbian.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madameblueimages.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mamboo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "materiel-grand-format.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meapbot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meapbot.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meapbot.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meapbot.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meepbot.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meepbot.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meepbot.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meharossii.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meineziege.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.co.cr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metalunion.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mironov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "momit.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mychildatschool.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nanaka.love", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netsphere.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netvpn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nightmarejoker2.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "norrisautomotiveinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okna.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panoramacambios.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parachute.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcbmodel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peacepiperanch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peakd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pect.com.pk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pentaquin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pentaquin.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pgmtechnologies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pigzilla.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planetmath.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planisware.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plgr.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plumz.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornxxxvideos.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prasos.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prestopizzas63.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychiatriepapezova.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purewaterguide.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reparation-traceur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rogarden.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rolandog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rotate4u.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rungstedhave.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scientia.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servis-azd.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexvideos.tel", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shinsandenki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shkolladigjitale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "short.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sideral.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sike.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silicateillusion.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sql-injection.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sql-injection.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sqli.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sqli.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sqlinjection.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sqlinjection.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stderr.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steempeak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stickertrade.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storiadellarte.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strobe.cool", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tarjetaspark.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teknikaldomain.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terovania.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testdevelocidad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thegetaway.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thehabitat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiny-house.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinyhousebarat.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traceur-france.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trolldi.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ultortech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unstoppable.money", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usleravnekrog.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valtherperron.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veterinanmnm.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veterinanmnm.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virginiedelmas.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vnsc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vpnemail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webwinkelkeur.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikiskripta.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wildcove.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wildsafety.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wonko-vs-trader.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xcspy.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xiarain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--c1aaulbdc.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--h1aarew7ct.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ya-stroynaya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ya-zdorova.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yaoge123.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourtests.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zahirdanzavila.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zavarkin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhdun.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhestokijavtor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zilla-sushi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zlarin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zlatanonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zlotyslawecin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zmeya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "znakomstva-2013.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "znakomstvablogs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zodiak.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zofzpcb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zogatest.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zolotie-ptichki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zona-bellepop.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zonatelevision.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zornica.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zoske.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zurmas-design.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zuss.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3rr0r.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3rr0r.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3rr0r.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a2censo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ajmara.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akademiaantykorupcyjna.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "almx.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babaei.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babaei.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bartavi.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beinteractive.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benjaminprevot.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bijlesbart.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brightsparks.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cabale.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caucus.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "claudia-halfter.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "claudiahalfter.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codefive.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "compagniecoupable.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creditshop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devdeb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dumax.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eccologic.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elona-wvw.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esperanto.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "facty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferreteriaferreiro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filmbasar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fortmatic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gapfa.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gartanien.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gjan.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "godmusicapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gotolinux.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graphimode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heat-ua.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herringadvancemachine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heywise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hillcountryoralsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holidays-info.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idealnastrona.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "japlin.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justsellmycar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "k3t.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "komehyo.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konzepttreu.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lapulgaflamenco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lendingmate.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesbonzoms.alwaysdata.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lidl.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ltdev.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madebythijmen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mddistributorsstore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mealpedant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meditateinolympia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.com.bo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.com.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.com.ec", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.com.gt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.com.hn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.com.ni", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.com.pa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.com.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.com.py", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.com.sv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.com.uy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.com.ve", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolivre.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercurycards.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "micah.soy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobilize.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nerdoftheherd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nesscitycatholic.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oriveda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ourcreolesoul.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pauct.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prostoporno.guru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qtv.ge", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "relaxti.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saltydogpaddle.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sawiday.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sawiday.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sawiday.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sawiday.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sawiday.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sawiday.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sawiday.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sawiday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sawiday.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sawiday.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schausteller.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schulferien.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "segdomedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sertaobom.eco.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplelogin.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplelogin.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplesite.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sreenadh.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tcmk-tomsk.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomasdrtina.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomphenix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsproesasac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upgrade.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "validius.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vulnerabilityscans.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wars.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weddingwire.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wedooper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "werkenbijsanitairwinkel.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "werkenbijsanitairwinkel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wuifan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wuifan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zbsj.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeromoment.marketing", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aaflalo.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andreae.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "austinbestdjs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avoinna24.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bailleux.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basllp.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berchtesgaden-hilft.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackbbwvideos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boticadiservicio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "botikadiservisio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "butlerdisposal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cariocabelos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "civil-works-sri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clevyrcares.com", "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": "connectedbynexus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drawguess.fun", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drone33.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emergenzaduepuntozero.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etindustries.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eyeshield-informatique.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faysalabdi.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flagipanstw.info.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flubio.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fox-zulu.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fulltextarchive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fusionauth.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fyllehack.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gethyas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "givemeaverse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gofobo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grast.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gripcoat.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guardedbox.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heleus.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hesbenergie.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hibrid-turf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homeostase.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "horstmanshof.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idstudio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juhanihakala.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jukkakivi.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jukkakivimaki.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klute.spdns.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koing.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lancea.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lechompenchaine.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightbluelearning.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lp177.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luxedentalfl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lvna.capital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lvnacapital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malariabehaviorsurvey.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mariouniversalis.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markkusilvennoinen.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matrix.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattshi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirumhongkong.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monorthopedagogue.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mphold.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrssclaus.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "munialajuela.go.cr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musicnotesroom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myriadlex.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myswimmingclub.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nejrecept.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newshour.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noatec.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omniballot.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omnicourt.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pedrolamas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philippehannes.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "platform-med.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playorigin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ponyar.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornhib.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornhun.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proficiodigital.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychologue-grenoble.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rueckgr.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rundh-audio.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarahjaneethan.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sascha-brockel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sebastian-bravo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serwis-telewizorow.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shawclan.id.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soilegustafsson.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "songlifty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soukka-seura.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speac.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "staroch.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stocktonengineering.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swanbitcoin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techiecomputers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thegatewaytoanewworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thijmen.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tulevaisuusdemarit.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unionvilleheating.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "validius.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veikkosimpanen.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wearetravellers.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wht.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiberg.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "88cakescorner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alphazure.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlaso.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "attoch.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audionpack.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baecker-know-how.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bcyw56.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blocked.icu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "braxtonehle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "changenow.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clariti-health.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "czechglaskralen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dagjetreinen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duoqichina.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebjork.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebooksinfocus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esajokinen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expanddigital.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "famousit.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flagipanstw.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gfmp.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "given2.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "given2.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "given2.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "given4.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guiaturisticanuevayork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hack.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "houseofaceonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "htikeagkyaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ifnet.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infomikulcice.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ingebroer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jfjtransport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jmap.support", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jub0bs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katapult-impuls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keysmedspa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koishi.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "korkortonline.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "majalmirasol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "me.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medinorte.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medklee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metro-detroit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milchweg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milliarden-liste.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mokujinken.tokyo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monicahq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtp-services.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "odo-pro.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "odzywianie.info.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pansino.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "photo-booth.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piraten-kleinbasel.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "posukovskaschola.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prisonerresource.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psv-herford-badminton.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quel-dj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raamattuopisto.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rallyekrumlov.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rmp-gebaeudedienste.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rsrnd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rundh.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s-geiser.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sharkeyscuba.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shawfamily.id.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sivizius.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smurffi.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sourmatt.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sro.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sros.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stackstartup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startup-stack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startup-stack.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startupstack.llc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startupstack.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startupstack.software", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startupstacktech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steggemachine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strandkorb-jentzsch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supercours.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taildb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "the-spellcaster.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebismarckmarathon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thekidszone.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thenational.academy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thestreet.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "triangela.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuxforums.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unitehelivy.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unplugstore.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unpoditalia.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upsilonsigmaphi.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vietnamtravelmart.com.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vigneshkumar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vilantice.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vk1fj.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "w3ctag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wego.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winfuture.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "witch-anastasia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xabifk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--43-6kc4be0fbz.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--okra.xn--6qq986b3xl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youbehero.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zesgoes.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zir-online.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4k3dyptt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abnobapetstore.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advaithbot.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akssma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allergento.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allpornvids.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amerimex.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apinat.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "archlinuxcn.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benjaminrancourt.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigambitions.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bjc.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boingo00.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bran.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brianum.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brianum.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chantuong.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chronotech.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clara.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clearstep.health", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clinicaeliana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codename-infinity.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coldecan.edu.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consul-coton.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cshe.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daken.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dang-designs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dantana.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derkach.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discord.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "distributedsystems.science", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domains.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donislawdev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ds-statistik.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ekdoseis.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elementalengine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elementalengine.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elementalengines.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elementalengines.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emil-reimann.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essenah.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "factorway.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "felixc.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferrodata.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filipstaffa.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forexnew.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fortawesome.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freepornovideos.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freepornvideos.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freepornxxxvids.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freexxxmovies.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fromm-projects.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furtodo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fxeuropa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "georg-ledermann.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goenea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grapheneengine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harrachovskyapartman.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdsexxx.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helloexit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heyitsfree.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotsexvids.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hsmithsmithfield.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iamconnected.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ingbusiness.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iptoasn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itraveller.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jewaedv.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joshfoley.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jpdb.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "judo2point0.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kristineskitchenblog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "layers.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livelovelaughlg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logwise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "media-valko.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michielbijland.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mickybottenberg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mig81.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modineaviation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mqbx.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mysexvids.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n8s.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nemesisenterprises.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nemsurvey.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nilosoft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nopaste.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nubium.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pannovate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pentekdograma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piercingnagykereskedes.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piercingpiac.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pirnhub.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixelsketch.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixend.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poenhub.xyz", "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": "previous.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raulmalea.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosewater.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saipeople.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schwartz.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shouohkai-dental.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": "starprime.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stillwell.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sylencegsm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tbun.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tfk-installatieservice.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topporn.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trineco.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trmgo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tryreason.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsu.re", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tubepornmovies.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ukpr.group", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unix.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vampiresdawn.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vandoornmiddenzeeland.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "videosporno.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wallnot.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wisdomgeek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wonderkind.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xgeni.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xxxfreepornclip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xxxpornohub.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yanhongming.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zdravypanelak.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeta.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zighinetto.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acina.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agentfirewall.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aipi.tel", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alieninvasion.fun", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antwire.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arcosdequejana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bekabazar.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bernhard-eicher.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigcorestintas.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bikemod.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boyo.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cakalnedobe.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ceifx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheto.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrissx.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coldjetconnect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cosmos-ink.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "currency-one.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darkovepredmety.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dayman.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "decrypt.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "designburners.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djfunkyju.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doodle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eamproperties.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebikemod.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eleonoramazzola.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emulefans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "entegrations.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "escogitasrls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etopa.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evertradeelectronics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fieldsgynroboticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "footmercato.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fotohiking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fotrino.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fowos.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freepron.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fungalforager.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "georgesand.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "growthagent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gulfvestors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "halogenos.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hydrocontrolsystems-janssenwaterproofing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igenuinebeauty.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internetowykantor.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jagar.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiwideo.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kk-gruppe.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knxstore.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leteckedarky.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liveanimations.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mastercareplus-demo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mastercareplus-staging.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medicalassistantadvice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medifit.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megainformatyk.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michael-simon.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minbrew.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mind-farma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtmedia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nelty.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nightdreamer.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nobs.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oligenesi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optimom.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orzechot.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paulus.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pianojockl.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "popka.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornoclips.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornomovies.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornomovieshd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powertop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reidostorrents.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roll.hockey", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rowingsa.asn.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rsc-cronenberg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sairadio.net.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "santimb.photos", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sebastien-meric.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "senfcall.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spinning-portugal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "szadeczky.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tardis.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamhybrid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamhybridforums.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terrafinanz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theangelgivingtree.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theruncibleraven.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tralios.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urbanwave.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "useon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usrspace.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uss-atlas.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vendorpedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vercel.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vercel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vercel.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vercel.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vercel.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weblead.vip", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weltverschwoerung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xxxvids.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xxxvids.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "your-fitness-coach.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zdrowezywienie.edu.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zombiemix.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0x1.ink", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5starcruises.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7in0.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "activiteschiens.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ae86zx.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agambition.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anacom.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andreapavone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animalarkvets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anip.icu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apicep.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "applemon.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "applemon.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "argon2.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azurefabric.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basicguitarlessons.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beautybox.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betterteam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biblia.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitewinggames.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brainit.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c-3po.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calu.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cantor.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carolineovercash.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cassies.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christmasinelmhurst.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christopher-wright.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collegemate.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "contrastchecker.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crc32.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crowdstack.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberon.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cynthiacherry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "die.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dominik-steiner.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eder-steiner.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "encrypted.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epiphaniusmacar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esignprod.herokuapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expobeds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fantasyempires.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fekepp.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fenn.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhv-waldhausen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "financedraft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "financeguest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "financemain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "financepre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "financestead.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "financetwenty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "financewhile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freddyxvasquez.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frederickearlstein.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freshmans-pizza.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garrowdigitalmedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gasparesganga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geo-portale.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getts.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gole.ms", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graphpaper.studio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "habitiss.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hails.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hcfoodpantry.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helendoron.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hof-imbiss-lieske.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hushbabysleep.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iksi.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immomydesk.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ineztheminiatureelephant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infocrypto.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itbog.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jayveel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keniasfamilychildcare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kindredcode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koch-wro.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kosmetykifm.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kristoffer.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "le-marais.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lenguajecoloquial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luje.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mairiedemoncelsurseille.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mamohe.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manoha-proservices.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masaloku.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mastercareplus-uat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morespacestorage.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musicbox.party", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mylfca.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": "nrbpublishing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nuitec.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olatiferreira.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "overcached.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palant.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perkilo.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pfp.works", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porntop100.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornvidsfree.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornxxnxx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quietapple.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rgfundraising.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": "schwimmschule-kleine-fische.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "setin.srl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sha512.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simaogv.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slugify.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steiner-dominik.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steiner.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sticky.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strangeelectricdreams.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swap.ly", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sysadvisors.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teners.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timecaptis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuinenvermeiren.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tyr0wl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uzidesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vaartjesboten.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "violettecleaning.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virtual-webcam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volreinsistemas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voxengo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warszawa-pranie-dywanow.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wineforhelp.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woodfarm2020.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yspertal.party", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zivimexico.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "9gag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aanyasri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acemadeira.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "africansafaris.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airtrolinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ambulanceplus.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "applebee1558.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ardania.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asg-egy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atthehelmins.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bellevueduilawyers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bravoasociados.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cattery.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cavistenancy.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ceafinney.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chaos-darmstadt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "climatecrafters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collalloc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collerosso.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "computingaustralia.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danwillenberg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidodehnal.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ddays2008.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnsvrfy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnsvrfy.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnsvrfy.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnsvrfy.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domreg.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drogariasnovafarma.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drsejf.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dynamicsdays.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elalmibar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eventticketscenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everettduiattorneys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "f3r.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "femcompany.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flugplatzmanager.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frahub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "froh.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geekyboi.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glitterblast.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gotgeeks.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hno-norderstedt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hystats.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imediato.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intsys.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jamstallt.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "just-bees.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karbox.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinsei.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "languageatplay.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legterm.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lelux.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lojasmary.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luje.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mentoringauchan.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "misol.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "missycraindance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mitsov.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mitsubishielectric-rce.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modicollege.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mooncharmshop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nerdsin.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noblesmart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nuriaamat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "objectifs-fitness.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oblitsov.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ofasoft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olympiaduilawyers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paparazzo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partisaani.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "persiennexperten.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pewresearch.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "picordi.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piranja-cola.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixeluser.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pohoron.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pristinepotty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privacyend.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proficio.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pulley.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pvv-vermietung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rate.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "refrigeratorrepair-austin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rexcutty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rileystar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosound.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s3lph.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sammichscripts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seattleduiattorneys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starrace.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoomstichting.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoomstichting.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoomstichting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoomstichting.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoomstichting.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoomstichting.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoomstichting.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoomstichting.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoomtreinhuren.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoomtreinreizen.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoomtreinreizen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoomtreinreizen.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoomtreinreizen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoomtreinreizen.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stratik.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suiteassured.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tacoma-dui-attorneys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theconversation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tietotori.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tlroadmap.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "txferretrescue.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ufone.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ukimmigration.law", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usacarry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uyz.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vaat.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinaygarg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vvg-vermietung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wagn3r.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woodcock.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woolyss.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wuki.li", "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": "absurdopedia.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aechelon.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afive.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aim.org.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ameri.capital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anblife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antidopamine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arc.run", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "argovpn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astellaria.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berjou.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blueparrotpainting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bookworld.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "builtinsf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celebrate-creativity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cgplumbing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "core.md", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "covidlive.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dan124.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daxrunbase.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dexign.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diaspordc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnspropagation.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eg7.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eladalfassa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elimidrol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "felixgerschau.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstbaptistchurchofchrist.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flowcrypt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fortcommunity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freehdporn.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freehqporno.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garage.click", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gatehub.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gbhem.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gergoladi.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gudbrand.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostingdiario.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imanageproducts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imfacademy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internetstones.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kap-kirche.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kescher.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kutalek.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lgerman.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markocloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matega.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mclanexpress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikkel.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mlada-moda.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mlpvcdn.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msoida.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mutsumikai8989.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "packservice.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pagbitcoin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porkbun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "press-presse.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "procode.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "projectalias.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qrlab.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiosimba.ug", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "renaudmuller.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safiosolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "santehnik-home.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saudiglasses.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scanmy.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "screenzy.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "segmentify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shipbuddies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sme-gmbh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snatertlc.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoom-stichting.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taibachicken.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tecnomagazine.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timqueen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomacino.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trifence.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turismogdl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urge55.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vennprime.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeitgitter.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "123-d.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3ecpa.com.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3ecpa.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3ecpa.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adventistai.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alamanceconstruction.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "albourne.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apfm.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armourroofinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arnamur.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azimech.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babyshopsupport.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bbqs-algarve.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bocciatitanium.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brasilmedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bridge-to-knowledge.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bss-systems.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bss.com.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bss.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "byll.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calzaturesira.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casamentos.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celulares.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centrosocialferrel.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cirasync.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coloradoseodesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "completecareair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corpomotriztokio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "createcode.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "curseus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielleskosky.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dbradley771.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demaison.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denverilluminations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dievozodis.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitale-oekonomie.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "displayrd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dogwoodceramics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dominicself.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dominicself.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doranobi-fansub.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "earthpoints.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ejcabinets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elbiaadmin.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enginytech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "extrafrei.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fipackaging.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flytrap.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foguest.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forwardemail.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freepornomovies.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freesexvidz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frilima.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gbusercontent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getveer.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glk.academy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goingawesomeplaces.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gradedblue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "h10s.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "henrybrown0.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internalfb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itrezzo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobs.schwarz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "julioteixeira.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kojiishikawa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krilotek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lizteacher.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malaysiabrands.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moviles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mywoodbridgedentist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nesheims.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nibbler.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nick-black.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nordcheckout.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nordesttrasporti.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notcurses.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "o5.vc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "odabilocal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "odensc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ok.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orlandooutdoor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pdpa.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "politicaprivacidade.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ptcdogpark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qclean.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qr0.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radechefonne.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redcross.com.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ritoner.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rockymountaininsurancecenter.com", "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": "scif.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siika.solutions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "singaporebrand.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smtchahal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "statefunddirect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stealth.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuudium.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sveikas.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swoop-qa.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syncgal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tavoseimai.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tavsiyeforumu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tenshokudo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tenshokufair.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terraneesens.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theangelgivingtree.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theangelgivingtree.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theangelgivingtree.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thedoc.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefitcareerist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "therenderingmachine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toph.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tricountyheatingcooling.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsacareer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tutima.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "universdejeff.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "updoze.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vincexpertconsulting.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visionwow.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vuoto.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wapplerbrewing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weddingwire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wisehome.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wokfilms.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wwads.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xps-auto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xps3dp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "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": "zamtech.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zenspace.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1001reasonstolearnspanish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "186526.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3degreedesign.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niu668.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "8bitsafe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aceofdiamondspainting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atk-huolto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aunto.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autotras.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auxessenceselfiques.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benmedia.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bowlidex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "breffa.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bricksandmotor.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bryantluk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buchangroupinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burmeister-gmbh.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cailoli.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdseditora.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clinicadentalayomunoz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coffeeciel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coffeeciel.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "compare-energie.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "computerscience.guide", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyklistika24.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalsearchlab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "documentnode.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "envirotecstructures.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erogen.su", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "famlefeber.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "farb-tabelle.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flashcardsmobile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gentlent.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "github.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graffitinetwerk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdevent.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ian-barker.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iblog.pk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infcloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inshared.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itsoft.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kabuki-inc.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kardjali.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kedero.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kopieid.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lazzzy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lefcoaching.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liisauusitaloarola.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lwis.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mantalak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markentier.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadopago.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadopago.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadopago.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadopago.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadopago.com.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadopago.com.uy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadopago.com.ve", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "montagetravel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mostfamousbirthdays.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrmn.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myfxbook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ncksrv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ncksrv.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ncksrv.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ncksrv.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ndev.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neo1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netdisk.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niinaratsula.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nostoautomaatti.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nunoprospero.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "officecode.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opil.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outerface.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phv-bw.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piszmak.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixelmonworld.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pravlife.ru", "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": "ranters.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdmc.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "readydedis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realtechreviews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recipekensaku.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regionaalenergieloket.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remotish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rexeroofing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rezni.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s-mall.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sapporo-asaichi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sauve-tes-euros.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "savonsuuntaporaus.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "share2act-dev.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "share2act-test.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shirro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyarch.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smileback.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sodermans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "specificenergy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sugarondemand.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sugaropencloud.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sugaropencloud.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teleyal.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "temporalmotivation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terryburton.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "the-burtons.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theunleashedpet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thinxtream.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tianbo1088.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tianbo1998.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topspani.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uhuc.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vcz.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verzekerdbijhema.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viilup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villekautto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikalin.ski", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zehka.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0x3a.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acidoascorbico.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adenopatia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aksot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alanbleiweiss.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alanina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alianet.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amdrumors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antoni.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asana.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asana.plus", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asylinfo.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bajarjuegos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bandaumnikov.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biologo.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitbroker.exchange", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackhat.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blogtechnologiczny.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bodas.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boehm.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsmsl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bss.solutions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "budofjoy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buscalotodo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c2athletics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c3stream.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cancersintomas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checkrz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chesstempo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ciclodekrebs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ciclodelcarbono.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ciclohidrologico.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clarkhowell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudplan.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cmrconstructions.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cms-world.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coenzima.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "condictor.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "correo.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cosmic-relations.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cpucheu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crashbolsa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberskyline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deathcult.fun", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deportes.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "directmailctr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discordextremelist.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamytheatre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dupuis.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eisei-iinkai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eosinofilos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etf2l.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "femiwiki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fleeb.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fprinnovaciones.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futbito.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garrow.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geekynutritionist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getscif.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gordonbeeming.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gruveo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hellopowerserg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hestegrovvaren.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huesers.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inoreader.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iox.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jloh.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joomladeveloper.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kathrin-maren-enders.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "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": "kreuzbergflieger.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "letriolet-tignes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "littlefingersindia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lolifamily.js.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lukaskollmer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lumien.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marcillacetfils.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mariages.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martinschulze.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mathiasheise.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matrimonio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattmorrissound.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "millennium-thisiswhoweare.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miriamgamburd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motolinesupply.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msngr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myload.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mytransmissionexperts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nekochan.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nya.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obs.plus", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onpaws.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "open-fixture-library.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osteopathe-voisine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paketverfolgung.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perved.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pfarrhaus-mon.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornfreesites.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porthos.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powerscif.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powerserg.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powersergfeds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pozitone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poziworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pradmin.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prestatyn-scala.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "printwasteminimizer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pujasharma.associates", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "readyscif.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "readysetscif.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regalador.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richfieldsean.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roishopper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roveridx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "russell-tech.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safefreepornsites.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safescif.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safetydrivessuccess.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "santandertrade.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarahjaneredmond.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saxobroko.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scifplus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scifsafe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scorb.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scroll-to-top-button.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slabstage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smltour.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solaxfaq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solviq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportspassbremen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storage-base.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuartparsons.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuudium.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svseglobal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tenken1010.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thelaurelchiropractor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinmarin.org", "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": "useworkshop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vietnamhairs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinyl-digital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vrallart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warrenhousevets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wdesk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whiskey.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whiskey.money", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whisky.money", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whiskymy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whiskyshop.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whiskyshop.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woodwicker.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--hsers-kva.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yarowork.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "9to5linux.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abhijitvalluri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anitalk.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audiomedica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bdsmcontrol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betterboards.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bighorn.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bintube.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c7n.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chacoonline.com.py", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chacraexperimental.com.py", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cleverdarts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clevyrhub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "code.golf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colchesterglobal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coop.com.py", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crrapi.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cuhawaii.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datadorf.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derguns.town", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diennobi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donewhen.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dropsite.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ectpro.co.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elad.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricbeast.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eslove.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evadi.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everydaypower.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eye-move.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feehla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "findeth.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fleischkaes.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flinny.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foreverbreak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forevertoday.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frigochaco.com.py", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gba.ge", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genghan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gentlent.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gentlent.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gentlentgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gharbala.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": "gti.cx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelfloridachaco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igloopreview.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jcelectronics.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobsoid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jocata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jsg.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jsjfact.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "junshinkai.ed.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalpavriksh.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinderosteopathie-osteopathie.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kindredcode.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kindredcode.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kkc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konflikthaus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kra2laiz.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kryptoforce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logopaedie-sandkrug.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lowcarbspark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lucidea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magikbyte.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malcathatochen.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mapuut.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mastercareplus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metropole.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mineralnibani.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musttest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musttest.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musttest.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musttest.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natalia-shablo.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natwest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ndaal.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ortanatech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pamiers-citoyenne.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pekcazip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poezja.art", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "problempaws.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "propertyupdate.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prostoporno.fun", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qwrk.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "railsideworks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rainbowbrains.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recycledinorsett.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recycledinorsett.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remoteroom.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riosoil.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riosoil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riosoils.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riosoils.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rivalsa.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sawiday.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sawiday.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sccoaching.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scott.st", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shopforeverproducts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyblond.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skylightipv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solutionmotsfleches.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spjaet.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steinmetz.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suerteloteria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tagat.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefarleys.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "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": "us-igloopreview.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verygoodwebsite.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vokabl.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wbookcompany.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wisersp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wordpress-szakerto.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpg-verwaltungen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "writtenandrecorded.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yangrq.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yinyang.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youran.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ziad87.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "99laptops.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutyou.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adutoras.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agence-initiale.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aklagare.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "americanpop.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apsb.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arabakiralama.name.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artigoagency.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artsautomotive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "attcleaning.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avogel-company.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avogel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avogel.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avogel.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avogel.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avogel.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "banhphongtomquangtran.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "banmapvn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bartholf.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bgm.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bjarno.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casanovafishtacos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casavlas.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cattsgym.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cbdtelegram.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccnadesdecero.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheekboss.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chick-goo-ewe-farm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chronocarpe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cmtportal.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cntraveller.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collateral360.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colorfulcloud.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cpgiiaragon.es", "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": "cultrixdigital.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "currentbitcoin.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digimoncard.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eldiedesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essentialoils.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evolucionestudios.com.bo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ezinternet.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "factsvision.sr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fatvalley.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fbthirdpartypixel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fbwat.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feitam.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fetish-x.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filokiralama.name.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fixverkaufen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forklift.name.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaytubec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gizmodo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glamourmagazine.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gq-magazine.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gutterbus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "h2cclipboard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hacktivitycon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hardies.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthbrochures.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostelxaxid.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igloocommunities.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igloodigitalworkplace.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igloodigitalworkplace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igloodigitalworkplaces.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igloopartnerportal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imawasn-consulting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impresadipulizia.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infotectsecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insidetheigloo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "japaneseacupuncture.london", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jarno.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeneratorkiralama.name.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jkuu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johngreatwood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kazumi-clinic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "larsi.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "latestbitcoinnews.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laughingloon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawzava.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lloydrogerspencer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manchestertechservices.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "misterboddy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkws.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moderndeck.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakliye.name.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nihon-rosoku.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nilpointer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onechronos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partsbox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partsbox.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "payrollhr.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rad2share.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rase.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ravron.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rc21x.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redraven.studio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rentacar.name.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resolvo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rhysre.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samanexports.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "segurancaresidencialbh.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shinice.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skovbosburgerblog.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sound-recording.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "staydryohio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taiwan-kitchen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teammojo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toolip.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uniforcele.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ut-jobs.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "velocitycu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vfxstudy.com", "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": "vogue.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vuldb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webdevoo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whaller.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wigwam.design", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wired.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wurzelkanal.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xosh.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acytec.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akrilikhavuz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aless.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amsconnectapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asanuma-clinic.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azaria.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestfornutrition.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blitzpaintball.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bricks4kidzelearn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsrueti.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bst-brandschutz.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bzhserv.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdkpatterns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clickrising.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dafunda.com", "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": "defaultisafault.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doencadobeijo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dogecoinnews.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domainproactive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edisonstreet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enfermedaddelbeso.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epitelial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "espectrometria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethereumnews.best", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethereumnews.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etyka.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "facebookmail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fbwifi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fenotipo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gabe.download", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ganglioslinfaticos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gasometria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getpet.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gkepm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gluecksmomente.boutique", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gonadotropina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gpwmd-portal.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grandepresion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "granfutbol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hatsukoi-seikotsu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haus-momo.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hbsvzos.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heroxin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hirosehp.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imin.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "industrialcalibration.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infosec.mv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intelligentrics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internetmarketingprofitscenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-actual.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itrendbuzz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joychetry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justforschools.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justgamblers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karasevm.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kneerux.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kreatywni.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krugernationalpark.org.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kundenvertrag.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladedu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lavarex.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lecercleguimard.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legato.marketing", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lilousportswear.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linfadenopatia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lorengraff.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lushersolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lutify.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maduracion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magicline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magraebela.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matglobal.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matpools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mbr.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcdeed.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mempool.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meperidina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "messengerwebdesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minhng99.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msfishingcharter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mswdtemplate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mujlinux.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myconnection.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mypathologos.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mysidekick.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "namsbaekur.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neovapo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noradrenalina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nutristories.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nxlogis.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okuguchihifuka-clinic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onby.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oog-osaka.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ornitina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oxalato.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pacificaent.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "personlookup.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pha.pub", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "postermywall.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": "pylad.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regie-sc.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rte.host", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safalfasalonline.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "santhoshveer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanweb.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sars-cov-2.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secrecion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendai-himawari.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sethcorker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sintomasdocancer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvio.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartandcom.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solbjer.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spamty.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stellar.com.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stockmarkettoday.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sumit.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tamilsms.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tanneradvisorysolutions.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tbq-s.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tdeaqua.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tendiestown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timdemisch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tokinokakehashi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toumeitech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transaminasas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tropikdeniz.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trxnews.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsiolakisfurs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tweaktownforum.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": "virusdelebola.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voltainsite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webhostingblackfriday.deals", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "website.builders", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wedshoots.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wimmer-software.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wimmer-software.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wimmersoftware.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wimmersoftware.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wolvesbanemanor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpspeedmatters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpuse.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xrpscan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zinglix.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zoflora.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2sendai.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adamabernathy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akbam.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alimeta.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anderstornkvist.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asianbusinesscards.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlanticcitycasino.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autobazarcentrum.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benleb.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestcreditcards.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestcreditcards.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestcreditcards.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bierbaumer.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoin-casino.monster", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoincasino.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinfaucet.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinnews.guru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinnews.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinprice.buzz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinprice.international", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinprice.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinprice.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bubu1.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carberra.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carberra.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubgalileo.com.ec", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "contato.vip", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberschmiede.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberschmiede.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberschmiede.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dajjal.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deluxeblogtips.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dispur.nic.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dobavki.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethereumnews.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eyelash-mc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faieurope.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forexcomreview.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freepatternsarea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gasmar.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gpspolis.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gretathemes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gslabnet.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthbank.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herkel.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icze4r.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icze4r.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icze4r.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ideice.gob.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impresapulizie.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inakasoftware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interactivebrokersreview.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intergermania.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irr59.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iswag.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jacopomolina.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jrock.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "khalidalnajjar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kienviethung.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiseimarriage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legna.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lindazi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maximbaz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mazury-invest.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medcentr.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metabox.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikemcgeephotography.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moneyformybeer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mr-a.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mysticmedia.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neocharge.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nk-vision.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nkontur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "one-clue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "overcasthq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ringlightstudios.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ripplenews.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ripplenews.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ripplenews.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ripplenews.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ripplenews.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosdpk.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royaltyexchange.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rydeify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scindustries.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sei-yu.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendaimori.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stad.gent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steamid.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tastyworksreview.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teknorix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thesimons.family", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiempolibre.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timmermansadministratie.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torsten-werner.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tronnews.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tronnews.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tronnews.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tronnews.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uniekglas.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upstairs.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verzekerjebeter.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vos.directory", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warezbook.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webmandat.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webullreview.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wings.com.pk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wo25.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpautolistings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpslimseo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ziggletech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zpider.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "admindaily.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advania.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afishablogs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexandrevicente.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anihonetwallpaper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artexhibition.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axisdesignarchitects.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axisdesignarchitects.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bathrobes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beaconfed.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "begin-motorcycling.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beliishko.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beliyo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benoitchantre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestnetentcasino.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billbuddy.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bmm.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brauer-augenoptik.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsa-dom.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buildingmaterials.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "builtingym.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyasheep.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catcoxx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cathcartconsulting.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cleanclearwater.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloud-hair.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "correcthorse.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "courseorbit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crochetkim.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "d-tousei.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davmimer-mercerie.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "decorpol-renovation.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demxausa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalcrisis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalimpactlab.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalphoto.group", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalphoto.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dneprovski.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dolys.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "driveral.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drshadankabiri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drunkcalc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dsn-k.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dumpper.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dumpper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dunedot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elektroprom.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "empresa365.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erboristeria.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "europeancuisine.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exotictravel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabil.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "factoryalimentos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashion-swimwear.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fifemedicalgroup.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fire-places.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fl.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "florianbouchet.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fureais.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galaksidot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gallery-kaze.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gas-boilers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gate.sc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gimnazija-skofjaloka.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldentech.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "govnosite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greenhous-technology.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gservera.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "h-var.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hab.dynu.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hairsalon-wish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "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": "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": "internetbloger.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "invitescafe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iproductrepair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isthatarabic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isthisarabic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itero.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "j-maxton.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jackandrascals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jenkinsry.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jpcorriganlaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jscsshtml.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kajirakuda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaminoweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koj.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kyle-s.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "law-zur.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lindogdahl.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marcenariaembh.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meigetsuen1980.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mejofi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mejofi.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mejofi.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mejofi.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mejofi.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mermakov.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meteonederbetuwe.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minimalistmenu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miyagi-ctr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miyagi-r.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobiler-handel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "momi-chura.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mori-cdc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mssa.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakagawa-d.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakagawa-s.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oasisbodycare.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oooh.events", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paketwisataliburan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perlina.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piavonpadberg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pilot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plixer.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privacysvcs.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pronto-intervento-fognature.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pvideo.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quichost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quiq.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raymondha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recolic.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ridegravel.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sardegnarifiuti.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "segurdatacr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendai-cdc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendai-ctr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendai-rc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendai-sougou.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendai-works.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shooba.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shunmei-hari.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skreutz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snazel.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snazel.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sociologyk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "specialtyrigging.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stewpolley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storin.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stratreg.com", "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": "tafusu-support.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "team-toranomon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobyx.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tohoku-fukushi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toolsu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tousei.tokyo.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trasatsatelital.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twilo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uesc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uwat.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visafruit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wi-wi.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wine.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wk.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "x-embed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yukieda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0xword.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "10media.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advokati-ceva.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amilesportes.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arihunt.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asiafood-curator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlaswu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atris-qa.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "awsl.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basic.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bastelstu.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bbrigittae.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bind.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bnkconsulting.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bojanowskiszkolka.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bridestarco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bugreader.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carloscar.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carloscar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carloscar.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casaasia.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccwebdevelopment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celseven.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clevyr.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clevyr.store", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clevyrcreative.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clevyrvr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudstoragecompare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cook-maestro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cpro.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "craphound.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "currenthaus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desinfectantemanos.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dg1-test.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doener-curator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dogvolution.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dontenedor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drnjewels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecampusontario.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electrodomesticosmiro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "engagewell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erinmyers.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eyesee.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fdimmo24.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feek.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fidelitysound.es", "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": "fogu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foundationrepairasheville.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "free-barcode-generator.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gardencentreshopping.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "generatorkodowkreskowych.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genom.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getpaidtocode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getpaidtodesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getpaidtodev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getprohealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gimbal.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gnu.style", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grasp24.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guessmatch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guineapig101.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helioring.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoken-okazaki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howtodesignwebsite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igranit.md", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilasoft.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imperialfenceinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "integration-mouvements-oculaires.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iot-alliances.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jameslahey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jehende.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jxs.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "k-matsudaclinic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaizoku-dmc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karelvanhecke.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinesiologikerteminde.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinesiologiodense.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinesiologiskolen-syd.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinesiologiuddannelsen.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knitting.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kodama-dorayaki.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lajornadafilipina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ligare-fp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lobbes.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "long-journey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matsushima-kosodate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediskin.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minibus-service.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirrorwood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mizukoshika.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modellbahnshop.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "munakata-cl.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musikhaus-korn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myers.house", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nils.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notisecit.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okubo-shika.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openbayes.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paga.red", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paidtocode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paidtodesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paidtodev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pepwaterproofingllc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pikker.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pizza-curator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pluralistic.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porwal.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powerball.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pressfreedomtracker.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "preziti.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prog.olsztyn.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prog24.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "programmes-neufs-corse.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychomotricien-la-rochelle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purefoot.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quintacbls.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rackoon.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "repaxan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ritus.md", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "romankozak.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rslcaresa.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rwbstuff.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safehouse.zone", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salon-de-patchouli.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salon-largo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "satramana.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendai-cc.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shpil.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simdex.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smarthrms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snack-online.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sndcdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soegi-haru.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sona.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sparanoid.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ssa.co.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ssslgaragedoors.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steiners.party", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syok.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "takano-recruit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "takano-takuhai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "takanogroup.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talknetwork.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tapetenresonanz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamsass.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theloop.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tripguide.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tymoch.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uebersetzungscenter.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unric.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vanwort.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vaxbook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vimoksa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "w3squad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--grnstrm-r1ae.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yu-dkc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "08000113.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "8796.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acchan-fun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adib.family", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advaith.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alfawedding.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amilaresort.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apogaea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arstudentloanhelp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atris.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autos-mertens.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basisonline.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basisonlinefiles.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beko.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brockwayministorage.com", "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": "carolinegirvan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cendis.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cha-ta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheap-airtickets.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chromarea.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cjfinance.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cjimmobilier.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cornerstonenorthwest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "critterculture.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dabhand.studio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daofficers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dartnallministorage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dg-1.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dg1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dg1.services", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digpubdev.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digpubprd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digpubqa.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dolceuvita.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dr-kissler.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebisee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eduson.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erpsolutionsmart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "escuelitasansebastian.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "federico.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fewo-wildrosenpfad.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "generalinsuranceagencies.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gesundimmund.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gimnazijapg.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grancordobahoy.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grundig.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hcsoffshore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heysora.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "id5-sync.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "illubel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intellektuaalomand.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inversegravity.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iv-vr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jiji.com.et", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joy-ride.yokohama", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kasvall.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koncertbooking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lakestreetministorage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laparoscopyhospital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lu2343.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magsdata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matthewburket.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mepc.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metron.mv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meydan.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mite3.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notisec.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obrasereformasbh.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ontariostorage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paddy.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "permajackstlouis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pimastoneaz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plast.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rebeccawilson.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rhysperry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robinsonphotos.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rutar.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saltrecovery.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scatgirls.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scavalentenx.duckdns.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schwedischezahnaerztin.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shef.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sheltonvirtual.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyra.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solidnet.software", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speakermatch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stefamedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stpioparish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swoop.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tailwindapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teachercall.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tentacle.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tianbo1988.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tigernero.duckdns.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tofuixi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toyouiv.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trimental.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turlewicz.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vov.furniture", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "watchtogether.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--eglujemy-23b.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--schwedischezahnrztin-pzb.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yogahome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youiv.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youivh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zegluje.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4nikola.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "8duhu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abc-kinderbetreuung.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agateh.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agentpoint.website", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agro-dom.solutions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akp.photos", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arca.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arthurlewis.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betwinner.cm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burnimage.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bxin.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clevyr.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clevyr.careers", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clevyr.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clevyr.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clevyr.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clevyr.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clevyr.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clevyrapps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clevyrgames.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clevyrhosting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clevyrstudios.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubsuccessjapan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cofinco.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coggin.church", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coldfusion.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "contributopia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cvsmash.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dawidpotocki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "de-google-ify.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "degooglisons-internet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "degooglisons-internet.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "degooglisons-internet.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "degooglisons.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "degooglisonsinternet.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "degooglize.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delpilarrungue.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diebasis-partei.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dr-maike-juergens.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dunneworthy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elektromet.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elektromet.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "empowernation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "extraspaces.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferrarichat.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flagcdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forcemasonry.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forcemasonryinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "formulaveevictoria.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frama.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frama.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frama.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framabag.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framabee.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framabin.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framablog.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framaboard.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framabook.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framabookin.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framacalc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framacarte.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framaclic.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framacolibri.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framadate.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framadrive.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framadrop.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framadvd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framaform.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framaforms.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framagames.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framagenda.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framakey.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framalab.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framalang.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framalistes.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framandroid.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framanews.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framanotes.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framapad.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framapic.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framaslides.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framasoft.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framastart.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framastats.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framastory.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framatalk.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framavectoriel.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framavox.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framazic.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framemo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genesisgold.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "get-x-web-link2.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guiaturismovallarta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huit.re", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huohu-sports.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ignite.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imdb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inlink.ltd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interwebz.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "istekparcam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "its-em.ma", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeanmichelaudet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joinmobilizon.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joinpeertube.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jumbo-air.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaliocommerce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "l4s.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lily.flowers", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lisahutson.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maiscuidar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milr.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkboynton.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mytribus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oeno.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omnisky.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlyfans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outdoorlearningmap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pilatesavenue.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porno-geschichten.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quarep.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiantwonder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rainierpros.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rarlab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recupero.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "restauranthugo.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ricettesemplicieveloci.altervista.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "risecomedy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saludakeuring.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyterraathome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyterrawellness.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steelfxpatinas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stonecutgods.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studio-impress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "submeet.vet", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superfaktura.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superfastpress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tebodentalgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tebodentistryatlanta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tebodentistryforkids.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tech3araby.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thegolden.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theunbox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thewebcully.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tontonroger.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trouvons.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuckmeintebo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turkmen.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turnbacktogod.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ungooglize.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unicintas.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unimeias.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unreal.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vigo-select.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viktorovi.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visitorsguide.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volcano.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "win-rar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workatclever.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xion.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xvpn.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adalite-staging-testnet.herokuapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adalite.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affittibreviliguria.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayltoninacio.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bebaspedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bensjamtracks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinissafe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bramptonscrapcarremoval.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brandhout-b-tree.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brasilianskbikini.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cemcerkez.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chatons.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cintamanilingerie.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clevyr.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "connorlim.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "courttranscriptontario.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "czeh.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "d-ku.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daniellecavazos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "decorsolucionesgraficas.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dontasktoask.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamsolution.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecomuuu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "encrypt.my.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethanyoo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everly.market", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "familyclinicstl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferienwohnunglanger.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fpsclasico.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "friendsofoldstthomas.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fundacjamatkiewy.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamedaim.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garbarinocatalogo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ghbtns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "givery.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "global.my.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldenshiny.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goodhotel.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grenlan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helloo.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helpnet.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hikka.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "historiaeculturaguarani.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "honigconte.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hospitalcmq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "issuerconsulting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jan-melcher.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jasoncoopermd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jasonhardin.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jfhr.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "junkcarboys.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juvenile-studios.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karand.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lincolnbrokerage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "live-z-rejstejna.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livezrejstejna.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lynkmi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marclange.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martin-prell.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mau.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mau.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mau.photos", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maubot.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "messengerupdate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meyateks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modsecurity.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myhealthcheckup.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myhealthcheckup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mysbaccoach.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mywrecklawyer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mzademiryolu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "necretro.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nk1.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olamisys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "open.my.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osobniterapeutka.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcunddruckerservice.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pension-chevaux.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "persuasionmatters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plexmark.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pmi-install.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiosatbolivia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ratujmydzikiekoty.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rentalboatsafety.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reparatiecrm.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "repat.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rpschultz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rwalch.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "savewildcats.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "savewildcats.foundation", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "savewildcats.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scarboroughscrapcars.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scrapcarbrampton.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "senaofertaeducativa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "senooken.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servus.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sitemydesk.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smart-tux.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smplace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "southridgeservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "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": "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": "sutty.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sys-admin.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torontoscrapcarremoval.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tracknetsports.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transferagent.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transparencyinadmissions.org", "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": "wildcatprotection.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wissen-a5.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wissena5.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xenrox.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yardthyme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yogularm.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yogunet.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yumm.menu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "z-rejstejna.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zrejstejna.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "10ktotalent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a-1waterproofing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abierta.cr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adevo.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aicfb.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alapetite.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "analytik.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angelsmithphotography.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anoujaa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arabapps.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azon.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bachlongbeach.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "becollective.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bergvallsmassage.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beyondgameplay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bisq.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinkaufen.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinkurs.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinkurs.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "black-friday.org.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bolli.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bridgefield.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brown-bros.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buildingpointne.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carmelss.edu.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartago.co.cr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cestpasviolent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chatweb.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christophfink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "claypenblanks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "compassregroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daisyindia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dav.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "designcanada.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dr-beyer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dynasty-warriors.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emzy.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enerity.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "entouchgo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erikswan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "facilecommebonjour.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fixpoint.co.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fixpoint.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fizz.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fizz.studio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fizz.team", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fizz.tools", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fizzcreativemedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fizzstudio.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fourchetteverte.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fxp.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gatherling.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gitarren-akademie-online.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gladiatorshop.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gps-track-sys.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gridspace.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grundlage.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hlsjgw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holubowski.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icze4r.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iczer.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "index.law", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interlinked.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ireiguam.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jotes-creations.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "journaldufumeur.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keep.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kevinchang.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klogeschichten.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ktk-pc.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "label-octopus.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leliveld.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leliveld.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lennartoldenburg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libertyvault.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lilievabien.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lojaapoio.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luxe.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mathavuzteknolojileri.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mon-agora.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mountainbell.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "movaci.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n.tt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "namesnack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "narko-stop.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nesheimswaterrestoration.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neurologysantamonica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nikahplus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noble-diagnostic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nyoka.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ondrejvasicek.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pc-taskal.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "permasealplumbing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pet-distributor.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phreaknet.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pilotcareercenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quiq.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radioknop.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rbx.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdfmapped.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redsiege.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "refalm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rizikaockovani.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanktpetriskole.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scarabcoder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schlafteq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scope.studio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shigotoba.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slidemembers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soapex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "softonline.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stop-microsoft.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strunecka.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taxipool.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taybee.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tccportal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "texasgynecomastia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toplink.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tusociofinanciero.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvbracketman.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visoundcloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitario.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wdesign.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wondercorner.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woodward-vets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xyquadrat.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yogaecology.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zak.co.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zerm.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zerocalc.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ziliotti.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "175dt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2img.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3dapartment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3dissue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4screens.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "540interactive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aaron-smith-cpa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aceparking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adesex.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adoptabeehive.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adoptabeehive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adoptabeehive.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adoptabeehive.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adoric.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adstune.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ae86u.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ae86uu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aftodioikisi.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aidanamavi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akuntansilengkap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alitajran.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "almiriatechstore.co.ke", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alphahosting.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amolador.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amolare.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amollare.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amoursucre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animebase.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "annalaudel.gallery", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apollowallet.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "applytofaceblog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "assamtenders.gov.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atacul.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlanticfcu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlantida-amber.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "augenlaserzentrum-dresden.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auralinna.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axel.red", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baehost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bafus.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bajj.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balski.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bancobpm.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bbka.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bbkanews.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bbkanews.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bbkanews.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beaulieu.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bilimal.kz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinheaders.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitmoji.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blacksvets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blindscribblings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blissbox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blucouriers.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blueshouse.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boanastudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boleyn.su", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boomsocial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "britishbee.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "britishbee.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "britishbeekeepers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "britishbeekeepers.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "britishbeekeepers.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "britishbeekeepers.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "britishbeekeepers.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "britishbeekeepersassociation.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bscyb.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "budgetimize.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "builtinseattle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bvrlodge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cache-checker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "campdesante.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "can-amchains.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "capturebilling.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caribbeancinemas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cash.app", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheap-mattresses.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chinesepen.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chronicals.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cinemaz.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "circleofhealthlongmont.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clodo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudinfinit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comments.app", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "concretedreamsoftexas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cookiepro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cooktoprepairaustin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corazondemelon.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cosmicdrifters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crayon.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crypton.vercel.app", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deonlinedrogist.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desalas.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devpost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devskyport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dishwasherrepair-austin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnb.co.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dominobot.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dosenpintar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dropmb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dryerrepairaustin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ductcare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edubirdie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "egt-bg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electronis.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elink.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "embedded.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enderandrew.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erkiss.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etsu.edu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fairelements.net", "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 }, { "name": "firstcentralsavings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstphilec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fishcorp.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fizzcharts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flagma.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flashissue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freefincal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "friendofthehoneybee.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "friendofthehoneybee.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "friendsofthehoneybee.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "friendsofthehoneybee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "friendsofthehoneybee.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "friendsofthehoneybee.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "friendsofthehoneybee.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fs-w.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fs-world.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fsg.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galleriacontinua.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamefarm.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gecosan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gerber-construction.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gestaoclub.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalwidemedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globotur.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greatplainsaustralia.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greendotcc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "groover.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hacked.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happiestoutdoors.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heraldmakassar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hrbrt.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hs-flensburg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hub24.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hubovra.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i-tm.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indodax.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insidehook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "instantprint.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inteltechniques.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intercom-attachments-1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intercom-attachments-5.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intercom-attachments-6.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intercom-attachments-9.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intercom-sheets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipomue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iregister.al", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jboho.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jdu.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeremyrobinlyons.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jonathanrobichaud.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karinov.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kassa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kathmandupost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kcsh.men", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "khoxuongchothuegiare.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kingkongxo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koranseruya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krisp.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laboiteasous.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lapps.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lasmorfianapoletana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesfouines.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "limoforsale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lingualeo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lingvist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lklyrics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luanvancaohoc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lukasbures.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "makeagif.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "makewebbetter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marc.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marketplace.tf", "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": "medaboutme.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meijburg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mekegi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercatinomusicale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metapsychie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mettelenejohansson.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mimgnj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mix.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mohsen-pashootan.vercel.app", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monarchelectric.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "money-book.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moshop.com.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrguider.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mycardplace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myevive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naplestotalgarage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nbotvinnik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netlify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nightbura.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niles-simmons.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nivel03.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nocrm.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nomadlist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notube.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novadir.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nrm.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "officeforstudents.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oisabre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omahachapterone.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oriental-events.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pageuppeople.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parina.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "particle-vision.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patrisnews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "placeandsee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plexusworldwide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pocketmags.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "politeka.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portal-uang.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pro.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "projecthelius.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "promocodes777.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pundix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qr.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quantris.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quotidiani.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rader.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "range.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rangzol.now.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rapidscale.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raps.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realpython.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recommend.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redq.now.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reformasflores.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reservilaisliitto.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ringgitplus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riteboost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ro.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ro89.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salilab.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanayi.gov.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sata-group.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "satisfactory-calculator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sctiger.men", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seanmeedevworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serasa.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shopshap.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sketch.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skinport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartart.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soderestore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "southbaylatherapy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sqliteonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steemworld.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stockx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strtrade.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swagger.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swingz.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tabpanelwidget.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tac-sys.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tarot.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tataru.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teampages.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techcody.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tecno-pack.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teenmissions.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teknodaim.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thaipbspodcast.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tjupt.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tmp.sx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toyota.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trendingaffords.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tunnelbroker.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvfcu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ubuntu-tr.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ufone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valentin.app", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vishnujyothi.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivirenelpoblado.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vote.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wheebox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wisetechglobal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xiqonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourkit.com", "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 }, { "name": "zotan.services", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutyou.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ahhcomfortshoes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aluminumfencestlouis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "am-schlossgarten.haus", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amissing.link", "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.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arpasix.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arpasix.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atcstl.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beauty-salon-lino.com", "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": "blastoise186.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blau-weiss-stolberg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bourgeoisdoor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bumenn.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cachacasantaterezinha.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celebratingloveministry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chapmanstreeservice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chicago-mold.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chicagobasementblog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codeberg.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dailylime.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "damadam.pk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dentistaaroma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dubaibliss.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emtofis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "femalefoodie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferrovial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "findcanary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fischer-wasels-medizin.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foundationrepairchicagoil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freezerrepairaustin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frozenpennies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gnfb.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gradle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gradle.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greenhillhosting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grummittgroundworks.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helminger-lrs.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hyrius.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibug.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icemakerrepairaustin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idealadvogadosbh.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipv6ioffentligsektor.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "istitutoimballaggio.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jacobsmeubels.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jallatte.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kee.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kevhosting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kruno.ooo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lamaisonfantastique.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lcwebsite.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lefroyee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lepalierjuridique.com", "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 }, { "name": "lifelinesupport.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovelyfamilymm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mayflowercreative.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mide.gob.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monicz.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moonlit.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mygeorgia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ovenrepairaustin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paintballer.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perlego.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "permasealbasement.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "permasealbasementsystems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "permasealwaterproofing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phoenixdepositionservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "picturevictoria.vic.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixelglue.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rijnland.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosewebdesignstudio.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samic.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samic.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanmonjiya-kimono.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sconecloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seattlebasementwaterproofers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secureinfo.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spendable.money", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spertto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stlouisstabilizing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoverepairaustin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "streamelements.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strogova.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "styxxx.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sumppumpchicagoil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "switchassur.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "t22.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamfriet.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thepitsurfhire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tianyis.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiga-design.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timmerbedrijfpauel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "togoweed.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trustedtoolbox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinylfencestlouis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voetfit47.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vpstrial.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wapnepal.com.np", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "washerrepairaustin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiska.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiska.co.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiska.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiska.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiska.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiska.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiska.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiska.lat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woodfencestlouis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wuyuan.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yihome.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yilconstruction.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yq5.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adaptiveu.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "albaadani.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animetosho.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "answerconnect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "answerforce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arcskoru.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armyholidays.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armyrtf.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlastaxi.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babyportal.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bahrep.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baldvinringsted.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bazaart.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bazarotehijos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brisceremony.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bvop.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calcettomania.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cbh.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ceramic-glazes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cevt.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chatsupport.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checkchina.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "convoluted.solutions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crossorange.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dallas.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deadshortaudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desktopfibra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "distributedsource.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domekklimkowka.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drguyfacialplastics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "echbay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elbrus360.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eshop-ptz.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eshoprzd.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feelerfolg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fiataldivat.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flathome.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fluig.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freeassange.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gesath.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gestionth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "golfrange-ffm.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greycrane.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "h2ox.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "handyschaft.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hh-host.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotel-promyk.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hr-automation.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immo-ment.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivkymppi.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jornalaquidf.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juniorchamber.international", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "khalti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lado.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladocdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lady-len.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "larimarhomes.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "latchplus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "letableaunoir.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lexreception.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "litepay.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lkqpickyourpart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logon-int.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maevelyfotografia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mairie-landry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxmarket.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mission-gesundheit.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nextgen-wealth.com", "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": "ocsamochodu.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outsourcingdenomina.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pamvo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paper.wf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pavajebucovina.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pavcomm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peklostroj.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peklostroj.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pg-sec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pg-sec.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pg-sec.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pgsec.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pgsec.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pgsek.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planther.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polisanaraka.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polisanarciarska.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polisynazycie.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "povzetki-knjig.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rankingofe.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rankingubezpieczeniowy.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rankingubezpieczennazycie.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redcanary.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reservadecitasonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resto-renaissance.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rorr.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roulettestar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salesoutcomes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schielandendekrimpenerwaard.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schody-rozycki.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schu.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sdruzeniprovltavu.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seonurse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "setmore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "somosgesath.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sr.ht", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stevenmdriving.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svensson-generators.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swat.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swd.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "synclio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "systemlead.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tapestryjournal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techwolf12.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thatdaria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecustomizewindows.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thepokerbank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ubezpieczeniazyciowe.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ubezpieczenie.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ubezpieczeniemieszkania.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ubezpieczenienanarty.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ubezpieczenienarciarskie.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ubezpieczenienazycie.net.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ubezpieczenieturystyczne.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ubezpieczeniezycia.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ubezpieczeniezyciowe.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ubezpieczonamama.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ubezpieczonedziecko.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ultimateparts.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "videochums.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virtlinux.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vmsurgery.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webo.agency", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webo.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westlogistic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--mllerhesszimmerli-22b.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xvix.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yocoboard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ypea.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2dk.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexandrastrauss.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allenturley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amgreatness.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anywhereworks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atc-fr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bamaland.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "banffcanmorespeedskating.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-tickets.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boingboing.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charlescwcooke.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cielo-thefilm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conscientia.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "czteryporyroku.edu.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dakotacil.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielittlewood.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darcyinspired.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dijitalzade.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doggo-staging.herokuapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dovecraft.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erzaehlwerkstatt-heilbronn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "francoislaude.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frenchbluecottage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "germain.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "germaintechnologies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goosementor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "groupdcc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heinrich5991.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostinkos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i2capmark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infopreneur.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internetpoem.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jiaxitian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kdcinfo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kozansa.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krenstetter.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lafsc.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifeconnections.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m1hax.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "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": "meetanshi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mengma.pub", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mepassport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkbd.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mta-sts.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mylover.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mynic.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ninjacomputing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opticamasvision.com", "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": "pb-eatz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philis-oenologie.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prepa-benjam.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "presly.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "primekinoshita.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "project-merlin.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "propertech.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proto.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdienclosures.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rebull.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reddcrypt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ricochet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rje-hub.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rndtool.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rsb.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sainokuni-eng.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salasbanquetes.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sallycooke.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schooldatasquad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplifixed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "specialtyjets.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportschoolgeelhoed.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suenotek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swissdomaintrustee.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tagalliances.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technoyl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tfsrcymru.org.uk", "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": "thewebguru.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tianjiaxi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ticketswap.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ticketswap.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ticketswap.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ticketswap.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ticketswap.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toepferei-langerwehe.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tradition-immobilier.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twizzle.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tyroola.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uni-watch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "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": "willflies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wobako.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ziprecruiter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "22times.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "achievingheightsacademy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advocatae.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aggressivecarwraps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aktivitetatil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alenwich.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aliexfantaisies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aperture.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apoiocoletivo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aqarbab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arturgaweda.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ascormovies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astroluxe.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bioclaudia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cadman.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casemaka.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cholleria.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cycleterrace.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dashofmedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dashofting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "detoxtorehab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dinevigroup.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discuss-data.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dzimchuk.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elegantly-clean.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enterdown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erboristeria.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "espace.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "familytrees.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fiksem-it.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "findcbdoilnearme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fluessiggas.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freshinsport.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "georgenad.duckdns.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "germancoding.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gwg-march.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hfx405.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itbrief.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itservis.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jar.cool", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joshking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kazy111.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinvault.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": "kvsrot.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "labadusa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "letzi-immobilien.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libget.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luxurystays.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maagdesigns.com.uy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuelcancelas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mc-auth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mialma.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mistergout.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morisakimikiya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oneearthsacredarts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outsourcingnominabogota.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patriotbearingsupply.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pitch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poliground.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polioptics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "praksite.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "praktijktian.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pro-alter.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proalter.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiogear.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radost.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rccom.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shoobacreations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snipdrive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squadgames.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stall-frei.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stopthemoss.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strikers.futbol", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "surgispa.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technoledge.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thealmsolution.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebacksplashcompany.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thewallet.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transcoalition.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsmost.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unicode.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utbabogados.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "v8builder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valigate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veterinaryvision.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webstreamworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yahlab.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yoba.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airpoint-compressors.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alykkelife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arztpraxis-kubalok.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asher.tools", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atozeventrentalsofpa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beersheva.city", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bijlesportal.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bloomnail.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "borntocover.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bspecialfx.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyucoin.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": "chessveterinary.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chris.land", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cinqueportsvets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "circlelytics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "classdesignhome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corvaglia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crypt-app.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "data-reader.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desucla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doordash.red", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "droitalecole.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecostarfoam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "errolmarkland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "euruni.edu", "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": "fantacast.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geophysicsjournal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guanggaonet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hifly.aero", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hq.marketing", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hskernel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "htb-email.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "htb-email.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "htb-email.uk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "htbemail.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "htbemail.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "htbemail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "htbemail.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "htbemail.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insidergazette.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "investnorthernontario.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isoip.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "izzardink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jiangwu.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jlbleakley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juniorsbook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "key-tracker.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klubcajovna.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kohaku.love", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kubalok.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lena-klein.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lena-klein.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifeisqi.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lisapo.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lnk.bio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magnetic.su", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailmum.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "makemusic-asia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mamoni.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medicalphysicistservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mens-qzin.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milbournequine.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirs.ky", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtsoftware.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myowncloud.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ni.sb", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nickmiller.ie", "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": "pavlov-ledec.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pawchewgo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pbsrmoto.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planetapolska.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychologue-a-paris.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qzin.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rct-chair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "renewcleaningservices.net", "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": "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": "safetymeasuresas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samuel-philipp.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scottandtammy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sdhblatnice.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sedirector.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seo.services", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solalt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soundcloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sp-codes.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sp-magic.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "staszic.waw.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thestoragebay.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinturanaturale.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tulippublishing.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tutorialforest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uhost.cyou", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ul-fluglehrer.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": "vicioanimal.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wackys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xnoe.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xnopyt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zarla.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": "aeolservice.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akhepcat.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": "alaskacruises.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anasaci.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anneeden.com", "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": "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": "australianairbrushedtattoos.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": "bestliege.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biokemonline.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": "catme.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccdiscussion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccpaas.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chamber.sa", "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": "cmfcuro.com", "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": "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": "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": "csitarz.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": "devinslick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domowejroboty.pl", "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": "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": "es-sicherheit.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ewatchers.org", "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": "flagma.pl", "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": "gabrielg.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gidive.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": "goskills.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": "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": "hawat.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hirtz.pm", "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": "justin3d.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kingfast.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klapty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kylinseating.in", "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": "lepkov.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lindbladcruises.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loackerbusiness.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lumpov.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": "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": "mealsnmemories.in", "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": "millikart.az", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modul8r.com", "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": "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": "npgcdn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onrealt.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pastelpixels.studio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pggalleria.com", "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": "povar.ru", "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": "qfes.qld.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rasmushaslund.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": "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": "rollinspass.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rsc.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salebaba.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seashkey.com", "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": "sglazov.ru", "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": "sorbire.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": "speeli.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": "symlink.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techcult.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": "teml.in", "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": "tiwilandcouncil.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": "udid.fyi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unikrnb2b.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": "webiroha.com", "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": "willocks.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wmphonline.com", "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": "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": "yolosh.se", "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.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": "3os.org", "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": "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": "absolutebritney.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": "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": "amilcalcados.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anchr.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angione.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aralys.com", "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": "armandmusic.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artbalsam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avogel.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baindayman.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": "beer-sheva.city", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benjamorphism.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": "bittounsi.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": "bompus.com", "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": "bubbelwafel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cabosaferide.com", "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": "cibercheck.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": "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": "craftychameleonbar.com", "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": "cuentadias.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cutter.li", "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.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": "darnashop.fr", "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": "devyanijayakar.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": "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": "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": "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": "drone-mapping.expert", "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": "echidna.com.au", "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": "effortlesshr.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricgypsies.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elevationplumbingandheating.com", "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": "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": "erlebe-salsa.de", "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": "everythinglidia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "floodheroessaltlakecity.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": "fossildlp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foxbenjaminfox.com", "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": "galefacialplastics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalbusinessrisk.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": "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": "hatierchinois.fr", "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": "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": "ideal.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "illumini.io", "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": "inuevostiempos.es", "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": "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": "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": "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": "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": "kobietydokodu.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kontrapolis.info", "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": "kw.gt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kyriakidisship.gr", "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": "laud.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leandrebergeron.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lidosparesort.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": "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": "lola.by", "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": "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": "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": "mastpartners.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": "medhiwa.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": "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": "musecomunicazione.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mydataprotected.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": "needle-demo.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netheadsonair.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": "nonsa.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noom.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": "oliveoilshop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olyfed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oppabet.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": "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": "pl2.es", "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": "r3gi.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ramydent.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "readingea.com", "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": "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": "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": "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": "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": "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": "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": "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": "shinyoko-saisyuusyou.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sintsationeel.nl", "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": "smolkatours.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soydoula.com", "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": "stylidafm.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suikerspinnetje.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suomiheraa.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": "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": "taskforce.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testq.se", "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": "theonyxzone.com", "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": "tornado-map.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tpue.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "try2hack.it", "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": "universalspf.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utduc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "variusunum.com", "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": "videocall.guide", "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": "walletfox.com", "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": "willwilkins.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wisdomteethonly.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": "xplo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourblazeguard.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": "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": "123freevectors.com", "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": "383838.plus", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acuityfinishing.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": "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": "anliting.com", "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": "asprobet.com", "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": "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": "beckmandxapps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berlingeriresort.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beyondthecreek.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": "blockstudio.it", "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": "bustickets.ph", "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": "carwreckcowboy.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": "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": "confer.ch", "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": "courier.lk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crsserviceogkloak.dk", "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": "damiengobron.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": "digitalerror.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "distelbentelo.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dns.expert", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dolmencleanroom.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": "evaali.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fietsvakman.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fromoldbooks.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galtelligence.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamertelligence.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giftsforaspecialoccasion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hamminga.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "houthandelbunskoek.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huntingtonestateproperties.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": "igualdaton.org", "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": "isaacgolding.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": "journeytofi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jurnalilmiah.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kimicar.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klaudialeszczynska.pl", "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": "landscaping-montreal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leliekerk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "librosantimateria.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": "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": "masters-burrell.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medicallicensing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mlcrosoftonlline.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mojaapteka.pl", "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": "mydeardreams.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myvegasadvisor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nextvision.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nietvolgensdeboekjes.nl", "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": "onsitespeedometer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pepechkov.com", "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": "raiceshebreas.org", "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": "rkabworks.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanity.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shoyuf.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skylair.info", "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": "straalatelier.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tachoplus.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "textcleaner.net", "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": "tim-demisch.eu", "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.eu", "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": "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": "vddruckwerk.de", "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": "vulkanprotektor.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wefillgood.com", "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": "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": "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": "zogevikst.nl", "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": "53pluk.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "8freeporn.com", "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": "abcc.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ahoj.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aigua.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alchemiya.ru", "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": "all-bronza.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aloemeda.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alphalibraries.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": "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": "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": "aqua-print.com.ua", "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": "astrograph.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atmelook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avertoni.ru", "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": "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": "bayareaplasticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "begovel.shop", "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": "bestpornclip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betandslots.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": "bible4u.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billkochman.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": "bloomppm.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": "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": "bradeales.com", "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": "burnsland.com", "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": "canopycleaning.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carddelivery.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": "centr.dn.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cidcca.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": "consultadepsicoterapia.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": "disinfectiondoctor.com", "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": "dynacrop.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elpreciosostud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emojiteka.pl", "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": "esiac.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evangelise.asia", "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": "filequit.xyz", "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": "gehirnapis.jp", "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": "greencyprus.com", "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": "hisax.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotrender.com", "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": "incurvy.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internetional.nl", "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": "itsgreener.com", "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": "kapri.dn.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keuvelaar.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kowalski7cc.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kvaapagarrot.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": "laxaf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lgstore.sk", "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.town", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m2international.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": "matkuling.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miacuario.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mosfetkiller.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrsjinthelibrary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mvarsamis.com", "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": "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": "nishiwaki-shonaifoods.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nordlandverliebt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nutrislice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obdinvest.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": "operadotejo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orchids.ua", "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": "perunsoft.rs", "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": "pimpstack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polymathian.com", "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": "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": "puresanitization.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": "raven.express", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ridayu.jp", "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": "sapaship.ru", "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": "sergal.gay", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shockproof.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simetria.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "singee.me", "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": "spamasaurus.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": "springlanguages.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": "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": "tarot-online.com.pl", "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": "tfiik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theislandtime.com", "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": "townshipofthenorthshore.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelshelper.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": "ukrainskie-konstrukcii.com.ua", "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": "wisetoken.net", "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": "yiff.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yinfor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youstyleski.it", "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": "zubilo-perm.ru", "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 }, { "name": "1kdui.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1whw.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3mediaweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3proxy.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3proxy.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4yuz.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "708090.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a1expresscarremoval.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aebba.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akumat.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akumat.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anomalous.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artrofisio.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autoopravarjunior.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avisbabes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bartcoppens.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beregusha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestsextoys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betwinnerportugal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biomassinfo.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biotal.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bokhylle.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bracken.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brendabecker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burtai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caffeinate.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catwilliford.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdhqt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cervenyjezek.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chahal.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "churchplaza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clearcreekcountydronepilot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codecrew.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colorpalette.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comfy.gay", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "contactelus88.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "costazulinmobiliaria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptosolicitations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cukrinelape.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cwgpllc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "d.nf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ddk.dn.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "decibelnewmusic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deliciascomercial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delika.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalreborn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "directverify.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfectingdoctors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfectiondoctors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "docswallet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-shonai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "famonitor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feminina.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forwardtogether.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freeebooksblog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galpsafetytalks-portal-preprod.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackedaf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happydoghosting.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hedgedoc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "horny-gay-dragons.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hrmny.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iw.net.sa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jarmanka.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jfcare.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jilworldwide.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justor.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "k-labs.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kevin-emo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kirkwoodfencing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kirkwoodoutdoors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koujo-soukohonpo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "labs-is.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "layermesh.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lisbon-pre-1755-earthquake.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lukekuza.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lyla-pressing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magescobd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mail.tm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "makelindazi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mar.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marycowanceramics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mdleom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medicenteritalia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mein-neuer-garten.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meshekard.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michellelowery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milesaddict.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minipc.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minotauro.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobilizon.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moneybird.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motherhoodinblack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msoffice-inc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtrx.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mydsomanager.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myeventstation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mynak.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mysaldo.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nanco.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nanco.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nelnetbank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nickrickard.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nintendocarddelivery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northfinance.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nrail.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oenolab-vidalies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oikosweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ondemandassociate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onechoice.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlineradio.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlineradious.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ostra.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pagevitals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panele-fotowoltaiczne.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paocloud.co.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parniplus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passionegriglia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paulwilhelm.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peakseoservices.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pellegrino.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "personalwebsite.services", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phenriques.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phimtor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phonesexchat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phonesexnumbers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plast.design", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "podcastmusic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "praha-kominictvi.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "praxis-waedicity.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prodigyhacking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "profil-doors.spb.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "projektentwicklung-westfalen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "propertiesmiami.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puredisinfection.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quarrymill.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "questforgaming.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quickcashcarremovals.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "racheltinniswood.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ramen-dealer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rded.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "refrigeracion2hermanos.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remontmebliv.lviv.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rockshooters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rway.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintlouisfence.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saitas.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salt.fish", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schubertnest.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sedico.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seedspark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sellbit.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sempoctet.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendpulse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sergal.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sergal.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shopofturkey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sich-positionieren.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "signature365.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siriuspro.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirupybartonik.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snetts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snrd.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sopira.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starti.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startupstack.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startupstack.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steamcarddelivery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steamcars.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stecos.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stlfence.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stlouisfence.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stomproced.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "straniero.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "styleflow.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunsetfire.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "surveyorcloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "t-shirt-template.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tagalog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tarper24.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tennisapp.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecardcloset.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theflowstudios.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thehappeny.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thelightpoints.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thepureplan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thesingaporelawyer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thomwiggers.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiktak.su", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tipsplants.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "todoescaperooms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tokyodenmarkweek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toptapety.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "treevectors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tutierra.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ubanks.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ulgaipbox.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "umanupszn.gov.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "universal-credit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urokoff.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valencraft.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vanderbeekonline.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "venev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volkswagenmiennam.com.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vrfoodchannel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "windycitylawgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn----7sbbfsshjvgyde8g3c.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--36-dlcdun7abo4a.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yagizhan.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yaseiblog.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zahnarzt-kruft.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zsien.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1000inf.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1pluss.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "22bet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3em1.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3i-infotech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "actris.ac.cy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adaptivecenter.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ae86t.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ae86tt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ae86y.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agenciaplanner.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aggielandtutoring.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aguidetolovelossanddesperation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "air-planning.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akademiawawer.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akumat.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexandertutoring.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allianskyrkan.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "almanea.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "analisi-grammaticale.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "analisi-periodo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andre-schlichting.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andremaciel.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angione.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anima.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anna-mai.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antimateri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apuestalegal.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ararrl.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arcandadults.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aresproject.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armazemdeminasmg.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artesial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arveex.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avoandco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balance.courses", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balance.education", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balance.equipment", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balance.technology", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barbaros.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barratennis.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barrierefreie-medien.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "batwatt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bavaria-feuerloeschershop.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betwinner.de.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bghddevelopment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bicstone.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biglistofporn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsd-sec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bubnovsky.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "businessgrowthleaders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "capehipandknee.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cavediverharry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cecilia-online.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cerda-avocats.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charliez0.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charliez0.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheibegaudi.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloneprint.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudsmart.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clover-sendai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cocowine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codeheroes.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cosmohosting.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crapitalism.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "createwithcynthia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "custombuttonco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daisypeel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datinglocalgirls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidetmagali.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deve.software", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devflop.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devopedia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dienaturbinderei.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalalektioner.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dinamofilms.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "distri.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doctorpup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "docusend.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donaldwarner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "douban.city", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dovetailapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragonballzfigures.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dspnor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dulanic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dutchperformanceproducts.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecofriendlytravels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eetestingcenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "efmo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "egegesh.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erseni.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "escmatrix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evakuator.services", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "extromail.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "factum-info.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fi.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flemingmccullagh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flownonfiction.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fotklinikenvarnamo.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "friendly.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fro.ge", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fsub.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fukase-seed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galpsafetytalks-portal-production.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamebrott.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamecarddelivery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garagechief.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gauthier.tel", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ghwconline.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giftnix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giuliabonati.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glassact.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gocadservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldenyacca.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldenyacca.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gospellifewc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gothiclandscape.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grandpad.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gravelshooters.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gravelshooters.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guaranteedfitdanceshoes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guaranteedfittangoshoes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gzlivre.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "h2020faros.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haberton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hbfisioeesthetic.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hclu.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "headofhair.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hen.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "henri.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "henryluker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "high-heels.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostpoint-static.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iaswc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iawx.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ima-solutions.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inmemoryofdaniella.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inncoaching.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "instances.social", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interdc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interdc.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iowawx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irishdenetwork.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ironcladapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "j4m.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jimwoodrealty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jlmunn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justinmanders.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kartenplanet.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kartoffel-stampfer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kfmhf.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "khwezifinancialservices.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kipcrepair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kotori.style", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kridtvejsplanter.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "la-ville-aux-dames-auto-ecole.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladelicateparenthese.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laflanelle.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lagriot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lalaserniagara.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lanyards.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawzana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leeman.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lehokolo.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lenoblpech.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lights0123.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livesexcalls.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lnk.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lynxbroker.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maintainyourwebsite.help", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marsmediavideo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martinus.cafe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masterstruckingacademy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediawiki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mfatravaux.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mfgo.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miamibeachcommunitychurch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miltor.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miltor.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mintert.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mo-vvs.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moneybirdstorage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "montillafarm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morningchew.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muennich-coll.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mwcwallet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nachalosbog.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "najprzepis.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "native2ascii.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neuelandschaft-welzow.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newmatworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nhatrangbooks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nowecor.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nuovicasino.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlysmoker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlyu.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oumactive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oumorienteering.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oumsport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outwoodz.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "owl-media.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "owl-media.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pawelgo.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pelletgrillreviews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perceptyx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "performancetransmission.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petervantriet.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phannuoc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philippemunn.photo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planetalife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porndoe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "posturografia.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "posturography.equipment", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "posturography.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "posturography.science", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "posturography.software", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "posturography.solutions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "posturography.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "posturography.training", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "posturologie.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "primeview.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proteinreport.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ptheophanidis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puckcreations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puzzles-to-print.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "r15cookie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raafwelfaretrustfund.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdzenie.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recifaliste.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "renoproject.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "requesthymn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "risco.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rjfedor.ddns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roelmagdaleno.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rovian.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saint-ssd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sandelduggal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seirdy.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sentrafield.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shoruihokan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silentsystem.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sithmanifest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slotjava.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slotjava.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smetak.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solidarityzone.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solvaybank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sova.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stephencorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stomaline.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superfaktura.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "susanmmeyersauthor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svenskarnaochinternet.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swim-smart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syncresis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syscurve.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tabi-time.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tbi.equipment", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teched-creations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techiwant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telani.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telegramseen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ternex.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thegreatgonzo.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thereadingresidence.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theveggietable.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ticketbahia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinandthyme.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiny-img.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tradagars.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truckerjobusa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tun.bible", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uberalles.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unseeliefilms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unseeliepress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utloperadora.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uvt.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "v0i.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valhallastrengthsthbne.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vanadrighem.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vertrauen.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vestibular.science", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vetvim.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "victorychurch.org.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vnlfrk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voyagewiki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voyagewiki.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vps.hosting", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warenhuisvandijk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waterdownmedia.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webera.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wedefendcharities.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wefact.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weingut-bernd-klein.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weis.bz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wekipedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wellbalancedhealth.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whiteantelopeinteriors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikibooks.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikidpedia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikiepdia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikiepdia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikijunior.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikijunior.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikimania.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikimania.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikimediacommons.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikimediacommons.jp.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikimediacommons.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikimediacommons.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikimediafoundation.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikimediafoundation.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikinews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikinews.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikipaedia.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikipedia.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikipedia.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikipedia.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikipedia.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikipedia.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikipedia.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikipedia.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikipedia.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikipedia.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikipedia.org.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikipedial.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikipediazero.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikiquote.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikiquote.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikiquote.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikiquotes.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikisource.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikisource.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikisource.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikivoyage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikivoyage.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikivoyager.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikivoyager.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikjpedia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikpedia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiktionary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiktionary.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wilkipedia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldclassfriend.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "writestreak.team", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn----7sbbak4cyaoedjf3m.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--dragni-g1a.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xwm.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xxl.tax", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youngart.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourtwojugs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yumechi.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yzervast-heestert.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zayzoh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeegers.family", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zengold.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zentoy.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zezov.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zongboao.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zoomgov.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zqwqz.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zsdublovice.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "011101.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1breadcrumb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1up.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aarklendoia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "achill.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afiador.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agrodoki.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alejandromunoz.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "am-sonnenblick.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "am-sonnengarten.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ancentury.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ants-carte-grise.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anyshapemusic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "app-online.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "app.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "app.ps", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aprilagentur.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ar-vernet.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artextasia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artvaastu.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asiacommerce.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "automir.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avinguard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "b-utstore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bakuze.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bayscollisionrepairs.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beatsdope.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bendminding.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beyond3dviews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bjordanov.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonbonshop.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "branefive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bricks-clicks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brightzoneofficecleaning.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bronx-ny-dentist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brunocesarlima.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "callfordataspeakers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camrosewebservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cantarefacile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caps.equipment", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caps.solutions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caps.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cashyourcar.sydney", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cavemax.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centralcityjuniorkindergarten.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centralcoasthomeloans.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charliez0.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheazey.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "child-theater-bs.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christianmoore.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "churchssja.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cicavkleci.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cinematic.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cisincometax.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cityfacialplastics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ciulea.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clanto.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clinlife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clowd.haus", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cmlcpa.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coag.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collectivedg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "concreterepairconcreteleveling.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "confio.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conoha.vip", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "constructionstudent.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cooks.house", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coreless-initiative.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corexpert.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coronastationphotography.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cortonaeranieri.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "covar.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coventry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cresoweb.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cricketnmore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cromwell-intl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "currencyfreaks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cursos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberbotx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberplus.net.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cycleshop.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "d2woj1dt0tk6sn.cloudfront.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dadcentral.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danny.fm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danwaibel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dark-programs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daynia.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "debeer.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "decorator.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "decsys.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desertlinegroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desperatesailors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitaliandm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disbug.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discshop.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disenialia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfectingdoctor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "district09.gent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diyeat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diyeventhire.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "docbrown.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doottrucks.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "douglascuddletoy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dowhatyoucannow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragdroplearning.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreampointech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dropeverythingrecords.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dsn-it.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duckstad.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duellin.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dumspiro.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easytrackghana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eautolease.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eforw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ehtgov.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elbvision.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elektrolety.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elliboettcher.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elvikom.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emporioarchitect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "en-wp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "en-wp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eod.su", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eposzilos.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erwerbslosenforum.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esocite.la", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estreetshuffle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "europack.kiev.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "europesearbeiders.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everystudent.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expressinfo.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eyfari.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "facialplasticsurgeryofaustin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "facilit-info.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fae.watch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filmedonstage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filmisfun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filmisfun.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fina-foxy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finom.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fishoftheday.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fooddeliverypartners.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "footdoctorpodiatristnyc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fortifydiy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fortipartner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fortipartner.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fortipartner.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forumpenaguru.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forumvardbyggnad.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foundationassure.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frageboegen-martini-klinik.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gameshopsrbija.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gemini.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gilpincountydronepilot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giuliawylde.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grandcountydronepilot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gravirovshik.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greenyway.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greystonesmovement.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grurez.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gtestepourvous.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gtsoftware.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guinguetteclovis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hacifadilogullari.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happy-wans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helali.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hemdian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herbiez.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holycrosscatholics.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homemediadb.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "honeycomb.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "horozo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostfact.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "houstonhomerevival.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i-panic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idee-geschenk.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iforced.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iknowd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immovisual.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infirmiers-montpellier.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inoruhana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insideevs.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intelalumni.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intellio.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irando.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isa4310.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itlogic.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jdelgado.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joansoy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jouwbuis.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justfoodfordogs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kbz.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kcsprayfoam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keekmix.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kenzelmann.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kettmail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kfbl.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kierweb.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kleverltd.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kom.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konfliktklaerer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kristina-lari.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lagavach.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lamalleauxsaveurs-aubigny.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawlessitalian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lazysoftware.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leandri-campana-avocat.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leladesign.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leonardlorenz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leps.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leverj.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lg-store.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lgobchod.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lgstore.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lgworld.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "literie06.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lj-creation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loftymedia.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "longtermrentalsportugal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "losinterrogantes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lowerthetone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lukekuza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luker.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lukersstorage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lukerstorage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lukertech.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luxden.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lwnlh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lynxbroker.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lynxbroker.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macapflag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "make.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manhattandermatologistsnyc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markhoodphoto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marquisepools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martin-burger.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martinhalresidences.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masdzub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maswali.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matheball.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mathebau.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mathewlane.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcculloughsgolf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediaareplural.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediacluster.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mekajen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melodycenter.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mengqingzhong.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mengqingzhong.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mengqingzhong.com.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "menlosecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metro-vet.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miamifl.casa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miamifl.homes", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mig5.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnwefact.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirvent.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mmmonk.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monconcoursdgfip.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mudrc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mwork.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mypivcard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mysports.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naveengranites.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nedvrf.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newhamyoungbloods.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newjerseyvideography.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newyorkcardiac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nezkakukec.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nighthawkstrategies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nimbl.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nndfn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noisyfox.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noripon.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nostaljicicekcilik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notbot.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notizie.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nowtime.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oakbarnwellness.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obet901vip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obsuzhday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oldcitysmokehouse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opalhunter.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osbeck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oumrace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pantypit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patanegra-jambon.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patanegra-prosciutto.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patanegra-schinken.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patanegra-schinken.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patrickdankers.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patrickpeeters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pawelurbanski.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paycardtech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peanutpay.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peklostroj.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "performancerunningsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "periony.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "personaljourneys.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petertrevor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pfsquad.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "photolakeview.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pimoid.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plasticobiodegradable.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playtheme.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pluricosmetica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ponyhof-muensterland.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "posturographie.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "posturography.courses", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "posturography.education", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powersergsis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ppweb.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pra.rip", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "precisiondentalnyc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "premier-podiatry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "premierpups.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privacysavvy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "procountorsolo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ps8318.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pywikibot.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qualebroker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quantalytics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quassowski.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "queenkedi.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qurium.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rakovec.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdmc.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdmc.support", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "restauratorin-maubach-dresden.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ricksdailytips.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riverschool.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rmb.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rmvalues.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosetwig.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rowra.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s402.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samepage.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scatteredcode.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schmitzvertalingen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schoolbytes.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sdfamilycare.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seilgold.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servingupsouthern.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shrovetide.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simscale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simulise.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skeppsbrons.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skidka.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skillablers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skvelecesko.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slimetutorial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slotjava.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "softconcept.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sprashivalka.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stalphonsusks.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stdavidparish.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sthetix.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strass-sur-mesure.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuyvesantoutdoor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suburbanprojects.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suburbanweldingandsteel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sumitchahal.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunshinerequest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superfaktura.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svobodny.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sysoons.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talkbasket.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tapcloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taxi-doudoune.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tbi.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamliquidstarleague.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tedder.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teknoharekat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terrab.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebrewingtonfamily.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theelephant.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thementornetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thilko.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thisisart.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tierrahost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timweb.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tirebichon.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "titanicauto.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomoko-clinic.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toughcodes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trychameleon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuttonotizie.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twigandolive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tyinnovations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uloztoasdilej.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "underwaterasia.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unitedlisbon.school", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unko.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unlimitedheatingcooling.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valentinvesa.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vesinhcongnghiepttchome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viktoria-goo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vimium.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivekanandaspokenenglish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivide.re", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vstrikovaci-lisy.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vzemiseo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "w-oasis.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "watismijnbandenspanning.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "watobi.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webika.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "websitesthatwork.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wernicke-it.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wholevood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wholevood.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiikipedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikepedia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiki-pedia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiki.voyage", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikibook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikijunior.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikimedia.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikimedia.com.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikimedia.community", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikimedia.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikimedia.jp.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikimedia.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikimedia.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikimedia.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikimediacommons.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikimediacommons.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikimediafoundation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikinews.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikipedia.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikipedia.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikipedia.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikipedia.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikipedia.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikipediafoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikispecies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikispecies.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikispecies.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikiversity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikiversity.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikivoyage.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikivoyage.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiktionary.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiktionary.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wildfilm.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiltrovira.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winario.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wm-referrals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wodax.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woodtrust.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workat.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worksheets-to-print.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "writesafer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wroclawguide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ximeshosted.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--sb-lka.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xportxpert.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yacostasolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yhn.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yoneda-paint.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yonkersdentalspa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youservice.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zac.cy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zakaria.website", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zenitkft.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhanxiangyang.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0xedward.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1zavse.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2yy.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "360cycling.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4567.plus", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5ososea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "6play.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abysra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acetudy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "action-intell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "addictlaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adondevamosmundo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adrianadelrossi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advocatize.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aglow.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agoradesk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aihschgo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alenbadel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexandre-barret.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allmandlaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "almanea.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpencams.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpencams.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alulasails.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amazinations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anniangel-porn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appetiser.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apuestalegal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aseoblog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "attendantdesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atticusblog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audiofrases.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autoexprez.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autopril.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autorepguide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autoschade-mosman.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autotimez.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autozuki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aviokarte.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avocatcivil.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avocatpenal.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avocatro.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axxess-marine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aye.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azurecup.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babyinthehouse.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babykappy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baobabgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bapha.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bayofseo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beautybism.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beingmad.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestnewsmag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biologie-seite.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitlaunch.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blocksettle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blogexpress.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bloggerse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bloggingkits.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blonde-hexe.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boldhaus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonniestylez.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bookposh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "borche-imm.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brainotony.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brandwizo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bridge.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brittainconsulting.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "btsline.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bucksfund.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burritosalsa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "busqnet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buzzfeast.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bvrd.com.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bygoselink.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bymogarna.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bytetechy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calligraphychic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canadianfriendsofyadsarah.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caparicasurflessons.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carbonkiller.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carocream.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casualiswebs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cewood.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chaoticlab.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheeseginie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cialisvtr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citizen428.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "city-glas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ckpl.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudlight.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cluadmin.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubtur.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "co.fo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "co.td", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coffeetom.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "com.fo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conditionyellowacademy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consultation.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cosmic-service.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cosmos-indirekt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coun.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crockettmyers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cruelalice.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptme.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daddysluder.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dalbitresb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "damag.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielbankhead.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darbi.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidjusto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dawrimiz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dbic.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dcimpianti.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deltadentalmo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deltadentalsc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dgund.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dhlkh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dhruv.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digirence.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "directinspectionskc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dirty-tina.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dm-tools.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "docs-kelis.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doenjoylife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doh.sb", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dosavor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dot.sb", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "downtownafrica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragonbike.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drcardiofit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dronepanorama.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drstephanieteotia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-dv.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "earthpixz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ec.ath.cx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eco69.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "economydiva.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edugeton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edularidea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edularism.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edumerson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edunian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edutrum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eduxpro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edzo.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eftcorp.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eko69.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "element.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elivenet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emma-secret.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "endee.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "energyaupair.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "energyaupair.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "energyaupair.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ensingpodotherapie.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "espeo.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ewizmo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expertestate.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "externalapps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "extraupdate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fanzlive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fap.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fapplepie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fastfloorscreed.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fbo.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feastshare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fedoralinux.or.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feedthefood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finansinspektionen.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fitnetion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flyupture.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "folkfests.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foodieso.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foodnachos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foodonbook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foodrips.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foodtimeline.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foodtummy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foodzpace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forkfeeds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fortricks.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forty.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frankeurope.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frettboard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galaxysweeper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamingblogx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamingerox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gastroenterologen.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geckosurfschool.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geninspira.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getawayline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ginatony.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gitch.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giveuselife.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gjnoonan.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glas-systeme.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glaucoma.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalamend.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globeinform.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldschmiede-suessenguth.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graetgossip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graetintelligence.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graetnew.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graetnewsnetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graetreport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gregproffit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grimetoshinecleaners.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "groenlinks.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gutterdogs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hangryum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthcise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthlable.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthlar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthrish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthsone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herdingcatshere.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hetchie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hgseo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "high-way.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hndmd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoing.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hollybanks.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homezlog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hong.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "honigkuchenpferdeher.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "housecarty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "houseracko.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hungryginie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iban.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iinehp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imaple.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indumar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "industrialgassprings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infalaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infras.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interwebz-cheats.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iosolutions.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipgeolocation.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ironwaytransport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ishtyl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "issho.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isuggi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jacksonsykes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jackylawless.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jasminka.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "javleech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jcvignoli.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeremysnotes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jesslynfietje.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobin.care", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johutha.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jqlin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jsc.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "julia-jones.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "julia.school", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juliekoubova.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juliekoubova.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justinstago.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaffeesud.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalapatec.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karenerdos.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karinahh.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karolaschinkel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kikivega.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinebamps.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kleki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koiro.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koubova.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laracumkitten.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawcer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawhery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawluxury.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawrenca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawvize.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "learntobeonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legaltity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legeaz.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lena-nitro.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leoniepur-porn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leosty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "letgodbetrue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lewis-sharp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lia-fox.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifecism.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifekeycounsel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lilly-lil.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linuxwerkstatt.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liveomadic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "localmonero.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lodela.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lpcom.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lucarelli.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m24o.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macvcure.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malwarewise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mansionflip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marinamontana.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martinebot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marywet.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "massagegunadvice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maximegagnon.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maythai.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcseboard.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medicalsland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medschrome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melideluxe.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercedes-anciennes.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metrolush.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miablow.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michael-glaser.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaelglaser.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "migraine-en-werk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milaelaine.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minix.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "misiepluszowe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "missdoertie.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mivestuariolaboral.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mlv.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moneybill.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moneyblo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moneychill.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motivness.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motoblogism.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motoworld.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mountain-retreat-center.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "movie-sounds.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moyufangge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mqacg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrfreshtruck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msahebhonar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myamend.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myblogwire.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mybookbee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mygeneral.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mylatestnews.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myliveupdates.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mypropertal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mystylion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mytrendiya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mytruecare.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myupdatestudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myupdatesystems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myupdateweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nadinecays.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neoreflex.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nephrogo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nephrogo.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "networkposting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newtravelplans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nforto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nightkiss66.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ninadevil.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "njngroup.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nmfinanciallaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nomadiclifes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "note.ms", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noxomusic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ntecha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "o-bereg.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oasislab.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oceanings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "office-aslabo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ondav.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ondrejsramek.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oneurl.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onglobetrotter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onmaru.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oslo-kammerorkester.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osm.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ourplanetary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ovuk.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ownerbusiness.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pagedesignhub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pagedesignpro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pagedesignshop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pagedesignweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pagepapi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "payblog.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcmaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pensionesdominicanas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pepul.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "permis.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pihaar.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pkgbuild.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planetamend.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plantrustler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pluralpedia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornbabetyra.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pororoca.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pranabesh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pressography.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "princess.software", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "princez.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "probateandplanning.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prodigibook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "propertymingo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychotherapie-leipzig.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puntogommevenegono.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pychef.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qdrcst.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "queenparis-porn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quran-archive.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radium-it.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radium.group", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rawa-ruska-union-nationale.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rebizzield.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rebonus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recyklacekovu.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redfog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "region6armymars.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "religious-life.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "renwerks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "replici.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resumeworded.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revolution.net.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richmoney.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ridetour.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rilretg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robottip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosme.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rtvslos.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rulaholding.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rundum-service-omh.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "runnerslab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rybarski.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sageclinic.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarcastic.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarisander.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saurusly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saznworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scamadviser.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sciburg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scothauscounseling.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "segurosdesaluddominicanos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seogeky.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seomedo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seoquero.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seosearch.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servicecentreperth.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shieldnsheath.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shugarmanpsychiatric.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silent.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simava.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simply-premium.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sinavelvet.com", "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": "sirenasweet.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skovik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skybirds.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slowapi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smetbuildingproducts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soulcrazy.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soundcamp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sounds.koeln", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sp-pn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spdfund.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spicemail.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportsmagy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportsxplay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportztalk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "statusforward.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stereob.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stmattsucc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storemax.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stpatrickathenscatskill.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stray-soul.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studyero.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studylish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studynoun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studysive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stumpblog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stylepixo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stylesaag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sublimesurface.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sublimigeek.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "summermovies.nyc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunskyview.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sutore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svecbeton.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svetrelaxu.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svswebmarketing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "szhighsun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tacomarugby.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tagstatravel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talos-app.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talos-staging.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tantso.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tap.az", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tavda.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamkgsr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techgama.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technicalustad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techvigil.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tendomag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terremoto.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tessla.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tgymj.gov.tm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thajske-masaze-brno.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thajske-masaze-vyskov.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "the-club.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theaceblock.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theaus.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theboxoutofthebox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefitcare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefoodcops.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thehaze.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thekitchngic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theknowitguy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thelifevison.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "themedictips.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theseofarm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thetablehuff.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thevoga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thinkprocedural.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiffanyblooms.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topmotoric.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toptravelgram.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tradymoney.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelknowledge.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelstrokes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traveltains.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trendntech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "triageforensic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trip.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "triplevision.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "troc.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tronika.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trubos.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tryknow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tt-hardware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ttwtrader.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turbo.az", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turbowheels.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uniquepress.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "universalplant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "universeinform.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vapolik.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vatav.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verakoubova.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veryestate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vetputten.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vgywm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viega.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viega.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villamenty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinstafood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinzite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virtualscoutschool.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vloggerfaire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wanderfost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wanderinghiker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waronbrain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wdf.ink", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webbuilder.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": "weblistposting.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": "webpostingpro.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": "webtools-eqt.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wellzapness.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wermeester.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wgrstudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wgsh.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whatisthisapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whyzeroturn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "widenews.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikibulz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winmix.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "withfoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wmmkf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wmmks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workreveal.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldplayerx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldrism.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldscoop.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldupdatereviews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xavi.re", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xvmmod.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yachtbuyer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yachtcharterfleet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yarlesac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yesterford.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yhsh.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yizhihuang.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youngdevotion.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yummydrool.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zebraguide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zinewords.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zumba-oostende.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aamt.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acronis.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "actexpo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agargiulo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agendadelvolo.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altiusconsulting.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anabecoaj.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antinazi.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "api-bitrefill.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apollodiet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ariens.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ariensco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arienscohospitality.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arpsel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arthuro.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astuna.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "backinstockalerts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bantik.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bbhsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betwinnerkenya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betwinnernigeria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bevmoir.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bhpropco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "binoro.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonk.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brba.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "breakingthesilence.org.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bridge-online.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buddingoptimist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bugbounty.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bustmold.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bwired.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cangurin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cejgsd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chengta-money.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cocolink.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coderescue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comagexinvoice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "contactsrl.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coocook.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "criticalmention.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "curiositytrained.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dacada-porn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darkweb.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derpicdn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dest-gottskar-nidingen.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devil.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ditissaskia.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "divinho.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "divort.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drivya.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eco69.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecole-saint-yves-rennes.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esautotech.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esteticaprofana.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faqin-hr.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finanz-planer.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finanzierung-sofortzusage.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fitnessmaus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fpu.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gcgroup.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goodway.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grammar.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gravely.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grossorders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gwennyeeckels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harryvapoteur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hazen.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icojapan.tokyo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idgr.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "index-education.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inspiredhousewife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jamesrtyrrell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jianbin.wang", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jocurionline.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "julietta-sanchez.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jurancic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kazard.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kerkdienststream.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klikarnia.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kloop.kg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kredit-mit-negativer-schufa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kriskonaturopathic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kromozottrud.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kurssertifikasi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lailabanx.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lcwater.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "le-club.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lollipopo69.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lorucreative.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ludomo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luxanos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madecenter.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailer.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mantenimiento-zaragoza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maythai.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "md-service.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melissadeluxe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meslekkursu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moonfist.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moormiles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mpowr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mt4professional.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naifix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nasosvdom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notariatpublic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notaries-europe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlystars.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osssr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ostra.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oxfordtutors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patricia-lackovic.from.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paulgo.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcbuildinggr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pease.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pelgrimhof.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perfect8.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "praxisfilms.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ps-clinic.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recidivism.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rememberingjordan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robbrestyle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "romediatori.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rusunion.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sakainvest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seniorchoicesonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexyjenjen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexynaty.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sfat.llc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shamaev.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sharetheroad.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sialtv.pk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sindarina.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartfaktor.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartlinecomputers.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sonder.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spaceage.mp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stainhaufen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startbiz.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strattonapps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sylwiart.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "systemsense.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syzygycareers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tanpopo.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tazz.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tcbdarts.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thajske-masaze-olomouc.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tmberg.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tmberg.se.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topmuzika.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trademarkregistration-coimbatore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ttlg.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvmounting-houston.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upliftingappalachia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uwe-reimold.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uwereimold.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vertaxaccountants.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viega.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viega.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viega.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viega.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viega.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vircloud.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virtualroad.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivelawir.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waysandlore.consulting", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wimlanphen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wmasphaltservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wuergler-consulting.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xyzzy.earth", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zitstabureau24.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zorghuys.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ztn.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "54cuatro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acercapartners.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adh.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aequometer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alignedchiro.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alihashemrasheed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpencams.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amministratorecondominiale.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andorrainsiders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angisonline.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anker-wladyslawowo.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "annazweglinska.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apostasolida.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "araadvocats.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arca.info.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arcj.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armfilm.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlcoaters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atomik.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beestar.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bellatight.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betwinneruganda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bierbrouwerijderoos.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bilgehan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "binhminhpc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cac-ua.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cafevelo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "campingbuffs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caraliadeluxe.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cfcpestcontrol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chaos.stream", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citruspi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citruspi.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corerad.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cr05.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crabgrasslawn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "criticalrace.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crownedhijab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cugetliber.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cvbp.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cybertrinity.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyrilstoll.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "defend2.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delftstudy.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dermapaz.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dianaconsultancy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dillonm.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donazione.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dr-laber.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dylanwolff.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eaofcarrollton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easukasbestos.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eco69.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "egotripproductions.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elmandria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eltconsultants.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "equitable-igwm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ezifin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fanstuff.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fbausch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "felsare3.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fennydewit.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "figmalover.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filmdates.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filmoffice.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fincas-ruiz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "floridaplasticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hapticmedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hastadoktor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hidrolimpiadorasprofesionales.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holiy.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostingsupremo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hsselite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hurinkazan2020.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hydrocontrolsystems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iczer.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "in-ua.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "incentea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "incentivi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insideevs.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intelligentwaves.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iparduotuves.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itsch-itsche.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iyan.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jarmix.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jotbe.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jrzhong.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jtrojanowska.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jyllandsakvariet.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "komarex.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "komlangs.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kreftprzewieda.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lanaturedaure.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leaf-nail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leasecar.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lemco.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lenamorino.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "letsdoeit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liga.ng", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lillieprivat.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linmago.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lisasack.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lols.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magdalena-pulawska.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maritime-mea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mashoom.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "menddie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "midial.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "millerandzois.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mineturtle.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mittid.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modetalente.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moeblog.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mordamla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mumusofa.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n-doc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n-doc.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netletic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northflightaeromed.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nycu.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "online-fix.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optik-sehstern.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ostgotakonst.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oxialive.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paige.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parcelauditpartners.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piasativa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pokoiki.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porady-wnetrzarskie.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poradywnetrzarskie.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poshmark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powdercoatatl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powdercoatingatl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prevodkazet.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "procurs.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prof-waldowski.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "profwald.4lima.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puretermite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purupuru-shibuya.school", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purupuru.school", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pwud.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qconnan-photos.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qualitymudjacking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qualitypiering.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qualitywaterproofingco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quanquan.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rangersofbelgium.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raomed.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdv-coquin-rapide.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reactionindex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rebelcorp.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reteteaz.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ritoge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roseboom-bouwkundigadvies.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sajt-vizitka-nedorogo.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scp-rustenholz-trens.notaires.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "securl.chat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "securl.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sergicoll.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servers.vg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sharethe.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simbike.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skoskav.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skynetcloud.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solareagricola.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stinkmemes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoll.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoumann.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stpaulsbullville.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stylodessens.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "substances.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sv443.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "temporaryair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thewoods.earth", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thomaner.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinyemily.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topfd.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tpk-parma.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tutorials.vg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vacatecleaning.melbourne", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vejanoticias.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ventana.kz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verhaslaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "versatek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viega.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viega.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viega.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viega.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vimworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viral32111.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vzducho-klima.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wdambv.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webbanquyen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westsidechildrenstherapy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whiskydb.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whiterabbit.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikispiel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikkelweb.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wolfflabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wtccc.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "x-net24.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80aejhvi0at.xn--90ais", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youenglish.school", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourhumandesign.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zdorov.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zenstore.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zenti-im-zug.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "100v.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4sjnc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4y4.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acutron.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acutron.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aes.org.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affcreations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aischepervers-porn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ajoliveira.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ajoliveira.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akracing.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alignedweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrewnet.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "annyaurora.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arne-gammelby.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astypic.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atmi-zo.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auscultadores.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auscultadores.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "b0r.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bam.com.gt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basementdefender.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beecare.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belvo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betor.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bi-in-beeld.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bi-jenny.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biensur.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billwebb.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonitadesax.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bra-horapparat.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cao.bi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caso.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cbcnet.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chiffrer.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "covid-19.nhs.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "covid19.nhs.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidjktofan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djattack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donate.lol", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dziecismoka.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e2essentialelements.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecometalsrl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "effigos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elfejoyeux.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enotar.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everifile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fairtrade010.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fencestlouis.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fencestlouis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flect.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foxly.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geocoin2016.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gf0.ltd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldeneyesantafe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goppold.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hormigonimpreso.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humuluslupulus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imperialfencestlouis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "izzymendosa.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jabodent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janwern.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "josephojo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kadalove.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaese-journal.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kagi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kasad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keyua.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinocheck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kitty-core.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kittywilder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kokuryu.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kredit-ohne-schufa.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "labor-augsburg-mvz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "levna-knihovna.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liveevents.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lullugun.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luxonengineering.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ma109.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ma162.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macallan-tls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macallantls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marcsello.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mario.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masterglasses.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "merlinnot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mihirsingh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morawiecki.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nkg.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noschairsfauteuils.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nuranagi.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pc-mac.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pccc.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phruse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pod-emnik.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poplite.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privatevpn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "progressonderwijs.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "progressverkiezingen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qrlab.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qrlab.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rocketdoctor.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rombarte.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruonavaara.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safebits.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safebits.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safebits.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safebits.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sciencexpo.org.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seoagentur-hamburg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servantweb.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smart-mrt.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stanchierifamilylaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strojar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "surfinglisbon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svarka24.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syselg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebasementdefender.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebasementdefender.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tierparadies-muhrielle.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top-dance.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topophile.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelshopbooking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tri.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trifence.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trinitywernersville.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tyres-mechanical.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ulobby.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urbanpromisetrenton.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usmrecycles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uvsar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vancouverwaseo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vhumo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viega.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viega.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viega.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ward.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yabbr.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yabbr.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zahnarztpraxis-simone-koch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeitgitter.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zendev.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zipalerts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4digitiq.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5penazi.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5thgenrams.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abitextra.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abitextra.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "academiadelmolino.com.uy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accordimento.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "actfleetforum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aesculapliterature.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afearlessventure.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afiyetolsun.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agirlknows.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alcatraztourtickets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alicehartley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alicekinkycat.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alila.dog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allnations4christ.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alonaku.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alternego.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alugha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amarilio.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amateureuro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amiv.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amphora.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andersraagaard.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "annabelmassina.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "annikarose-porn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appleexterminating.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arbeidsplassen.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ardacar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aria-best.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aria-best.su", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arox.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arp-mb.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atelierlk.art", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "attatroll.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "attivazioneveloce.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aurtho.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avi-web.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "b1r0d4l0m.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balintjanvari.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barchetta.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bcalles.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bcalles.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belle-epoque-toys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bepxl.art", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "besv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betwinnerperu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bidenstopdeportations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "big.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biodaan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitchesabroad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitwardit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitwardsdev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bracket.land", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "braunbergerfreelance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brewsouth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buffalobill.idv.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bumsbuero.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bumsbus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "business-events.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buvocastings.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "byst.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bytesec.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cagbuzau.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cagir.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cairokebab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calvusconsultancy.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cameronphotographyok.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camping-chantemerle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "candyxs.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carcheck123.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "career-conduct.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carloelectrical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carmen1996.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinofollower.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "castingallaitaliana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "castingfrancais.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cathedralappointments.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cctld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccxperience.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ceetzie.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centralnic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chaos-wg.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charlientoi.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chattergallery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cherienoir.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christiangaro.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chromestatus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chunkeat.cyou", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chunkeat.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cincosf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ciphertech.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "claritician.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cleelandspecialists.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clothilde-wattelier.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cmsasia.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cngvp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cnil.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codeparva.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codepen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codepen.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coffee.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "completecase.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cosirex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cruisecontrolnovels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crumbscorkscrews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csp-tohoku.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "curioustea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "curvyjessi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cvec.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyriletsophie.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "data-servers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dax.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dearburma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "debedstedanskecasinoer.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dermarollerbest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deutscherquidditchbund.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deutschlandreport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalplaymakers.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dirtycosplay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dirtypriscilla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disparada.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "distritoae.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dmlaser.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doegirls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doppler.team", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drone-traveller.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dspbz.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dunkerhosting.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "durcoin.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecvma.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eduardomaio.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "educourse.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elderplan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electrostore.com.ec", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emilstahl.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enlightenspeech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esignandpay.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurobeaute.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evaberg.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "explane.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "facilitron.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fb.watch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feathermc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fef.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fitanu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fitodifesa.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flaeskeklubben.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flugsimulatorfrankfurt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fratellistomboli.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galaxit.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galfarma.cl", "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": "gankel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gannettinnovation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garo.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geloven-enzo.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gensleiten.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geogas.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glitchcity.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalenv.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalgate.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gostomaisdecarrosdoquechocolates.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greutmann.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grinnellksroots.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "groupamadirekt.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gunnlawfirm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackerhotel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hapticmedia.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hartan.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harvestfellowshipchurch.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hellomunnar.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herbigass.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herlimit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hinsdaledental.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hochimins.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "honeyxlips.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hornyhostel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotspotshield.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huntreminder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hypnose-nimes.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iftcentre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igrek.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infortheride.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inkdawgz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intab.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "integrammes.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intersys.uy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iptv.ge", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "islikimas.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isminc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "italyspecialty.coffee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jae.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jajojababy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jamally.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "japan-forum.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeroenstekelenburg.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jestre.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jezzicat.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jujutsuoulu.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kacy-kisha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaluja.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kasyna-internetowe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katerinaverbovskaya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katiepears.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kawadoart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ke8gtp-vf.herokuapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keepersecurity.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kerkeslager.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiarey.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "killerrabb.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinkyinlaws.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kkgn.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klimacamp-sterkraderwald.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kobly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kremer-sonnenschutzsysteme.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lameco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lasfolladoras.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lastville.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laszlo.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lazerinitiative.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leaseplanbank.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leaseplanbank.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legalne-kasyna.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lejlax.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lepraconsf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesa-kiev.biz.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesa.biz.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "levolor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liberationgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liegveld.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifetech.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightsproject.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lily-luv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linawinter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linusruckstuhl.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "literaturtage-recklinghausen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livewirecommunications.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logopedie-direct.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loli.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m2i-api.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m9t.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ma110.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magneetfolie.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mamacitaz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuelperujo.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marchingnorth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mariaangelamacario.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martinstepar.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marula-oel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matthewrochow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxjacobs.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcregex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metalweaverscreations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaelhastrich.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaeljames.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnenergiemissie.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minademonic.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mitelec.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mjhs.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mjhsfoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mniopenresearch.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moleestudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moneyonchain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moonlit.games", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtbfoodie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myfreespiritpointscard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mykelseyonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mynaughtyalbum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nadjasummer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natuurkundegeflipt.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nekohana-inuhana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nenderus.su", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neplatnasmlouva.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ngvgamechanger.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicestudio.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nintendo-europe-media.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nlgr.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noritakechina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novaintegra.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novaintegra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nowtricity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ntinformatique.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nuanda.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nuooly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nycctp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "officedivvy.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okskoleni.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinecasinoerdk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oprekin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osmarks.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paradex.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peacock.onl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peopleplanetconnect.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peplex.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "periscopeup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petemerges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phonetika.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pimo.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinupsex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixelturkey.art", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixelturkey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plustwik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pnwchirocoverage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poeticplanetimagery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poppsylvie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porndoepedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portugalbycar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qrlab.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qrlab.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qrlab.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quantora.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "questfororgasm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rballday-entertainment.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdto.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recetasdemape.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reidasmalas.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reifeswinger.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "relaxxxed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remi-theriault.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rescatec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retinens.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rev-crew.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reviewchecker.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rga.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rgacomputacion.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rimetsu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ring.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riverviewtree.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riwers.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rodgersawnings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rssreaderone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rutascostarica.viajes", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruthil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sabrinazeidan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safatech.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safebaseinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safebits.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sagacioussuricata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saltykai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sandrasturm.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanfranciscotours.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "satl-lelystad.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scamangels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scambistimaturi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schdata.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seintje24.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sextapegermany.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sgrs.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shaiden-porn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shoujochronicle.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "showslot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sig-io.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sigptr.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplepoll.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplevote.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplyvoting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slotsinspector.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartrak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snowprosinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sowsmallgarden.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speacock.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spinolamediation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spreadshirt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spreadshirt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stahlp.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starx.ink", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stb-schefczyk.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stb-schefczyk.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stor-guard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storspillercasino.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sweatercon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swellnote.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "synthesis.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taartenvanmireille.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taguette.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tapquad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taxprocpa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamclean.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teungedj.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theswanwindsor.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiffany-angel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tokinosasae.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tolls.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torkel.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transbella.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transtaboo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trifence.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trifence.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tropixshipping.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuck2000.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tundermadar.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "typhlos.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ubezpieczeniaonline.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "udenlandskecasinoer.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "udenlandskeonlinecasino.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unicycle.show", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upgradeit.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usatiuk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uwe-reimold.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vecara.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veganuary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viega.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viega.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viega.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viega.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vila-senov.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villeroy-immobilier-sete.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vindnu.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virtua.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visiblethoughts.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vnumngr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warungmini-vanwou.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webfoersterei.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winerytoursanfrancisco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiseuplive.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wojtekogrodnik.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workiva.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "writeyoursmile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "x-orbit.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xfirma.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xxxgr.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xxxshades.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yokocho373.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yoryo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zabszk.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zdrowebodomowe.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zesty.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zivotbezkrutosti.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zolucky.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zonadjadoel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "09kanagawa.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1986ventures.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2insights.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "40010monogatari.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "44ada.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a2g.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "absinsurance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abteutonia.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acallawayroofing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adacprod.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adelie.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agearo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agilan.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aibes.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aikiva.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexdutton.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexdutton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allinoutfits.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aloesbienetre.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ambor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ambor.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "annaluizaferreira.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anniecloth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aromatraining.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "askeygeek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "assurance-emprunteur.bzh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auguri-shop.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autopocket.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "az.st", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "az.support", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azsupport.host", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azsupport.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baif.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baubau.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beautyforceacademy.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitwards.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bleedingcool.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blogbookcassiopee.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluewire.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boredhoard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bowhill.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bummelwelt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bummelwelt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bumsbesuch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bunnymaxim.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c2lab.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "capitaloneshopping.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carien.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carnedelmercado.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casamariano.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocitytimes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "changeactivation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charliescomputerservice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chelseahgaul.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chicasloca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "choosevalley.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cleverbowling.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudscribe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "commercegurus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conexresearch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coombsinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "courage-sachsen.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dailypost.ng", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danddy.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielmicay.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielmicay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "decorlux.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dip.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dr-karagenska.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elkhaus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eluvade.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "englishll.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esprihealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eternal-con.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exp.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exposedcasting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fakeaddress.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "felixturgeon.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finanzen-weblog.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fish24.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freebetonthegrandnational.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freedomhouse.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "friendindeed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuckedintraffic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fulfil.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamingdose.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ghllc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goloborodko.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grapheneos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grapheneos.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grapheneos.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gray.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gruca.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackingwithswift.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hand.community", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "handigehannie.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happymine.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiramoto-ph.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hit-electronics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hkskhf.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelvisegrad.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hwasung.com.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icewood-bois.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indo-wiki.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itt-shop.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janbruckner.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jaumepons.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "journalism.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jqlsql.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kamio.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kenforeman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kingmakers.academy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kludge.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kmzs123.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lespinasse.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lessiamia.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macropremia.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mariella-sun.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marieskyler.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markhoodauthor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matrimoniosriviera.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "micay.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michalstepar.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minungdomsbolig.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moje-communication.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monocyte.host", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moocat.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multipotential-labo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neoneuland.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsignature.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newyorkland.forsale", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nichijou.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nisomnia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noracora.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northumbria.ac.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notmyrealmail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novayagazeta.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ocuuc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oldrup.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oztorah.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palotahaz.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pattyboobs.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paysera.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "percydutton.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pewforum.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phew.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.co.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pirofire.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plaut.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portatilea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "presentsofmind.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "printful.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privacypro.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prologic.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "protonbg.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "putty.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puzi.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qiqitv.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quest-on-demand.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quizzhit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qwqjsq8.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radost-crikvenica.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rajomon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rechtsschutz-onlineshops.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redsis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "renvisegrad.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rexograph.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ripin.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roselinlin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safegas.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saisons-fruits-legumes.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scorpia.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sebastianforst.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seoforyou.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shelfieretail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shinypebble.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shirley.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shoulderandelbowspecialist.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shrglobal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simulus.education", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siralyvisegrad.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siteintelstage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spindelnet.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stb-schefczyk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superbuy.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suzukiarindo.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suzukibali.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suzukicintadamai.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suzukinjs.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suzukisumberbaru.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suzukisurakarta.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suzukitradajateng.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suzukitradajatim.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suzukiumc.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svetbank.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sweetpummelfee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taguette.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tf2pickup.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "that.host", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thomasdbrown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "todeva.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tranceptortechnology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trasloedil.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trazs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twindii.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viega.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vipsexvault.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visegradieskuvo.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visit.natal.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivoldi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vvd.bz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "werkenbijbuvo.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whittle.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whooshkaa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wlcmedical.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workflowy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldcup-odds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yokorei.yokohama", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaroktv.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zlr.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zonesons.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1brd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "51acg.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "achatroom.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acnoventa.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ale5000.altervista.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allthefallen.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "americancasinoguide.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andonivr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andreas-kurtz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antennekaart.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aorangi-debt.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appoggiature.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "archeologiegorinchem.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armamentevolved.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artwhale.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aurelie-valognes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avtours.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axel-faure.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baraklava.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barleyandbirch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bcrypt.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bearzoutdoor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bels-lijntje.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bilibili.party", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bintra.directory", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bio-verzeichnis.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brunobeauvoir.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caj-eichstaett.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartegrise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "certidao-nascimento-pt.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chamberlinfoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chosting.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chur-arosa-bahn.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clementluck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "complete-concrete-concise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "connyduck.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coolansplanet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corebit.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creditoconsolidado.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyber-resear.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dachdeckermeister-moeller.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datacentresupport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "debianizzati.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dianadeluxe.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diipoo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dl444.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "do-it-service.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dobrynyastyle.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doeprojects.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drobina.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dutton.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e34club.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eaton-daitron.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "egzotique.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elblogdezoe.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emls.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emmadreams.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "entrepreneurnight.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epiclawnpro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essex.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "european-village.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabulouseventsmiami.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fallenlondon.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "famigliafiorini.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faqbite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feuerwehr-e-learning.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fibery.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fixedmatch.bet", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fjordtorsk.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freetamco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gabijazava.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamingdirectory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gehirnstatus.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genuineppe.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "georgiacriminaldefense.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geosno.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getahearing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gmc-mca.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldensunmfg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "golfkulur.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goodfundsgateway.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gridcatalyst.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gura.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hanspetersteiger.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haus.bio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hausfrauficken.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hawo.academy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hbo-center.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heliobil.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hinketsujyoshi-no-torisetsu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hofpleinlijn.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotbabesplus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humanrights.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i-li.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igamingsuppliers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ijmondlijn.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ikra24.in.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indexpert.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intercomunicadores.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ip-audio.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iroisedh.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isabellainlove.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iseecure.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "island-line.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivan770.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jasonchampagne.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jbootsma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jewishphilanthropies.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jjsguitarpickups.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jmtk.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joeshimkus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juzgadocaldas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kanz.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kelcible.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kendev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kingston-fear.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kleinhapl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kolabtree.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kyrabanx.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leakfix.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lecciculturadelvino.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesnoticiesdensergialarcon.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lisslonglegs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livecast.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ludovicfernez.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maitrelucas.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malagarental.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marshmallowchallenge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marykirsch.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxh.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melbournehousesitters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milano-web.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minamassimo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkey-solution.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkey-solutions.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkey-solutions.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkeysolutions.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkeysolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modderday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mur-parfait.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mwpromotion.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "namevirus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nataliealba.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niedermair.bz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notari.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nugratis.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nuvoagency.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "officedivvy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "officedivvy.company", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "operacionlimpieza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ostrausercontent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pawealthmanagement.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pay.sb", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "payat.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pebblenest.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pewglobal.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philipthomas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixeltranslating.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pocketgamingdirectory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pokerzone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "popcarte.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privacycentermqt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prosperityprojectaz.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rabbitcare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rc2edit.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rutasindonesia.viajes", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sakiyamagumi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samclarke.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samscollection.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scommessenonaams.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scootermalagarental.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seitanic-cookbook.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexyleni.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shigizemi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soniclaunchpad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sparrowwallet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speedvitals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spellchecksquatting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spendesk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "standardstraversal.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starprime.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starprime.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starwarschronology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stift-kremsmuenster.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stovokzal.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strawpoll.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studentinaneta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studiweb.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sugarfetch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supermedia.cool", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suplindex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suwebcreativa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tad.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talcualdigital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tartufomajella.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamb.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamtotal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecowboy.cafe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theemeraldmagazine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thepodcastreviewshow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thesilentlink.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thewindowsclub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timeticket.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timeticket.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topppinfo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trhknih.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tudinhoparasuacasa.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turksell.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "u15.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "u15x.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unian.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usatodaynetworkservice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veber.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verafin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viega.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viega.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viega.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visegradtours.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vondenstein.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wahay.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webblawmaine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webcreaciones.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wespringforward.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westskinlaser.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whisperlab.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winnlandscaping.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xchimera.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xploredundee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xs4ever.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xxxomas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yellow.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yellowmessenger.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yengec.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yukino.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaanlijn.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abyss.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ae.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afrimarket.ci", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agent.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agilityconsulting.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agrifoodtoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agrigentonotizie.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ahs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aircraftnoisemodel.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ajinabraham.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amsterdamtype.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amsterdamtypography.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anconatoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anordinaryhousewife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apordi.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arezzonotizie.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "argumentplus.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asas-tn.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atm-erasmus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avellinotoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badeand.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baritoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betaams.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beverleymoneyman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "birdrave.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "birminghammoneyman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitnoder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bolognatoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bresciatoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brindisireport.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bristolmoneyman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caleatoxic.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calibermind.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cambridgemoneyman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cardiffmoneyman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caricature.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casertanews.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinopromote.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinovendors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cataniatoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catanzarotoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ceet.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cesenatoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chietitoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christianwenz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citytoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cleansweepaa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudseptam.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cofense.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "computerjet.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coronacheck.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cortep.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coventrymoneyman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crmforce.mil", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cruicky.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "customhomerealty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberteam.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darc.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dasmailarchiv.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidrichardson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derventzis.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "die.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dieter.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dinglecottage.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dipsytroller.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dmarc-hd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doncastermoneyman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamy-flat-lyon.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dsdlove.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "energielabelbinneneenweek.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enzyme-sensor.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "espacefragil.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essexmoneyman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etsradio.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "euroairport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurocontrol.aero", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurocontrol.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everyeye.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fansta.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fipo.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firenzetoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fitxxxsandy.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flixpatrol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foggiatoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forlitoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framesi.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fujifilm-connect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamingmeets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gammabrossfrance.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gbdavisplasticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genovatoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getthejobicanhelp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grimsbymoneyman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "groaccess.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harborhillsdaycamp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harrogatemoneyman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heidegg.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hkconcept.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotschneckchen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hullmoneyman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hwvv.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hypokalkulacka.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilpescara.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilpiacenza.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indatable.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "informationsarchiv.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isaacdgoodman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "islensktlambakjot.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "japanesekeyboard.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jojo-kiss.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jordannight.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jummedia.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "junefolkhogskola.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justement.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaisanord.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaity-sun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaverti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kenshingakuen.or.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kimxxx.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ksw.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladyestelle.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladysybella.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lamigoshevora.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landroverexpo.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "latinatoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawnenvyva.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leadership-insight.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lecceprima.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leccotoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leedsmoneyman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lelulove.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liambaron.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lijstbob.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "link-live.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lisanotes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liverpoolmoneyman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "londonmoneyman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "losconsoladores.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luchtspoor.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lukasapetra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manchestermoneyman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mariamia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masterdan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mate.software", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "md28.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mega-jeans.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "messinatoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milanotoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miragrey-porn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mistajsay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkey-solution.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkey-solution.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkey-solutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkey.solutions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkeysolution.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkeysolution.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkeysolutions.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modenatoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monzatoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "national-anime.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newcastlemoneyman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nice-school.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nono303.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novaratoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nu.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "offshorewfs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oliveoil.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opensecurity.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opsecx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "organisation-mariage.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orido.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parmatoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pds.police.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pdsk.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perugiatoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pimpninjas.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pisatoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plateforme-exposant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "podycust.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pragma-solution.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "premiumdesign.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "previewtoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prodesk.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pwsplash.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pythondiscord.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pyxisfreelance.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quicomo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ravennatoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "relution.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rgtonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riable.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richard-purves.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riminitoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "romagnaoggi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosecoaudit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royaumesoublies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s8a.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sachsenlady.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salernotoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salesforce.mil", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scunthorpemoneyman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seishuncollection.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "senor-cheapo.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serverscan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sharpletters.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sheffieldmoneyman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "singleeuropeansky.aero", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solfipinformatique.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sondriotoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sortek.mk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soundservice.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportpiacenza.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starbase01.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studipro.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "subalert.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunderlandmoneyman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunsun-jewelry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunsungem.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunsunjewelry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swelife.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tamarind.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taylorburton-porn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ternitoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thingformatter.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top-aanbiedingen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top-messenger.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torinotoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transinbeeld.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tskimwagner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "udinetoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urlaubsziele.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urspringer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usapel.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vcs-steuern.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veronasera.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vicenzatoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-industry.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whitlockconstruction.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wildowi.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wine.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woordvanvandaag.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--e1aajhbc0amdp4byf.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yarokuk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yochen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yorkmoneyman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yoti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zefort.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "22betglobal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "514-media.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "514-media.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "514-media.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "514-media.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "activatenow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "addictioncounsellors.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aecnewstoday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aiguilhe-querre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aldarcake.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alikasimoglu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "all-tec.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alvinaonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amaxautomotive.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anoxinon.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anoxinon.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ares.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auckland-lawyer.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auckland-painter.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auto-rahbari.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "banket-furshet-spb.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bdsu-connect.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bdsu.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beadseh.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bencrump.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berkswatertech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betternews.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bindb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "birthinjurylawyer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "broomcastle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "broomcastle.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "broomcastle.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "broomcastle.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brun-despagne.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bygogmiljoe.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "candysamira.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chmfin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christinabjoern-nilsson.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cleandrains.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clevyr.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudu.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coachingforleaders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comete-electricite.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creditopessoal.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberhost.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dailytrip.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dankie.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dealandgo.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denisaadolfova.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derbymoneyman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "durhammoneyman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eben18.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eboxtenders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "editions-campanile.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elpac.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elpactest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elpactest.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elpactest.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "embodied.vision", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emmastarr.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "empoweren.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "energyhomeservice.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "engl-amps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "euro-cdm.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evalinux.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fdp-heinsberg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frankfurtergirl.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fronhadeseda.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frosinonetoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fundiggitydog.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furu-sato.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamingregulation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geekhelpline.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldenfawz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gott-it.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graysquare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grit3.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gztelli.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hazaristan.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotbella.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howoldisjava8.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idlxb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ifohancroft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igamingaffiliateprograms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igamingpocketdirectory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igorvracar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iliamna.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivi.cx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jardigital.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jbsoftware.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jornadahypera.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "judykatura.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kirarie-kusatsu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klimatt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konaki.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krefindo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "larafoxx.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawrence.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawrencebaker.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legacy.bank", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lincolnmoneyman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livornotoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lloyd-day.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lucidplumbing.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luckperms.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luvey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ma-queue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marbermedical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martinbiely.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mathdf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediantechnologies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metaword.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mezzanine.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minecraft.social", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minecraft.vip", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "misaka.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moda-querida.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moseic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "napolitoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nariohtools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naris-grc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nfb-ec.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nfb-fsg.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nfbam.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nfbassetmanagement.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nfbct.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nfbec.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nfbel.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nfbfsg.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nfbib.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nfbpe.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nfbplett.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nfbpwm.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nfbst.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicolas-benoit-immobilier.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ninarocha.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ninavegas.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nora-devot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nosite.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nottinghammoneyman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novanice.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "numeezy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nvestel.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nvestholdings.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nvestholdings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nvests.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omhome.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onedeal.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palermotoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pandora.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pastrybakerymachinery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pattayawebservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phsa.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "physiobalance.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plainoltrailers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pleasureplanetbrothel.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pleo.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plu.st", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornbabetyra.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proglib.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "queup.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qv-eherkenning.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raklouisville.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reggiotoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "repaircafe-hanau.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ribapo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rinka.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riseupelectrical.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "romatoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "runpartner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salimicm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scholarconnect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sec-tunnel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendaddress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "septam-orchestra.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexyvenushuegel.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shipard.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shipheart.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shown.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sindastra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sindastra.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sindastra.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snapkit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "socialab.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soncini.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spreadshirt.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spreadshirt.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spreadshirt.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spreadshirt.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spreadshirt.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spreadshirt.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spreadshirt.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spreadshirt.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spreadshirt.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spreadshirt.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spreadshirt.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spreadshirt.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spreadshirt.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spreadshirt.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spreadshirt.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spreadshirt.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spreadshirt.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stichtingwwtoegankelijk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supersonicsoft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sysrigar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sysrq.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "szwrc.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techframework.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "textprotocol.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thelansingjournal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thingsivesaid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tideritter.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "titanfile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "today.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "totalcontrols.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trentotoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trevisotoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuomiset.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veneziatoday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viega.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viega.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivalacloud.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waltermulders.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waterside-inn.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whistleblowersoftware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winrar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wixadvertising.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wonderfall.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wookstar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "x0r.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80aahvz2a9a.xn--p1acf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yebkw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yellowstrips.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yifanbian.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zlogin.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1sociaaldomein.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1stchoicelodging.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abantoclub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adityatelange.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexandertechniquenow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amelielei.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anbigift.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apirie.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appac.ltd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balkonov.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benclarkphotography.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bg2kuj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitloco.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blanzastore.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blueskiesmassage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bourbonridgeretreat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "campstuffs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chateau-patris.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christiangaro.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clapcafe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clevyr.expert", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clickpeak.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comtex.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cooalliance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cortlandvoice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cosmosdogbakery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "countermentors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crimeandwar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "curvysarah.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daidr.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deelmee.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devsectools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digi-typ.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digi-typa.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digityp.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitypa.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discarsl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donotdepart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dryusdan.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easybom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esteniomexico.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ezmob.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fajnshop.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "farmauna.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feast.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "findbalancedliving.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "five.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fleche-ardennaise.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fmn.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fnrs.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foredata.fi", "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": "fredericfrancois.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freeparks.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giftscop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giocolive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hantera.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hccnet.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huemeyraophelia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huthacks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indogenius.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infomoney.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interimnorge.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "invespex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jgpeterson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "julien.expert", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keio-formula.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kenrick95.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kernel-error.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kevinvermassen.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kn6olc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krednal.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kura.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lasseaktiv.art", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lasseaktiv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lindalush.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linux-tips.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loanpad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lojausapel.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "londonelects.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marketbar.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mehlvilletermiteandpestcontrolinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "merezha.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mitenloytaatoita.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mitenloytaatyota.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mitensaadatoita.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mitensaadatyota.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moulin-pomerol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msmetana.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-documentforce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-force-user-content.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-lightning-container.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-salesforce-communities.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-salesforce-community-live-preview.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-salesforce-sites.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mywikis.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nailspafinder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naprapativast.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noorden.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northtexaspiano.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nvest.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nvestproperties.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nvtz.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omatulevaisuus.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "padovaoggi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petmatchmaker.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "photomath.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phsa.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "projecttalent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "putre.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raw.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reispower.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "restlesseshop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revalidatiekennisnet.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s3cur1ty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sbcalitagtag.edu.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slotmachinesgratisonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snakesolid.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solanowonen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stream.gifts", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studioclassic.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunsungems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunsunjewelry.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "szclsya.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techexpert.tips", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teppelin.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "texasonlinemarriagecounseling.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": "thechelseadrugstore.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tilietu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trail-alps.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trail-alps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tranvia.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "triesteprima.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usatodaysportsplus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utilbot.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valleywaste.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veteransholidaylights.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viega.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viega.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vignobles-querre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vutrox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webgaku.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wildcaves.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wildflowers5.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "witheveryheartbeat.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "witze-fun.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woms.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wrmh343.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--b1ag9a.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--mitenlyttit-s8aad6xf.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--mitenlyttyt-s8aad6xg.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--mitensaadatit-nfb1y.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--mitensaadatyt-nfb2y.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ymlsport.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1x2betwinner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a-raven.corsica", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adamschmuck.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "addymail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adultgames.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amicusjunior.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "analbabsi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angielynx.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "annangela.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aponkral.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aponkral.net.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apw-dortmund.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "augendre.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auroranianoxx.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "av-dnepr.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avacourcelles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayyildizgrup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestkbeauty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betwinnerfrance.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betwinnermobileapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betwinnerpromocode.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitname.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackswirl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluespotmedia.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bokehandbows.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonaccordpestcontrol.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bravokorting.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brigittaspromise.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brnogame.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brnogame.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brnohra.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casalacabra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "city-nn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colegiojaimebalmes.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conrads.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dmitrysyrov.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dobryprezident.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dominikconrads.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dovebuttare.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dwiminneapolislawyer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easysignup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecoelectricsandiego.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ejerciciosmemoria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enfasyperfumarias.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enkelanmalan.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enkelpaamelding.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epicfail.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evisos.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evisos.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evisos.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forum-4.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fukabori-kaidora.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "generalsync.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "global-factory.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hak-lab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heidihills.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hfsg-habicht.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hollandco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hortico.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostux.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "individualobligation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "instrumentalverein-tueddern.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iphonesoft.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iroiroaruyo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isputinstillpresident.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jamesbromberger.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justgayvideo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kainelaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiwipedia.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kohlpharma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladyblackdiamoond.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liberale-demokraten.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lokomotivaplzen.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lucaconrads.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maryrock.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mateworks.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melbetapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melderegister-auskunft.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meow.enterprises", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-lightning.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-salesforce-community-builder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-salesforce-community-preview.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-salesforce-hub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-salesforce-scrt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-salesforce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-salesforcescrt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n4zm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nacionaltelha.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nataliapearl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nfb.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ninovayazilim.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nvh.group", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nvz-kennisnet.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "operacdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panmuseum.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phellow.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phellowseven.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phpkoru.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "picdefacer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pigfox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "podis.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pokemonsvet.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portail-partenariats.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prepr.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychcare.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quadrantrd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rega-sport.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rimessaggio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rmbs.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royrevell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salboy.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samenvoorelkaar.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyltmax.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solaland.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spagobudapest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sppit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stagewalker.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stakotec.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stephaniecalahan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superidea.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teachinginhighered.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamliquid.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theduchessbudapest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "themodel.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toman.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toman.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toolsforbiblestudy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "touringinmorocco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tourteller.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tubao.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uscc.org.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "v0v.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vapevine.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volunteerham.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vshipit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-performance.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webzschema.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xenoscopic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xsv.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3zm-cheats.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3zm-hacks.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3zm.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "521.dog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "589team.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "81.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "81alarm.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "81klima.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "81klima.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "88thpolarisscouts.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aavaa.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adviesfactuur.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agoracupom.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ahegaoroulette.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akelius.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alfabuster.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antoniorodriguesadv.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aquedim.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arcproject.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aschool.kiev.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aulacaribemar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avcipets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avishanx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "backyardtaco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basysconsulting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "battery-center.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "besured.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonami.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonami.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonami.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bravodeal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bravodescuento.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bravogutschein.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bravogutschein.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bravokupony.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bravopromo.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bravopromo.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bravosconto.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bravovoucher.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brferramentas.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brnohra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bubbleclips.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bubbleclips.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bubbleclips.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bubbleclipsnetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burstequity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burstequity.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burstequity.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burstsocial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burstsocial.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burstsocial.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cak.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cameronherold.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camgo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camreviews.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camsexia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camsexia.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camsexia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camshort.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camslurp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camslurp.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camslurp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cannellecitron86-biomonde.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chatdrop.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chatlol.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chatomg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chatshort.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "computerforums.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "computerinfobits.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consulenteambientale.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creditcard.run", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "curbza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cybergordon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danderco.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danny-rohde.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dannymoran.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datasourcenj.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dealsmagnet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dojodigital.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreigold.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eaofhouston.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electromec.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electromec.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electromec.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emeliecrystal.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "encryp.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eqlplayground.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eric-huber.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erichuber.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erics.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evisos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "federation.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fizmix.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flexi-dance.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flirtitup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flirtlu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flirtlu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "florismouwen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foods.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fpsjp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futaroulette.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genieall.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guysroulette.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happygardencenter.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harwoeck.group", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthmedcost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hehecams.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hehechat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heheparty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heheparty.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heheparty.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hentairoulette.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heyomg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hofor.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hote-inox.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i49.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibizaluxuryachts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iheartguys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iheartguys.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "in-bachelor.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "industrial-ventilation.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isc2estoniachapter.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jbdillon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jiji.co.rw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jizzoh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jizzoh.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jizzoh.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johnnysandaire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joingy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joingy.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joingy.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "josisummer.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ka-kousin.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaputt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kazap.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kickasspoker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kikki.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kivacontainer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kobalux.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konoka.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kowalski7.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laboni.design", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lactatiekundigemanouk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lacylynn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lenasophie.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "letselhulpservice.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linalove.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livechads.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livechads.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loic-raymond.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loldudes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ludunwayoo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lutruwita.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ma-canne-a-peche.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madmaxstore.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marrakech-camel-trips.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maviepearl.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "menomg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mhilger.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-visualforce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "na.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nationalacademic.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nemtilmeld.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nephrogo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ngergs.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ninth.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ninth.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ninthc.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nubank.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nxedge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obihoernchen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outfaced-dancestudio.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outsourcify.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p4plus2.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paulopeters.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pock-programming.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pre-commit.ci", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "promovendum.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raku.land", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "renet.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "risquefetish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "risquefetish.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "risquefetish.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "risquefetishtoys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rivenmains.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rizhik.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safevisit.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanalturcu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schadehulpservice.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sealart.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexoclicker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexoclicker.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexoclicker.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiptron.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sissyroulette.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sklepbhp.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snesdev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sospechhulp.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speleo-explo.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sport24.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stntrading.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sto-garant.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strategicenvironmentalassessment.gov.scot", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talktobabes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tamistuff.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tamylove.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teampz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tempocams.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tempocams.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tempocams.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tentries.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thots.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traproulette.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trapsexy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trapsexy.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trapsexy.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truongnguyen.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ts3frei.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turbosim.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turoktv.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volichat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vyberdomov.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "werkenbijpromovendum.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whoagirls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whoagirls.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wowsosellout.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youngcouple9598.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yurtdisigocmenlik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zry.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "10web.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "8crafty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ab-solutepilates.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advancemoversnc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airm.aero", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "albaronventures.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alemagia.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alieninternet.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alieninternet.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amandablain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amazon.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amazon.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amazon.sa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amazon.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anglarsports.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ansperformance.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aqueducttech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aresztowany.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aresztsledczy.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arnews.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artem.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artucation.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ascensiongt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asphaltsolutionsnc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asustor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auskast.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autistici.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auto2019.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autokino-sachsen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badmintonbeersheva.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bankera.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baseballsapka.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bassstraitmaritimecentre.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belgive.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betop-lab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonami.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brellich.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bslinguistics.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "budapestgraphics.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bullish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calamp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calla.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canadianmetalworking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carroattrezzi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cassilandianoticias.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centerpointwest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centerpointwestapartments.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chckr.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chefshooba.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chip.icu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chobitool.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christianbecker.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudforce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cracky-chan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crackychan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dailymotion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darkboysmedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "database.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davyjonesatacado.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demetra-site.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devonport.tas.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dlcompare.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dlcompare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dlcompare.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dlcompare.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dlcompare.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dlcompare.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dmitrysnotes.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "docteur-delorme.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "documentforce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "douglascustodio.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dpmr446.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drmarwanbaroud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edcdn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edel-suff.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electromec.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electromec.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ernotek.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esiliati.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "espace-vet.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estila.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exizent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabfrenchinsurance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabtechexpo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "factoriobin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "farringtongurneyvillagehall.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fdnsc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fehlerqultur.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "financeaffiliateprograms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flslawyer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fluoxetine2.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fmamfg.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "folszyb.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forceusercontent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forgetmenot.care", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foto-na-doc.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freechatlines.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fs-d.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fs-m.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geoip-js.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geolite.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gimmickmedia.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glassner.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gotvax.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gueules-cassees.asso.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gusted.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gynaemd.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haarbosch.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hadetlachapelle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haguichi.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helene-conway.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "henryalanbrown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hunterscreekapartments.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ideahubnepal.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imerys-mineraux-decoratifs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infhosting.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inforata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insiderx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isopro.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "italiano-bello.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jabramson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janbennink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janik.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jarkkorahkonen.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "javan.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jnktn.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kamistik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karkkilandemarit.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karlogavric.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keibablood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keymicrosystems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kittyknickers.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konsultermedipv6.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kram.tec.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladyisabell666.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladykarame.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lafeepraline.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landcomputer.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "langlois-chateau.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leetizia.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lemediateur-creditagricole-nord-est.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lenifuchs.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liesbethkeijzer.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liveman.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lnzphoto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "londonnorthwesternrailway.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "longpaddock.qld.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ma-paroisse.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madeincanarias.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mariskax.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxweiss.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metalworkingexpo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mfr-lameignanne.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaeldancot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mihaiordean.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "missadrastea.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mitgrussen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mitsu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mitsu.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mk-translations.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mon-cartable.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "money-trust.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msp.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muzotakt.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myakkatactical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mystinkefinger.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "namecoin.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "namegen.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natesigal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nathanielsigal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nearnorthmassage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nelosculpteur.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nettype.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newspawn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noblogs.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ojapanesetea.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onecharge.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlycrumbsremain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oxwebdevelopment.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p-k-b.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pacificprivatebank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paczkadlawieznia.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paczkazywnosciowa.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paniigielka.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paretoit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patris-querre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paydepot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "permutationcity.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pervesk.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pfsandbox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pgmsp.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "photofinale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pkb.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polbox.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prana-me.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "project-ice.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "przyciemnianieszyb.waw.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psycho-familles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "q3.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quest3.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quest3.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quest3.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quest3.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quest3.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quest3.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "questiii.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "questthree.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rankya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "razoesparaacreditar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rcotec.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realclinic.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rochow.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ronaldcantor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rtgame.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rubinamillinery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sabharwallawfirm.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sales-respect.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salesforce-communities.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salesforce-hub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salesforcescrt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salmadenora.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samwelek.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "santackergaard.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sapik.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schoolcashonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scoopcake.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scoutwired.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "selvaggialucarelli.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sequenceconsulting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexgood.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexyanne.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shatalov.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shibumi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sho-furtwangen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skupautwarszawa247.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sleismann.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spectrocoin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sphynxboyz.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stanmirstudio.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stellacinderella.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stlueke.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strategery.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunbirdgrove.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sweetpinkpussy.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sweetsusinrw.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sykam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tarekfadel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techmahindrafoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techmaish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "televentabelcorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thamesvalleybuses.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thechatlinenumbers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tombolaarcade.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tophr.kz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trimarix.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trippati.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsxxlangel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ucinvest.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unitizer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upgrades-and-options.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uvsa.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "venurse.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vickyhundt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villas-parfumdemyrte.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wanderingincaptivity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wave-inc.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wearepoo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "welove.lk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "welovelinks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westmidlandsrailway.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whiteshelf.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "williamsigal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "willsigal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldofgeekstuff.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpdev.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpinabox.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wypiska.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yaencontre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yiff.rest", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yogaovelser.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yummycouple.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zatrzymanie.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1x1.re", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "9lab.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abc123autumn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abrupt.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "activityinfo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "add-ons.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ahmedszaidi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akaritaste.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alfryadi.my.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alien.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alphotelmilano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altd.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altoplan.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anccg.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apambiente.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aviationsafetywiki.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belladeluxxe.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bellebaum.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beverb.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boathut.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brudevelopments.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buchholz-coaching.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carobme.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catb.on.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cinccapital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clever-datenschutz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "commagere.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "computer-service.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crazyachmed.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cybertinus.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dubreuilville.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dyrkar.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-virtus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eeia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "energoproff.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enrega.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fauxil.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flashcover.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fmanet.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "force-user-content.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foundland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaborg.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gassycat.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gassycat.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grandfallscamp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grayslakeadvisors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "green-snake.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heligrandcanyon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herriman.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hipsterpixel.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostprior.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotsvenja.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immobilien-uster.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "integralcare.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "javacakegames.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jennahunt.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justformen.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kadeatwood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaisyo.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kantora-plovdiv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kevinackford.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ksiegarniabk.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "la-boutique-langlois.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lacapsule.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lavanderia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lealuestern.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leism.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesnet.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libramedia.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "limitededitioncomputers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "limitededitionsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lolalacita.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loujaxx.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luxaterra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luxe-in.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madrespect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marilynmonroy.com.ec", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediaspike.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medreich.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melrosemichaels.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milleralarms.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mithypnoseweiter.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkg-laposte.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mmapiws.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mollysun.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakedtruth.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nimiq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "octavia.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omnidiecasting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ontarioplace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opticstore.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orestadit.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "owlbee.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ox.restaurant", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oyaptcdsb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paczkahigieniczna.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petmegoo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ph-consult.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "popdog.click", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ptsjapan.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quest3.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rapbull.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rcdeescolasantcugat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reginaascanio.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rehab.cn.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remontlog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salesforce-experience.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salesforce-scrt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salesforce-setup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sandramargolesmd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saria.fun", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sber-solutions.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scantrics.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sfdcopens.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shadowandy.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "significado.origem.nom.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sleismann.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smuc-koca.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snrd.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sortirentrenous.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sumac.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trekosecia.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uniquehardware.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uniquehardware.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usefultravelsite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "userstyles.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vilavyhlidka.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villablancaluarca.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visit-sanbenedettodeltronto.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivekparekh.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waynehartman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wbnet.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webgrow.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weetix.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "widzenia.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wolfertconsulting.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wsheffield.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn-----elcblfoyosbv5mwb.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yamanobe-taro.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeppelflix.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zseartcc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "00.eco", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1kilise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1kilise.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1kilise.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4filtre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aad-gp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abctwenty.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adaptyourlifeacademy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adese.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adventureprooutdoors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "againsttheodds.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airquestion.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alerque.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexlambertz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alinalamour.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allegrettoresort.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allegrettoresortandvineyard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allegrettoresortandvineyardbyayres.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allegrettovineyardresort.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allergy.university", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alohotel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alohotelorange.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alohotels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altusbiologics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aolcollege.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appliedmaths.lk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "argosasist.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aryescommercial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aryesgroup.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aureshotels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avm99963.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayersgroup.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayershotelsealbeach.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayerssuites.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayerssuitesmillsmall.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayresapline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayresboutiquesuites.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayrescalabasas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayrescares.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayrescommercial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayresconstructioncompany.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayresdevelopment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayresgroup.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayreshotel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayreshotelgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayreshotels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayreshotelsealbeach.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayreshr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayressealbeach.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayresselfstorage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayressuites.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babygearlab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bailong.kr.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bas.surf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basf-vcar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beal.edu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "behrer.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belcanto.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bella-klein.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benimsetin.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biggsconstruction.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biofizpribor.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "birkilise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "birkilise.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "booths.cyou", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bretonhouse.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brk-t.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brk-t.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brkt.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brkt.church", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brktkiliseleri.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buttertea.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canossahospital.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carrosserie-delaval.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinobonuscodes365.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.africa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.ag", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.am", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.ax", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.ba", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.bi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.bj", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.bz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.ci", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.cm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.co.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.co.bw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.co.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.co.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.co.na", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.co.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.co.tz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.com.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.com.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.com.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.com.jm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.com.ng", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.com.ni", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.com.pa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.com.pr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.com.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.com.tt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.com.ve", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.cr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.cy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.dj", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.gd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.ge", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.gp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.gs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.gt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.gy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.hn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.ke", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.la", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.lc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.ltd.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.ma", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.md", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.mk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.ms", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.mt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.mu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.mw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.sc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.st", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.sx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.ug", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.uy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.vc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.ws", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cbcnet.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cbdication.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centralclinic.science", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centrumpodpora.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "china-midas.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chocolat-lp2.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chopnotch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christineglaeser.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clinic-manager.academy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudav.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudmanagedbuilding.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudmanagedbuildings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudsweeper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudsweeper.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codewrecks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cogknockers.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "computerthings.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consorzio.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "copiisiparinti.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corservsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crackychan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crewvision.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "czechpoint.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielacorahansson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deckfix.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devinlasarre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dgtl.tools", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dgtl.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dhuboeuf.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dialog.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dialogue.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dialoguecorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dialoguecorp.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discodoener.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dobleseo.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dostat.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dryasinakgul.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dum.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dutchie.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dynamitejobs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-matras.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eberspacher-rus.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "einsteinium.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eleventhhouraltar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eleventhhourwatch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elinaflower.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "encinitastrainer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "error.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurocontrol.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evakuator-kharkov.kh.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expodom.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expodom.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expodom.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expodum.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fanbike.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "femik.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fexopay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fffdm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "findmyfamily.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finndel.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freifunk-duesseldorf.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fullzest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galenguyer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gassycat.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glacialexperience.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gmavsg.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grapheneos.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grapheneos.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grupomonti.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hannahbarrettyoga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happiness.solutions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haveg.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hme360.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homesbyayres.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "horsewithnoname.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotshira.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huntingtonnow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i-tools.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ians.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ichbinkeinfreier.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ichigo.university", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iino-iina.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immo-les-allees.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indiainvestments.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jackienguyen.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jadelsbach.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jarlette.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeff-dom.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jemnezymy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jolienoir.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jordioller.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jude.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juliasugar.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "junix.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kai-justin.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalompaturi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kbhfuge.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kennisnetwerkparkeren.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kondo-kougei.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kurt-und-herma-roemer-stiftung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladymeli.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laffgaff.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lambertz.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lealove.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lechateaurestaurant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leksi.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lemasdupalus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lenstamiri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lousingchaphu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovellgov.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lr-expert.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luxehomecompany.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magicdesktop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailnerds.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailosaur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mairangiautomotive.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marmurmedical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maryeileenkelly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "microbiota-insect-vectors.group", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mizuhofutures.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mob2con.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monkey47.events", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multsearch.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mushroomcloud.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nannatextiles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nannatextiles.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "narindal.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niklashagman.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nimit.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nmeoverbetuwe.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noithatphangia.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noroutine.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nosleepforrobots.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notif-build-laposte.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "numxl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "offerground.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oliver-wenz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oliverwenz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "online-umwandeln.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onsenlaichelesdoigts.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osmosebox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pablocelorio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pajamka.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paladin.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pandora-system.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pangea-it.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parcelup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "periodicomirador.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pet-guide.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixyship.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portaldocredito.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prikeshsavla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "primemotive.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "professionalrakeback.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qlcvea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quokka.codes", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recursosimbiopos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rinko-mama.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roedesonline.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "runeblog.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salesforce-sites.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sameteem.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sandiegotaxpreparation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scansnus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schauspielbuehnen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schweizers-restaurant.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scottdayman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seb.surf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secretsofuniverse.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seika-housei.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendonomics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serverbit.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serviciosfncs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shit.works", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sigvik.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skybrary.aero", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sl-alarm.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snackbartaapje.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snapfinance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snehasish-chakraborty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sourceaudio.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sourceaudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spaallegretto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "streamfood.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sudoku.org.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swecha.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "t-wirth.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "takao-hs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techgearlab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tecno-block.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tekinfo.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefabricator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thehamptonsvegan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "therapiepraxis-westbezirk.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ti-coast.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toolzone.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traumobjekte.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traumobjekte.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turc.church", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twincapsula.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uploadtokiosk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vado.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vintom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visualforce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitaalcheck.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vk2.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waterlens.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webasto-moscow.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webtoolhost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikimedia-dns.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winwiz1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wirsing.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wolkenputzer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wondereur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wseo.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ximware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zacatecasmeetings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zerm.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abch2o.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adoucishop.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aerotrophy.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amyred.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angstrommold.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anubandarage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arlon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "au-inter.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aurelien-duchene.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ausset.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "b8a.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baddrones.llc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bavoogi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bedford911.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beko.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benimsetin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "birkilise.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitchyjana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bjoern-thoroe.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blasflittchen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blkj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blokmap.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bodytechautomotive.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonnydevil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "braziliaskincare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brktkiliseleri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bryanley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bushingsandbars.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "busty-milf.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canyoncreekjeep.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cappp.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.sn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.tg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.web.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdawoerden.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chariz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chiefworks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christiangaro.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "churchofsmyrna.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "churchofsmyrna.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "compeon.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "compliance-risk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crioestaminal.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cusgpwoerden.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darlenenbocek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daservajesus.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devilsophie.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devoteschlampe.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diansung.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dicemer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dienna.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dmr446.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drewtransportllc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drone-laws.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easlerlaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "effigos.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ekosf.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eliseshivamber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elisetriestocook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enefit.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "escuelacaninalatejera.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evv.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fasad.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filmfestivalflix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finteo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finturio.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forbole.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frankychen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freebettingreviews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funguana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gabigold.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getcontact.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gratiz.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grfnhousing.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "groupe-goddi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grzegorzchomutowski.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hairdrezzersonfire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hazytales.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hobo.video", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holydumplings.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "honeyuniversity.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostker.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howtomediacenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huapood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imrozrum.k12.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iotanodes.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iris-elements-development.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iris-elements-development.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iris-elements-staging.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iris-elements-staging.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iris-elements-testing.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iris-elements-testing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iris-elements.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iris-elements.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irishub.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irisws-development.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irisws-staging.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irisws-testing.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jachtypruszynski.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jci.care", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jci.coach", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jci.community", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jci.domains", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jci.education", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jci.exchange", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jci.fail", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jci.fyi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jci.gallery", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jci.graphics", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jci.guide", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jci.institute", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jci.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jci.marketing", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jci.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jci.photography", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jci.productions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jci.promo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jci.pub", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jci.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jci.tips", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jci.university", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jci.watch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jci.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jci.works", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jci.zone", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jennystella.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jessicasmith3d.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kamer.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kievholod.in.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kitchenvile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klinkersnab.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krbzh.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ks.kr.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kubopro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kubopro.cyou", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lacavedesergio.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladylatoria.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladyvampira.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladyvictoriavalente.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lane.computer", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lefreka.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legendofmi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "letocar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leylalips.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifelinksystems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linke-kommunalpolitik.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "littlenicky.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lolware.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "losdeshollinadores.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lqd.plus", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madeinua.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maldivestraveller.mv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manegu.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manumagnum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mathebibel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medicus.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "merco.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "micolab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miem.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milani.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkg-pch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moeblog.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monstergovt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motobrasilferramentas.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtgoptex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multi-pribor.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "murasaki.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mviess.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nemnodes.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nocoffeetech.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nosandjayo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notif-colissimo-laposte.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notif-laposte.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notif-lidentitenumerique-laposte.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notif-lpfr-laposte.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notif-moncompte-laposte.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oilsan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omniaintranet.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omniaintranet.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omniaintranet.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opticsexplorer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orthocab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osawatomieks.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "owlandbee.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "owlandbee.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "owlbee.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "owlbee.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "owlbee.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "owlbee.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "owlbee.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "owlbee.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panetolikos.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parisdeluxxxe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plumair-ve.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powersergcloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prek.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puroyorganico.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ravenandsage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdmc.center", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdmc.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reliablewire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remote-health.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rotaville.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sally-secret.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salmonde.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schupp.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sensoria.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexynoemi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sinergify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siyuan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skillshare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smart-lab.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snowman25.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spicerack.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stefan-karstens.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stiphosting.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stjohnpa.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studentstc.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sv-ec-ditzingen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "symbolnodes.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talentoday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taler-systems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taxly.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tenshindo.ne.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tf2pickup.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thegadgetflow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomkompserwis.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tracyhaze.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transit.my.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tree.gdn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trimsalonelst.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ulm-eurofox.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "umv.gov.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "un-box.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vault12.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veidiheimar.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viega.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viper-drones.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "watfordcyclehub.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wedontca.re", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weplaycollectibles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wet-international.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whalecrew.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wixmultimedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wuellenweber.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wurstmineberg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wynlv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xevolkswagen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yaslihastabakici.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youngsophie.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yvettextreme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zurich.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexandryimmobilier.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allthingsroyal.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amesagesse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apple77.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armourroofcolorado.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bamberger-maelzerei.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bananatreenews.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestroofinginkansascity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canningpartners.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caporalmktdigital.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charteredsurveyorinlondon.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "communicate2lead.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cptvl.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cranepedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creativeworks.com.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datadoghq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daware.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desenvolvimentolocalvfa.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digar.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domain-comparison.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domsamogona.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doswo-design.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eridan.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everything-as-code.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forest-remote-control.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fragara.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fundingoptions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funkimforst.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homeopathieridderspoor.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idolfap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insights.plus", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iwp.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jerichoproject.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kialo-edu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lanispa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leefjongeren.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailchaud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "majasballites.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maritiemshertogenbosch.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maryamghorbani.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxdata.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metro2dev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "microlog-online.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakaci.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakacide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nikavenus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ofkodasplace.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omnitrattore.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pigslv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portalchega.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privacypros.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proofpoint.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "r.nf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sbequineevac.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sbhscotland.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secdfir.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snowplow.forsale", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportli.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stickers-garage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "team-work.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamshirts.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamshirts.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamshirts.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamshirts.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamshirts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamshirts.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamshirts.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamshirts.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamshirts.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamshirts.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamshirts.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamshirts.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamshirts.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tfw-a.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thedev.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tutudaju.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voltfloyd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wengyep.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "willowpf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yilanju.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1a-media.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a-frique.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acculongrange.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adamcarbonell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adviesgv.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ahiha-design.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ahityayinlari.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ahityayinlari.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aixm.aero", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "al-hekka.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aldebaranbm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexsavin.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alibi-ua.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alizah.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpencams.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amberesdetective.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amxm.aero", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ankarasondajkuyusutemizleme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antecipa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apcw.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apit-kovrov.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appllio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arabic-for-nerds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atmmasterplan.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "austinlaw.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aviaskan.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azs-nw.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "backupauthentication.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bankrbk.kz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barcelonatours.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betwinner.co.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bifrostwallet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigdayproductions.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackcountrymusicband.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boleleboyz.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bpvgoncalves.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brandbags.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bravelocation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brokerlink.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brotwurz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "businessvalue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.sb", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.sl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.vu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccwallet.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chirality.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "claarycherry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coffeestory.in.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cogetop.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collectifpinceoreilles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "communitylivingalgoma.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "copybysophie.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "couchscreen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "craytos.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryozenic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "curinline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daveredfern.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deinjoghurt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deliuksta.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delprete.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digipartindex.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dirtysindy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnslytics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dolezalpartners.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doriangardes.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drenergysaveror.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ds.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duhanic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duhanic.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dvkg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "effmio.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "einfachkiss.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eisenstark.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ekosaltis.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elliyoung.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ewighost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fairlesslaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faithfulfaye.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ff-tostedt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "findahero.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finehomesource.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foma.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "format.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forumrowerowe.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fredz.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fruturaproduce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fsmi.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gabriellearruda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garbuszus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garo.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gddzqg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gelaterista.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "george.black", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "germaniumsoft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glennfitzpatrick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "golfbettingsystem.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "groupama.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guddaff.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hasjob.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthchecks.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hosthum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hypercritical.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igamingnews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indiangamingreport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irion-edm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iron.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "italianforkids.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "izzycat.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jacobtaylor.id.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jls.idv.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jonasvildmark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jonkpl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "josiemccoy.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jpr.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jtkconstructiongroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "judithsargentini.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juliajuice.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kde-je-skladem.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keelandlong.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kefucha.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kimberlycaprice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kimherala.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kooranaps.wa.edu.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koreankiosk.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krustyland.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kyleggiero.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landfrauen-hermetschwil.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lemonadefashion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifamily.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightning.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lolacandy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loreedeslandes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mariadelcastillo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "massiveanalyser.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mbrjun.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mddietclinic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mdl.co.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mernau.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miaadler.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mindequityinternational.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mjuktvatten.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mn-hootsuite.herokuapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modenodf.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moscardino.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motd.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtzfederico.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mydesignrules.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mylittlewizard.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n8.gay", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nationalgridrenewables.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newgardenfarms.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ngplus.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nhance.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nummer378.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "office-mizutani.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "offlineauthentication.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onestarclassics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onionshare.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osdeployments.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paribus.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pegrum.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pod.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powerpc.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "premieraviation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "promobit.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "providmedical.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puffyan.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puppylove.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puzzyfun.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qiber.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quest7.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quickquote.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiocommande-forestiere.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ragstores.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reikicrystal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revosoft.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rialto.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rubberband.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rubenslikkarchive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rubidium.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruffm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rvf6.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saam.aero", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sangina.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saracenmarkets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sbmsmartaccounting.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schokobebe.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secolve.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexystine.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shade.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplyfixit.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sixam.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skybrary.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slotcatalog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smallcubed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smooth-e.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sourcegraph.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "split.rent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spocool.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sprossen-keimlinge.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stackery.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stjosephtownship.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strappazzon.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunglassstyle.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swim.aero", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swizio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taigalaloca.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taltech.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "targoncavasarlas.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tbunews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tbunews.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toponlinecasino.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toskavista.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traumaberatung-lindner.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trionyx.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "triplefork.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trixietainted.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truework.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uatuning.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uavis.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ultrabkk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "umasoda-tohoku.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uwe-arzt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vanndigital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vasficelik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vikrantkakad.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villagevetcattery.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voctto.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voditel.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voiretmanger.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wkd.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wuermlitaucher.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn----7sbkofbbj4akz.xn--80asehdb", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yamagata-fujinka.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yebshotel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yeltzland.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yespornfree.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zentoid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zjyoulian.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "znajdzprzodka.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zvukipro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "305westendassistedliving.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abbystrange.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abenteuerschule4u.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ablmultiservice.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acmebookkeepingsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acurapartswarehouse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adg.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adhdyoga.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adrenalin.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aiaccinu.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aiscale.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aisrvs.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aitsl.edu.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alissanoir.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpencams.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artesoft.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asturhackers.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ausncp.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avepoint.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bdsmbibliothek.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beanboygames.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bmwpartsdeal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burzcast.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "byalexia.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cannaseedsonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.re", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catechese-ressources.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cccpublishing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chainex.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codecolliders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cognac-oenologie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "computer-kleinmachnow.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "computer-service-24.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consumer.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cwbc-bearing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dd3ah.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalbang.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disenian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drissner.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dsecure.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-estonians.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eco-price.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elektrosety.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elemistlarp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eliamakingmemories.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elizafranklin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "entityelevation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eroticmassagevegas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etudes.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashionunited.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashionunited.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashionunited.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashionunited.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashionunited.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashionunited.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashionunited.com.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashionunited.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashionunited.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashionunited.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashionunited.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashionunited.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashionunited.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashionunited.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "final-x.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flynowpaylater.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fordpartsprime.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forkknifeswoon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frc.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giltedge.travel", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gmpartsgiant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gmpartsprime.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goddesslena.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackersclothing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "halalbooking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haydenfranklin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helloverify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hondapartsnow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hondensnacks.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hutavaterstetten.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hyundaipartsdeal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ihr-hausarzt-kleinmachnow.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ihre-ernaehrung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infinitipartsdeal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intranetcity.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janker.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiapartsnow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kintanalodge.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kurtisfranklin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawmint.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leo-translate.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lexuspartsnow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linejuby.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livli.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livli.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "localdigitaldesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maafushiscuba.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mawinguhost.co.ke", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mckenzielandscaping.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meettheslavs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melinacurves.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mengyibai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "methodprinting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mihir.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mimikov.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mixgreen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobidevtalk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moparpartsgiant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motorring.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muhiminulhasan.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myip.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nerdalert.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicanordic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nickyfoxx.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nissanpartsdeal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nm.sl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notabug.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oakrealty.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palantir.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paymeservice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piajuly.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pillow.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixelwijk.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pochemuchka-books.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porn24-7.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornfreehub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "posh.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "positivethinkingmind.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "premierokchomebuyers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prosportovani.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psge.ps", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purevicky.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rainuk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raketaholst.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "relaypay.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rohitgupta.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rzero.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salone-mio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seotipster.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smokefreestage.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spec-ranking.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sterling.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studioshiftup.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stylerecap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "subarupartsdeal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taxboard.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tcheb.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thesubstitute.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thisyear.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tilipalvelutuominen.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tips4gamers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toyotapartsdeal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toyotapartsprime.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuslamparasonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "velostudio.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vet24hour.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viamax.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vietnam-fishing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vofem.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vulns.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weare.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webachtal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "willowmanorgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "win-apuestas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wonderland-server.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn----rtbbavlecj.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zerodhacapital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "415.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "800999.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "888900.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a.tt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aaablindfactory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abbuc.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abminv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aftamurae.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aga.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agora.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ahmetazgin.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinelondon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinetic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlineticketscheapflights.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinetovegas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akimitsu.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amedeo.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ankaraotomobilcikmaparca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ankaraotomobilyedekparca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anketlekazan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antti.codes", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appac.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "approvedcashmax.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apricotactuaries.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armando.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arnaudligny.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artushak.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asap-advice.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auralia.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autofornal.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bakerymazowsze.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barlow-media.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benjilopez.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brandbook.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bravurasolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bullesdeculture.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bvlp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camgirl-info.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centralkladno.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chandradeepdey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrisdasie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrisliebaer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cock.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codev.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coinpaprika.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colegios.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "compareweddinginsurance.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "craftyun.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "create-it.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cricketwatch.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "critical-scientists.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cube64128.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "damienchicotphotographe.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dbgames.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ddog-gov.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dealzme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derailer.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dfwrvroofmasters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disavowfile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dns.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dr-feldman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drthiagorighetto.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ejkweb.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elfix.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elok.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "encuestaspagadas.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "encuestaspagadas.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "entomologia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "felin.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fenris.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fickfreundinnen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flowio.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fordpartsgiant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freitasm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "froh-s.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fwup.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gambinotrasporti.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamedealsnow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gardinia.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gassycat.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gdufe.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getestudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glassrepairsperth.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glenatlasmd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gps4net.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gps4net.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grtc.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grupoeurodesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helpatmyhome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hodi.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoffmanns-ballonshop.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ict-oldehove.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iframefinancement.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imakin.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "innerlifeskills.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insecret.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isaaya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iso.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iteks.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jacquelinebellefontaine.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jem.style", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jotoho.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juicyforum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaffeluckan.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keep.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kunnen.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kyncostyle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lamparassevilla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lata.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libranet.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linkagencia.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linuxhostingindia.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liquid.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mail.td", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "makertown.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manpro.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manypets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mauicharm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meineweidegans.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metebalci.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metrobus.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobileit.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "molokaibreeze.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "movemais.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrgusercontent.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtap.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musition.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newasianbistro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nitoville.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noy.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "o7.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "objectcache.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oliverniebuhr.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oo.ps", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oxfordenglish.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p.sb", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "permanencesecretariat.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pesquisasremuneradas.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pianoschmitz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planeticke.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plaul.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "play3niu11.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "play3niu33.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "play3niu55.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plymouthbus.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "potteranderson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prcsurvey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "precisioncourt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qdm.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quakeroaksfarm.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "r.sb", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realacademy.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realmoney.games", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remotewx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "responsible-disclosure.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rhwebdesigns.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rigidlandscapes.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roams.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rootly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safebus.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sansairyu-kuyoukai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secwatch.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "selectedbym.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seoapi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seosergio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serenityeditor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sethforprivacy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexxyangie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexy-mom.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexyjanahot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexyrachel846.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sh1mar.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shrug.fyi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siliton.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smithandnephewpensions.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snh.nrw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sotonlgbt.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spammable.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spanstindrundt.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spazioasperger.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speleo.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spindrel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sporenvanslavernijutrecht.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squirtqueen.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stekelenburg.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storyliebe.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suchhunde.wien", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "surveyberbayar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "surveyviet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "survicate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taat.edu.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tarrantandharman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tecnologiahdv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terapeuticaenalza.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terra.bio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terranimo.re", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testable.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thaisurveys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thekitchenprofessor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theroams.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thevacuumpouch.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "think-ai.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tholab.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "threatint.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tipsforgamers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tnt2k.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tokidoki.team", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top-model.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "triggertraders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tutocursos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ulax.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valeryvenom.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vanral.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vault182.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vegalanguageacademy.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "victoriavalente.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vilavilma.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivace.parts", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vkstaticcontent.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vkusercontent.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vsure.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warfighters.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warringtonsownbuses.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weasyl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weplay.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whistleblower.report", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wildvicky.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--4gq45ay49m.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youronly.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zajsoft.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zendrop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "00010110.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "196flavors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3dvisual.studio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3rd.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4iplatform.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "6.vu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acodonline.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adamgian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adjutor.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alday.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amsochile.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "analebear.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angela.baby", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animadoc.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apex-writers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "archdetal.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asdf.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ashgroveclinic.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beecambio.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bioaufvorrat.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c-sagaseru.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carouselbuses.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinobuyersguide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocity.lk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catapa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ch-poitiers.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "childrenoftheshadow.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chineseplease.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christianotero.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "civilconcretellc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coinlend.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corrigan.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corsica.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cosmichpc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidfarland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deletebin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deletebin.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dirdet.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dr-vlasak.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dryashplasticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duckeight.win", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "embelgium.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enhancemedia.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expicare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faedefencesociety.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faedefensesociety.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "floridastatefair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "floridastatefairag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fotokorner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foxandfish.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foxcav.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geele.co.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "georglauterbach.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "georglauterbach.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldenoaksgolfclub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "h.fo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harrisonassessments.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harrisonassessments.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hivemind.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hivemindsystems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "housingcenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "how2dev.tools", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hrgt.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hydrometrixtechnologies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jay6.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jaytauron.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jumpcloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kb1000.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kbmhawaii.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kerpen-renovieren.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kurtdeutscher.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lamaletademano.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lescoquetteriesdenais.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "literaturkreis.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markhoodbooks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "micromagic.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mojo.so", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mojomen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrgstaticcdn.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mystorydoctor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nephelae.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newskinlasercenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nightlight.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oabtherapy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obstgarten.berlin", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oilyouneed.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oscar.ms", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "owlandbee.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paket.monster", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panoramixbycallens.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patorganiser.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paypal.gift", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planetscale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plodwithme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pra711.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pumuntincu.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pwn.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qlc.co.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qwik.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "r2wind.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "r2wind.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rebirthlongboard.co.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reducer.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reliablemojo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remessaonline.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rushbmedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "savicki.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "savicki.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "savicki.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schermen-en.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secvuln.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seejay.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "selfelec.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sellmyshares.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serval-concept.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sgsosu.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shawarmapressfranchise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyint.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smeys.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spitalbuhusi.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steelsheds.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "t.net.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tatteredatlastales.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefrontend.agency", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toolminer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ultimatemotherfuckingwebsite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vandaalen.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vettix.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viv.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "w-hub.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wataclinic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wearemojo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wirksportal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wulala.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xgameshst.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--9kqw7o.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--l3cb0bbcf6ezc4a7e.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zettaport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zoot.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1p.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "20140301.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ae.edu.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinefee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlineplanetickets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinescheapfare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinescheapticket.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airplanetick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akeroh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allesvoorbeton.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aloris-controle.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amex.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andoyasuyuki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrazaharia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anessex.wedding", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anneeden-porn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anotherinvest.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anothersupersite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anothersupersociety.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anthonytimbers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apcdistri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appscem.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armchairwarlord.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aspiration.marketing", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atelierferro.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atheism.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avaamo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axa.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axyl.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barnvaensveitarfelog.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betonbewerkingsmachines.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betongereedschap.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betonmachines.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beyer-on-it.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blogdosimoveis.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluebird.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouwbedrijfjstam.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bundesamtsozialesicherung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bupa.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buro86.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bustaura.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "but-it-actually.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cakir.info.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caragame.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carevic.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdp-poznan.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centreimageriedunord.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charliejonas.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charliejonas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chtj.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ciao.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cocheriagori.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comicslate.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "concretemachines.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coneall.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conservaschato.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cosmocode.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "craft.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "credello.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crestaurant.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csumathtutor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "da-schaewel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dcpro.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "den-fi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "den.vc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dentelegan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deooyevaar.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitallink.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doctorshealthfund.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dominateyourmarket247.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eba.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "engso-education.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fareto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fastensorozo.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firefightergarage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flightti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foldnfly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forocoches.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fotofreunde-telegram.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freethinker.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freethinkers.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freethought.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gcorevape.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geekpost.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geofabrika.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gidro-dom.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gillespetrotey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldentriangletourindia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grapplinginsider.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hagtingius.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harrisonassessments.co.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harrisonassessments.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harrisonassessments.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harrisonassessments.com.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harrisonassessments.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hayssuperclean.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helpline.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hennessey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hollybonnerdesigns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotearth.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hunter32.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inmobanking.com.gt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intellecta.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ishiro.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "izi-agency.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jdlt.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joellev.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jv-projects.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kass-media.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kdcompany.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinebioquimica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kittystar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kupi-ceresit.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libslack.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lichtjesavondkoedijk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lokys.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovejoymethodist.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loveshop.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lundscape.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malash.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meeque.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "memoryplex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mia3d.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "midwestrecyclingcorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "migraplus.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mimamau.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minnisites.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mischolz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrg-team.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myemailadd.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myreadingmanga.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nahs-classof1972.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ncdwlq.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "negoziointimo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neumannindustrialcoatings.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ninaobermeier.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ocsbl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oneclub.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onegroup.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "organaqsis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pacot.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paulharrisoncars.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philipp.vip", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pietrzyk.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poki.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poki.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poki.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poki.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poki.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poki.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poki.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poki.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poki.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poki.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poki.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poki.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poki.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poki.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poki.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poki.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poki.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poki.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poki.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poki.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "policemanapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powershaper.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pvh-membrany.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reacteev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resilience.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richiesroom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rockfordnetworks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rootsland.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rootsland.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruero.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rxcarbon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sdgrait.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servis4u.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siecon-it.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "site.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skillwaze.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skrin.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supplementaanbiedingen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suss.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suth.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tex-izol.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timeoutdoors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tjrapid.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tonyfanningphotography.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "troubleshooting.support", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tupi.fm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ucaskernel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "udemons.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valigrama.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vcard.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veganvisboer.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "velomap.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vf-bikes.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wachtspoor.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webb.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webby-books.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldbirds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldbirds.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yan.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yan3321.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acemach-vision.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexpetryk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alibamu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alibamu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amsmart.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arcada-company.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlanticwatches.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "attireaccessories.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baracca.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestofjazz.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bodascartagena.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bosengineering.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouffartigue.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boxing-videos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boxing247.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boxingnews24.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boxingrankings.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boxingschedule.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brisamar8.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c19early.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c19hcq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c19ivermectin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camaronazo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chief.tools", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clcv-brest.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "compliancebox.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "covers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crackypedia.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "craftfocus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cscmotors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daniel-beilharz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielbeilharz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielbeilharz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dbeilharz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dbeilharz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dbeilharz.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ddinox.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delavega.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dietitiansidehustle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "docmode.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eatmportal.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eiga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emergingindustryprofessionals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "envirhom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everydaylifeinsurance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fgui.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "francoise-janssens.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gbquotes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hammann-services.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harrisonassessments.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haveibeenpwned.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hayward.uk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hcqmeta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "highcalorierecipes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "himj.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "houseofhipsters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hrajhry.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hyoi.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infidel.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interface-systems.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internetkunskap.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iopex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipon.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivmmeta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janonis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keeforcecloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "khouloud.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lady-sadieann.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laowang.run", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liftedpixel.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linawinter.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locationsiledyeu.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manderstam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maytretrungphuong.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medialine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megajatek.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "menlotraining.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "menlotraining.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "menlotraining.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercenaryvfx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mmanews24.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrg-srv.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msk-balkon.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mundodastribos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mybubbleteashop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naturheilkunde-sabine-klein.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neteye.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nextsulting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nocreyentes.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nuvasystem.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oclube.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osorezone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pardanaud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phsarapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pichlerei.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prepareforthesat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ramp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raylo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reduktorntc-k.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reeladventurefishing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sales-experience.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schorle.wine", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schrijnwerkerij-deconinck.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schrijnwerkerij-deconinck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "screeningmaster.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secularweb.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simulise.help", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skupka-zolota-dorogo.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sleismann.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "somsak.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sydneyshisha.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taoismus.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tarihvakti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taskus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tatsumi-air.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terrenasparadise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thegeriatricdietitian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toddvbanks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomi.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trochoi.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uiuo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unri.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uoui.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vandegriftplasticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vfbikes.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vielleserin.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whatsinmyjar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woodshouse.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xusqui.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "your-sussex.wedding", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourbristolsomerset.wedding", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourdevoncornwall.wedding", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youreastanglian.wedding", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youreastmidlands.wedding", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourhampshiredorset.wedding", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourhertsbeds.wedding", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourlondon.wedding", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yournortheast.wedding", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yournorthwest.wedding", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niu868.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a11ybadges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acopatableware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acutica.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advarra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aethernia.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afterburnerjs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinescheapflights.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpaca.haus", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpenguides.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amalou-photografie.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andresguiarealtor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anesterov.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angel-jrk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apollux.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arcese.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ares.watch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asphalting.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avantcoequipment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avantcoice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avantcorefrigeration.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avitahealth.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "awo-bremen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baas.agency", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badrap.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bcn.cv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bolehvpn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "borntobetogether.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bravegk.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bullmarketing.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canberrarunners.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carfax.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carnivalkingsupplies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celarsports.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celebritynakeds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cernalistina.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cienegaspa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubzero.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clvr.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codandn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coderpad.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corneranimal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crmplace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cromwellarc.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptostorm.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csharp.love", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "culturestraveled.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cweagans.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daniel-beilharz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dartergroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "declarando.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deepspacelines.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devalkincentives.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dezshop.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalcashpalace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dispensarygta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dominanta-law.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drgabrielschmitt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-gc.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eheya.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elpactest.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emtex.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emulation-archive.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "energetikasmuzejs.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "escapely.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evalcorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fcblueboys.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fiducoldex.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fitecleaningservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forcecompanies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forest-soft.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuchs-informatik.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fusionplatter.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galoforo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giftfocus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gofundme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goodbriar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guidegr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guldkorn.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hadoora.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heptagonsystems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herne-kupony.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hospiceoflancaster.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hospicespringfling.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i.hosting", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iden-tt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iden-tt.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iden-tt.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "incaweb10.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "integrafin.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internetdagarna.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intstyle.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ip-generation.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ircpad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itsecuritycoach.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivmstatus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "japannext.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jarritos.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jarritoseurope.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joaoorvalho.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobscore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalaspuffar.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kattelans.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kattelans.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kdproduction.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kein-hindernis.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keln.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kenzelmann.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koalarong.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kronanshopping.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "labsector.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lebv.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lefucine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lekarkabajkopisarka.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lematafan.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leonardtheologicalcollege.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifengoal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m.sb", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macdonaldplasticsurgery.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maiscupoes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markpulido.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marvelcargiveaways.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcrook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medialine.ag", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melinamay.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadobitcoin.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mfxm.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michalchomo.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "midrange.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modernx.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monpanier-procter-et-gamble.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrgstaticcontent.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mruczek.trade", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mruczek.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "munibilling.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myorder-pg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nalle.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "namecoin.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicholaslazzerini.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nulldev.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nunesgh.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nutritiondynamixrd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nvda-addons.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nvda.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ogui.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okr.pub", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oldtacomamarine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olofa.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opnx.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opus-labs.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "order.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orevan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orevan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palmedconsultants.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parichadrelax.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parmartecultura.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perception-point.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petsnvets.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pfeiffer.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plumbware.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poliermachines.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powderkeg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powersergconnect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ppg.report", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "productsafety.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "propeld.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revolutionhealth.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rhinesuchus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riffable.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rivian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rome-airport.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royalworldservice.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rundu.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rutasmaldivas.viajes", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s.sb", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "satirelabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schoolhouse.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secureapplicationaccess.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secweb.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sgdm-services.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skybirch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slashnroses.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snitko.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sofibox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "softwarechris.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stannesvets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sumiyakimatsu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sysnet.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "szpet.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tabby.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "takepicturesleavefootprints.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taylorfarms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tealium.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technotoday.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thammysen.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinkerdifferent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tojevune.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tokomoto-w.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torino.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "totalwebpartners.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traegergrills.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transact-online.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trust.zone", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tunnel53.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tunneltracker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "u.sb", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urdoverie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vk-group.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vmm.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vouchers4u.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "war-team.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "washroomcubicles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winvio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "witajmaluszku.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workelo.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "world-web.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xpg.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ycalculators.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ycl.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourberksbucksoxon.wedding", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourgloswilts.wedding", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourkent.wedding", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yoursurrey.wedding", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zehy.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zehy.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zfpsystems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "221b.store", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "24slides.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2pi.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3wincorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "90daydiet.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abnehmen-sport-fitness.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adelaidelaundromats.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afriregister.sn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agence-immobiliere-hossegor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agile.coach", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexeydrach.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alves-avocat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ami.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "android.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andytsoi.nyc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anz.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apert.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aqua-dom33.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artofzoo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ascensionnyc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aspiracloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atalantapsicologia.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audiocinemateca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aurantis.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "automatyczna-identyfikacja.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avintivmedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayuntamientoarenoso.gob.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayuntamientoazua.gob.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayuntamientobocachica.gob.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badkamerconcurrent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badkamerconcurrent.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bananatrunkingprotocol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beauhilton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "becoairandheat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bekeltetes.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berkhills.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berria.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berriacast.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betspin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betterbuiltbasements.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betterbuiltkitchensandbathrooms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biomedsciinstrum.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitrefill.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bjm-gembas.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blaeu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bordercrossingux.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brew.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bvdp-saturn-prod.appspot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cadconcrete.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cadillacfairview.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camping.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carsreborn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinotopsonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cellrg.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cfse.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chinaoptionsfund.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christerwaren.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clarkassociatesinc.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clarkfoodserviceequipment.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clarknationalaccounts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clarkpro.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clarkturnkey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clickhost.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coating-equipment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comarkinstruments.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "computer-world.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "concord.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "convergent.tn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cookingperformancegroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creampiepussytube.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crown-beverage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cwchristerw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cwchristerw.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cwi.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cybertalents.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dalbar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dalbarsqm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dascan.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datazoo.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datj.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "david-almeida.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dedede.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dgmenergy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalfortress.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diligence.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doyogawithlina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drakkarbilbao.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dronepanorama.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dseg.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eaofaustin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eaofdallas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eaofdfw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eaofirving.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eaoftarrantcounty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elmo.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "empirelevel.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ender3.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enderman.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ensemble-conseils-et-services.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esleme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estellaequipment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ettyproject.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "european-accreditation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "europeanpolice.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everisland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ezsun.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "f1nalboss.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "farringtonfoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fatalsunrise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feature-branch.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fedema.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firobe.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flicke.red", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foodtrucksnorthwest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freso.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "friscorodandgun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fundacionsilverina.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuwafuwatime.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamester.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gcuf.edu.pk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genome.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ghil.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gig.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ginnungagap.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gite-bouvines.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalthermoforming.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goodesign.su", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grechutaszkolenia.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greendotcredit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gresrewop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gridgain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grolleau.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gutstein.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haizs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hellocoding.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hospiceandcommunitycare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hospicecommunity.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hospicelights.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hospicepathofremembrance.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hospiceprofessional.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibsis.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ichijoh.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iconsuppstore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impulsewebdesign.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "instantsiteaudit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intelics.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intrum-credit-information-ws.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "invitepeople.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jarritosfrance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jazzindeck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jehjf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeremy-gautier.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jsd-aach.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "julesfrans.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justasdelish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justkidsdental.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kamey-steuerberatung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaohongshu.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kathyekaan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kendall.productions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiosque-famille.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kirs.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krafciarka.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lainoa.eus", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lancastertableandseating.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lastwill.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leia.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lindler.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lohocla.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "longbridge.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luke.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lyklasmidur.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m426.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maker.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malflutningsstofan.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marouviere.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maximababy.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcos.nc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mebeloffice.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medivisionsc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meenzen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melvillecity.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "menlo.security", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "menlosecurity.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metalloiskateli.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mickael.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "micled.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "micled.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miedge.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mischamassage.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modpop.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myfloridarealty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mygolod.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nathan2055.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nathanielknight.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nestforms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nettikasino247.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nkg-mosbach.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nobleproducts.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northdallasendo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noted.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novias.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nuvotheagency.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "occulter.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oddsnet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "off.net.mk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okaidi.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okaidi.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oklahomasoftwaresolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oliebollenbakservice.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olympiclodge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omegamc.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orchidplantscare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oreomuhely.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p2pool.observer", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pagueveloz.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pathwayscenterforgrief.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perfecteclass.com.cy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pineradelolmo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinkhatbeard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pizza2020andcatering.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playcasinos.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "player701.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pmbrachyeducation.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pontosdevista.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pracownia-kasi.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "praxis-oranienburg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proclock.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "progressportaal.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "propertyworkshop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psikokoro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raf.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdtech.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recordagrave.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rededca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regencytablesandsinks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reklamapoumu.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riomi.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rock4life.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ronaldvanassen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roninathletics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "routechoices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rse-reporting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saqara.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schneider-dresden.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schulhomepage.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schwertkriege.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scrum.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "securebuildingaccess.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "securesiteaccess.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sefodbold.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "selwyn.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "senf-kren.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sequencediagram.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sermerkt.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servitproducts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sharanyan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sharptudhope.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shibleysmiles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shopbackyardpro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slabserver.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "so-spa.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solwaveovens.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "son.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spajk.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportwettenschweiz.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stallone.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "start.stockholm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ste2.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoptheperio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stthomaschurchri.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "succulentplantguru.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sucyshop.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supportivecare.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syncspace.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technamin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teletime.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tempfiles.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tendanceaumasculin.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "textpro.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thedermdetective.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "therestaurantstore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thesession.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thetravelstylist.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "threenorth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tietew.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiptoes.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tls.support", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomatohq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torigaoka-dc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tranmerelectric.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "troplo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "troubleshooting.tools", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trumpet-whistleblowing.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tshirtsforsale.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsukuba-it.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tylergordonhill.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "udb.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ultrastar-es.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upar.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upflow.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upgraid.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upmls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vadras.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "videoseyred.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vineripenutrition.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virgil.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visittci.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vkstaticcdn.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volebnipruzkum.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wamba.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waren.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warengroup.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warengroup.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warenhosting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warennetworks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warensecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waterloofaucets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "websiteleichtgemacht.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webstaurant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webstaurantstore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "welspunindia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wgi.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whattimedoiwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winedineunwind.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wolffproperties.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woolfplumbing.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wp-assistance.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wsn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wtdiw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--ksse-5qa.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xps40.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yoshiya2020.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youcruit.jobs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourcheshiremerseyside.wedding", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yoursouthwales.wedding", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourwestmidlands.wedding", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zabory-klg.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zebra-serwis.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zerotrust.plus", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhbot.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zkbitcoin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zonecloud.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "10er-friseur.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1aweb.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2601.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "50balles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "8cent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "9mp.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aareptan.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "actigamer.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ade-power.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinetohawaii.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alberguecovadonga.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alelectricista.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allianceautomation.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amazon.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amazon.eg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andreasjanker.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andredaus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "annoyingguide.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aquimisa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artechip.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astropackgulf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auc.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "automobile-detail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avelon.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azmt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badoo.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bastelwelt.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beiersdorf-svz.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bengaratei.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "big-orange.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biznesowe.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bleyershoes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bngdigital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brabantia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brainfeed.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bupamedical.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bupamedicalvisaservices.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bupamvs.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camenisch.ws", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cesarpinto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheapairplaneticket.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checkiday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cherubicsoft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chinaindexfund.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chinaoptionsfund.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chinplugins.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chinplugins.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chinplugins.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cityvets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cmi.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codeupstudios.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codingnbb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "connect.net.pk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corus-xuam.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crackyhouse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crypticonseattle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "customfoodtruckgraphics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cutme.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberdog.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dc-solutions.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dear-olivia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dejmidarek.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desertnaturals.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diviworx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnapagamentos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnsdns.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dpeter.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dymension.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eaoffrisco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecobalispa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elplugins.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emacitylife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emailable.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enefix.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eons.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esignering.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etalentos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurocontrol.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exfuga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "externalfb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabiokrug.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "facebookcareers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fatig.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fb.audio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fenritec.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fenritec.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferluxilluminazione.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filter-kiev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "floor3.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fontocean.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fotografiarte.com.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freecottage.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freelancewebprogrammer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fsma.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gap150.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gc-event-manager.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gepassociati.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getsession.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gircimediterranee.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glass.photo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gostatera.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "green-smart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haar-trifft-medizin.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hallmanmemorials.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hbh.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hellosells.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hidrolimpiadora.com.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "higherairspace.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hospiceandcommunitycare.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hospiceoflancaster.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hospicewebsite.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hosteddatabase.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hubbardhouseugrrmuseum.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ib-kreindl.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ideal-social.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idealresponse.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imanoles.ddns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inniger.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insulationchicagoil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itshamradio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivdnt.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeremiahlee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobbnorge.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kicktipp.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kicktipp.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kicktipp.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kicktipp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kicktipp.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kicktipp.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kicktipp.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kicktipp.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kicktipp.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kicktipp.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kicktipp.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kleins-hutorok.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konectbus.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "led-sk.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leducq.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "llyncelyn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lokinet.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lunascope.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mable.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maharishikaa.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mannigroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mannnen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matrix3dp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matrix40.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattelek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matthewkairys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "memorial.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "micled.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miharu.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "missionskreis-kueps.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mittdolcino.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miziklakay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modszombies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mr1310.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msscholz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mujoco.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mygaming.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mylifeinbalance.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mysteriouscode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mystoeckel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myvet.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "na-agency.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "namastehomecooking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nandertga.ddns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natuurlijkehaarkleuring.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nb.mba", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nekk.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ngontinhtruyen.com.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicsys.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nmx.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nocapplugins.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oakhillseniors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ocealy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opencom.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optionsfund.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ouminews.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oxen.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pathwayscenterforgriefandloss.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "percussiontonal-forum.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petech.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planium.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pmcancercampus.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pmcancerclasses.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pmcaregiver.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "podcaster.org.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "potsandplanters.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "profservice.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pupboss.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purplemath.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qiantuwenlu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qitano.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redoikos.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resimdo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "restream.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reviewengin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rhinobase.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ritos.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "road-trips.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robotcoral.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rofena.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rotu.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sabba.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sacredheartbath.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safataviationgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "santhatela.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "santodelgiorno.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saz-it.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scicollege.org.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seg.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "segdo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "segdogames.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sep.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serdarakyildiz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sergioforse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sevitahealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sgo-overbetuwe.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shopping-il.org.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplepaddle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skeptics.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skiforlight.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smitsmail.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smoothweblife.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soloprivacidad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starkstromkonsument.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starman.agency", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stereotyped.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stgiannanorthfieldnj.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stmarystfd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "subscription-list.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sumkunado.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suncoastdisplays.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svarmax.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sytenko.org.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talmischleather.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tbscan.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": "technicalmarine.solutions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tietew.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiyee.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomgaddis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tpcbf.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tpccf.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tpcff.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tprk.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transferistan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "treatyoakdental.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trevea.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartner.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartner.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartner.group", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartner.ltd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartner.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartnercapital.holdings", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartnercapitalusa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartnerchinafund.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartnerchinafuturesfund.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartnerchinagrowthfund.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartnerchinaoptionsfund.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartnertech.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartnertechnology.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uhnwarfarinedu.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unixauto.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "velopinion.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villasintrabali.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visatime.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visionations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visionzeroreporting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vk-srv.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vlachoshome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "w9nb.radio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warengroup.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wolfermans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpspeedcare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xgp.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xkylee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--fiqs8syvac75bffa172w.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--fiqs8syvak73af2cw10h.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xpsfactory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xpsinnovation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xpsrobotics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youryorkshire.wedding", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zergy.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zone.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1800baskets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1nf.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2b2t.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3602020.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niu771.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a1websitepro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abrecenze.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adiyamandanal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adventureboy.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aelgame.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airsculpture.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airsculptureballoonart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airsculptureballoonart.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airsculptureballoonart.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airsculptureballoons.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aktuel-urunler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexbosch.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aliosmanyuksel.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allefrisuren.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alletattoo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altius.com.pa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amaeruinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amfelt.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ampersandsmallbusiness.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anlikdoviz.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anyrisk.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appjobs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "applecare.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armyofflyingmonkeys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asherosborne.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asikoo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asikoo.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "assessments.careers", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "assmb.ly", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asyaturk.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audilio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auditiontapes.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autogarag.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auvicom.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayressupport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azsec.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badsl.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beekeepingfiji.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belltownpower.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bierlegal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blakylle.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluelime.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boisehomeoffers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonitech.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bono3.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bytebodega.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c-three.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cable360.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cainesjannif.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caio.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calpaterson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carolinaharboe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cavalryscout.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cbdd.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccaag.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccatpracticetests.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chimera.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "choco.run", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christianga.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cmkr.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cnss.gob.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cohere.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "columbusunderground.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consultancyistanbul.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coronatestalmere.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corrector.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corus.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creadordenoticias.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "croftsvetsurgery.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csa.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csssr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "curatednews.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberiq.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daggas.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dampoo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dentistree.in.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derssonu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "designdecorativ.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diagnosingfiction.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalcomponents.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disisto.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "divinerooms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donnerhollenconstruction.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dunassyn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dungeonedraghi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eagenda.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ekiphost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elana.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elementblend.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elifelabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eliseadams.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emotality.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emtex.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erogen.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exoweb.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "famacweb.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fast-host.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fbscontenttest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feedmail.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fijibutterflyfishcount.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fijimarinas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fijisharkcount.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "focusoptimization.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forward-proxy.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foto-verslui.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fugu.lol", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuzigames.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galaxystaking.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamerant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gbp.com.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geschenkly.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gigarange.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gpremium.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guidaditalia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "handles.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hankooknegyed.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hassanhardware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haysc.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hebe.stream", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hellov.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herbacom.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hipocampo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hospicecommunity.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hungnm.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hyland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idealucedifilippi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infoeccos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infopulse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infra-voice.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inovatec.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interieursud.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "investisiya.az", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "investservis.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "islekyapi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jamessliu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jaspyrbooks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johncleary.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jourdespa.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "journalisticapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justanorganizedhome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karsiyakacilingir.biz.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kittatinny5.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kleise.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koabaer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konnex-it.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koresageart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ksnl.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kurs-elektryka.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kutahyaciniyapitasarim.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leducq.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "letmepost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lisanshizmetleri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lobmedya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lofirmo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logodestekhatti.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logodevir.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logodevir.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lukaszczyk.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lunastrail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maki.cafe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manfred-feiger.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mannafields.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mapillary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marchoffrichter.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marineecologyfiji.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martinploug.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matrixmold.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meis.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "messengerkids.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metropolisdawn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meusartis.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mex-it-up.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "micareklamajansi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "middlesbroughmoneyman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minitec.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mojetatuaze.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monagenceentreprise-caap.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morethandigital.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morohub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mydabb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naacam.org.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nairus.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nearlist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nerss.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newtoncomputing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niferry.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nipponsteelwelding-thai.co.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northtints.store", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nubla.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nxplinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "o3swap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oedeemboek.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "one3oneapartments.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opelim.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openbible.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openbiblebookstore.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optimon.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opusdei.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "overca.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oxfordbus.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oyun.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palmedconsultants.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parabolaeditorial.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pastinfluences.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pathwaysthroughgrief.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peopleandchange.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peppertalks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pfr.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pgmann.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixelglance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixelplex.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planungsdetail.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "platinumgatesecurity.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polatas.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porady.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornhub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornhubpremium.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pourtoi.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "praemoveo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "precutppf.store", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "premiumpictureframing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "projehocam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiovera.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rahasyavedicastrology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rbi-admin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rbi-umbrella.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reallife-it.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redstonehomekits.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regent.ac.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reksadanapanin.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "renklihobi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "repalriley38.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resortsupportfiji.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rib-dinslaken.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rib-dinslaken.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rib-fm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rib-fm.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "risky.services", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rootgsm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rubyonremote.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rugugu.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruwhof.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schottlandtaxi.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scolacdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scubahirefiji.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secundity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "segurosmr.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sell2orbit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serval-formation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shinenet.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skinsolutionclinic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skypanic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartnoob.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sovos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spacenerd.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spandrusyszyn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speedlearningapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steamlevelmarket.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stephenbakalian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stethostalk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stmaryskutztown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storageshedsnc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "streamurl.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "subvetcustoms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sulfegate.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sutmar-anwaltskanzlei.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swiftcodetoday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tahlilsonuclari.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "takipcikutusu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tandhoutdoors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tattooidee.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tattoomotive.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tatuaggio.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taxuni.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamdev.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tennis-hameln.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terraso.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tests.school", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thehonoursystem.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topline.com.sa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tornadoautos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tpcof.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartner.limited", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartner.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartnercapital.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartnerchinabondfund.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartnertech.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartnertechnology.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ttr3.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twotravel.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tyroola.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tyroola.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ubaid.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ugurnakliyat.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uniselectweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "up2date.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uploadcare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uprawnienia-g1.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uprawnienia-sep-1kv.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vetafarm.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vetbilgi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "videojet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vimexx.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vipstat.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virtualgayhd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitikit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voi.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vyre.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waitabu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weboke.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whichphish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whizkidpcservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "work.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wprank.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wyckoffspringmeadowcondos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--flskeklubben-7cb.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yachatshomesforsale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yetkiliservisrehberi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourstorebridgwater.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourstoreexeter.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "z2.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeroplast24.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zinsserplasticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ziraatweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zwitterion.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0-0.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1g.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "achicrip.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acsiresearch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adverganda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adverganda.de", "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": "aldervets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alex.net.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animaproduksiyon.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artsy.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aselo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auto-ecole-remparts.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bdgroup-lab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "black-rider-studio.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brownsville360.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "capslock.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carstar.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checkngo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cirriton.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conceptec.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consyltec.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crtified.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "d3scene.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "defelo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dermaprocollagen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devtechgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drfuhrman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drziyayavuz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erotismo.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exceptionalstack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fbk.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fgidu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flst.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flubiostudios.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gablesplasticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "golfinbritishcolumbia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gonortheast.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gracedonors.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gracedonors.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gravityledger.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ground-control.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gurl.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gusar.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hamelnpsychotherapie.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hblwrk.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hhdelfland.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hny.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoz-pack.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hunhold.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibe.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infocapsol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inside-m2m.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ircom.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "izvorul-bucovinei.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jbayetsecretariat.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justifinetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kronospsi.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "learnupon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logofiyati.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lorenzodallaga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailsac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcdgenclikkulubu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metropolisdawn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mh-cdn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mhginsurance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaelcrane.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnetz.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnvogaanvraag.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "millerfabricationsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mix-master.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "molodechno-mk.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mptenders.gov.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myessaydoc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naxe.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ndvlaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newemage.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obido.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oursportscentral.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pentopolimer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pergam.kz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pharmalab.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pharmalab.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porazarul.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "princebazawule.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qofpeacechurch.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reachdigital.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revealcellcamtracker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sait.health", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schittscreek.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "segdo.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shopnguyenlieumypham.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silbercloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sinfoniettabelcanto.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skydivingexperiences.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "socratec-pharma.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starrosesandplants.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "statscrew.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunnuslight.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swjen.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "t8w.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tatuering.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "temp-lars.army", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "totalenergies.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trekamdienstag.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trenujskutecznie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartner.holdings", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartner.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ttug.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tutarot.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tyroola.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uitdeoudekoektrommel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viitanen.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vip-transfer.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vsscr.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ximg.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--3js556addp80q.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--gs8h.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--uba.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0.sb", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "19216811-sifre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "301.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5top.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acompanhantes.com.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aiosetups.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akoben.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alatest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ambersafety.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ancade.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "annoyinggui.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apbio.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appingrove.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bardtech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bazaleev.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beatsaver.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berthoudeconomicdevelopment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bnrailstories.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "branchrvparktexas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brand-design.studio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brasdir.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "breachlock.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bwa.wroc.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chamudi.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clinicadentalhome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubeamizade.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubeamizade.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubegls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubegls.com.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubetravel.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubetravel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubetravel.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubetravel.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubgls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colombian.cam", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creer-mon-business-plan.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberjake.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davelucia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daybreaklearning.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dco.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discoverlutruwita.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doccafe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "docsunited.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dodiedods.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamcatchers-events.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dymond.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eagleplanners.agency", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eastmedo.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "egdsk.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elvorti.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elvorti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "encotentin.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enefit.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enefitgreen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enefitgreen.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enefitgreen.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enefitgreen.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enefitgreen.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "engineertaplin.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "englishcompany-mobile.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "englishcompany.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erik1erik1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esilva.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "farmqa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fenns.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "florianysantiago.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fmportal.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fondazionescuolapatrimonio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "franzoni.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futureville.city", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gastronomias.com.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genclikotobusu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gli.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "handsonscience.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdfreex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdxxxpics.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiringopps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homeer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "houdah.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idream-solutions.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imlhx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "info4camper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interdez.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isabelvalfer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "island.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jameshawk.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jgregory.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jixing.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johndonmoyer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jurgenfranse.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keigakusha.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kluberphoto.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kneblesauto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kordamentha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "latelatetoyshow.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leadonvale-stemcell.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legitedelaguiole.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lepuyenvelay-tourisme.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesbicas.com.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liivimeretuulepark.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "limitlex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loading.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovell.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lytkins.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maroochydorecentre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maroochydorecitycenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maroochydorecitycenter.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcycbd.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meetyou.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melusine.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minpolit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miyajima-ken.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mnsvu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moba-automation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moba-automation.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moneyfuxx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msquared.id.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtnc.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "munduberriak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naprawa-bazy-danych.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nilnasc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nordhealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onefestivalplaza.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parperfeito.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pequenaitalia.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perfekt-style.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petruv-grunt.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phantomlighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philipzhan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pietraglobal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pousadamaremata.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "productupdates.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "profarea.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psezalla.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiomix.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raidkeeper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdforum.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rfodistribution.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rnmkrs.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosenberggard.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rotasgastronomicas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rotasgastronomicas.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rutas-turisticas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safesmartvent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "semalt.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seoefectivo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "service-soft.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sharepointcass.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shitfest.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sie.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sky-motion.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skypce.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spiceislandhome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starprime.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stonegray.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strullmeier.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strypsteen.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studyhacker.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suff.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swingers.com.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techmatters.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tek-el.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telemitra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theconsultant.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefoodieblogger.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timetreeapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toby3d.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "totalmerchandise.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tourisme-castillonpujols.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tourisme-fronsadais.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toyotaconnected.co.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trikeweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tulpawiki.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuvanmat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unison-d.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utwf.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinocapka.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vipmercedes.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waligorska.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webkato.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westappin.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "withpersona.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woodysinstalaciones.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wp-op.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "x0rg.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "y99.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yesichat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yoitsu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yuvaskillfoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zocoxx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0-0.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1024.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1126.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "11academianetworks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "123.chat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1999.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1ae86.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "24-7.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2ae86.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2milebridge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3.sb", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "333capital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3ae86.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3mind-solutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niu922.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "41southbar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "425degree.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4ae86.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "51xiongmao.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "6700.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "730.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "800perkins.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "88178.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "9.lviv.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "9021.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a11ywatch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aarhusinside.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abbotkinneys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abdulazizgolca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abovethefirehouse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "absolab.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accedia-distribution.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accionesyreacciones.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acls13.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "actionsandreactions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adfconsumer.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adg-devochtspecialist.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "admin.academy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adrienfelsmann.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adubosvidere.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ae86a.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ae86j.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aeropostale.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affilatura.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afterhoursglass.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aftonbladet.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agendavalencia.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agusik.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlineoil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airsofthub.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akitacyber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akpp1.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alaskadentalcare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alcoclinica.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexada.ms", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexander.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alkel.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "all-bikes.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allboymodeling.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allfur.love", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allriteseptic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "almanea.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "almeerajtour.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpenrose.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alphimedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alturiak.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ambulanza.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ambulanza.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amministratoredicondominio.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amoraquatropatas.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amrun-verlag.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amundi-ca-assurances.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amundi-ee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amundi-tc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "analytics-media.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrasnagy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrasnagy.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrasnagy.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andreashartmann.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anfr.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angelesdelabismo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aniabuduje.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "annemarielaponder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "annonseringonline.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apiris.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apollogames.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apppage.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aprende.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aptekarski.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aquapool.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arfycat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ari.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arne.cool", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arnested.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arrazola.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arsmedika.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artcravers.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artel.od.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artisanportrait.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artomili.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arul.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "as.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asesecours.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asiadirect.co.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "assanti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astqx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "at2-architecten.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atacado.com.vc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlantismd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atomicecho.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aukhygiene.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "authress.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auto-profy.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avasu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "awakening-guild.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axe.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axessgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axioinvest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azquality.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bache-barre.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bache-bulle.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bache-de-piscine.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bache-ete-piscine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bache-hiver-piscine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bache-hivernage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bagnichimici.veneto.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bakcor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baku.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balador.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baldolinitraslochiroma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bandmentor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bando.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barbara-bertagnolli.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barbarareynoldsphotography.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barer.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basicskillstest.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bayernwaage.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bazdidaval.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bcccremeno.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bdix.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bdragon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "be-wear.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beauty77.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beautyschool.od.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "becker.wales", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beclick.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beecdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beijing.bj", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belgian-investor.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beltbuckle.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bermatrix.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bernoldi.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "besikta.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestcriminallawyerinsingapore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beyer-on-it.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bicestore.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bilhos.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "binarycom.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bioenergie-eferding.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biopro-st.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bisq.chat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoin-only.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcointv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitsimnow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitsimnow.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bizdemevcut.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bkhonnun.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blaasmuziek-laarbeek.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bleta.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bludiode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blui.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blv38.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bnc.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bnext.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bnnuy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boards.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bodyblockarcade.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bogus.ltd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bokhaldari.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bokkun.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bomenzoeker.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonaselect.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "book-excursion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bougharios.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boulevard-ruijschenbergh.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouwbedrijfdesmet.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bpinvest.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brasas.ec", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brhanhaki.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "btraviswrightmps.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buffalo-ny-gay-chat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buffalohomerepairs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bugalert.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bugrayildiz.av.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burakurer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buurtbusboskoop.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buvik.gov.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bwmlaser.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bytemethod.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "byteofdev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c4me.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ca-els.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cadeaux-anniversaires.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cafethrive.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cajas.zone", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cakedeliver.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cakelaces.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calendly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caliber.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cameronwince.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canadapropertyexpert.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canile.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cannabistraininguniversity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "capitaltruepartner.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "capitaltruepartnertechnology.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carcatron.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carolinaharboe.baby", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carroseletricosbh.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carsonmorrow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartoradio.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinocrit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cbnegocial.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccaag.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centeragro.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centipedegraphics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centrum.church", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cgbf.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chakanaherb.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chaletapartmentrentals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chaletverzekeringen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chapleau.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charity.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chasse-au-tresor.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chatreplay.stream", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checkdithuis.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checkfresh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checklistbuilder.herokuapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chefsuccess.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chiaseek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "choisirmoneau.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christopherfuchs.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chronik-kramsach.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clearbrand.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cleo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cleverbots.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "climatizzatoriprezzi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clinicatorino.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "club1.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubetravel.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubvwgolf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cnocsp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cocobrother.ddnss.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codeslaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codingale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coffeehousewriters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colinasdog.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coloniae.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "commongoodit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "compareshow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conferencemonkey.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conpsy.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "contermis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cope.finance", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "copilotgps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "copilotpro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corefy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cornerperk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cosmeticosfuerth.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cougargrades.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "county10.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "covenantbattle.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cowleysexeter.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cozanne.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "craftmeow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crc.net.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creditkarma.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crigler-najjar.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "criglernajjarday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crossfitblau.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csb-consultancy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csupe.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cubebik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cubestudio.website", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cupabonita.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "curiozitate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cursedpine.studio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberspot-ci.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cynchealth.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dafuq.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielgil.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danwin1210.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dark.direct", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dasabomobil.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dausendschoen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidlemler.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidsun.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidsun.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "debacker.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deblender.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "debtsy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delitefully.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delkomrockdrill.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dentalsupportuk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deratisation.paris", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devs-from.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devstarops.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devsurveyorcloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dgli.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dhanushtechno.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diccionarioperu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diegocastagna.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dieselndust.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dietitianmeetsmom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dievturi.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digicomtel.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitaldruck.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diogofmedeiros.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disassemble.website", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discord.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discoverucg.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazionezanzare.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "distance-learning-courses.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "divorce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dixiepest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dizkofloor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djangowebstudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djoos.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dmma.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnrt-esports.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doctorlab.am", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domainsearchindia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domaintm.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domenico.lviv.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donghua-europe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dorfkultur.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dorpsoverlegboskoop.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "downtownpdx.dog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drikaartesanato.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drjaensch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "droom.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dubaigrandsale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dunningtonaudio.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dysgucymraeg.cymru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-quip.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-random.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "earthcore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eastcottvets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eastgreenwichnews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easyretro.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easytfa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eauto-cash.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebarer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecetiner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "echoteam.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecotrade-disinfestazioni.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "educheck.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eduhublisbon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eintoepfe-bruchsal.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elasten.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elazafran.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electra.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elegantfamilyhotelsandresorts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elevelo.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eliasfgabriel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elmion.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eloiseponnau.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elsvanmerhaeghe.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elsweb.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eluancm.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elvea.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emdep.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emilstahl.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emissionsgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "employeradmin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enefitgreen.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enefitgreen.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enefitgreen.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enefitrenewables.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enigmavault.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enrouleur-bache.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enverid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eprint-grimsby.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "equilibrium.med.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "equine-dentistry-endoscope.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "equine-dentistry-scope.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "equip.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erdekesseg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ericccheng.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ericsilva.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eriksen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "escueladeministerioytecnologia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "espairecer.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "espressonews.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estanciasgauchas.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estudiovillaran.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eternitdesio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethan-hanlon.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etherium.design", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eugeneorourke.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurococos.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "euskalstakepool.win", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evacs.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evacs.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evelienuitvaartverzorging.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evetech.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evonys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expungement.law", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "extensibleweb.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eyeniyasam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "f-sulzmann.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "famousandfaded.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "farmasimahaganesha.ac.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "farmersgirlkitchen.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fastamundi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fasterci.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "favarica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "felis.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fenatrigo.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fettings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "figma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fionahengartner.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firestarter.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fixedfeeplacements.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fixi.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fixodent-fr-fr-swapper.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fixodent.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fiyatinedir.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fizjo-strefa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fjallbackacamping.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flaggrimsby.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flashuk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flat-cdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fleurdelune.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flexopus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flokinet.social", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "florida-estetica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flortal.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flothost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fob-china-moscow.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foodlover.restaurant", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fosteringconsultant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fosters.ky", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fosterwiki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foto-huwi.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fotografessa.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fotokurskalmar.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fototjansterkalmar.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "france-cartouches.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frauenaerztin-wedel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frc.us.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fred26.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freddyjs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "free4allsw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frequenttraveller.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "friends.cafe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frlcnews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frontlinepolicies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fs1.hopto.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fstpn.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuelingfilms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funnymetals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furkot.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furniteco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furnitureforlife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furshows.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futurefund.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futuresinmarketing.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuzion.co.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galgamer.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galim.org.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamblerspick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamestand.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garudam.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gastroalianza.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gavinbrown.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gcrm.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gebeliktakibim.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geben.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geertjanvanhest.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geldmaat.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gemwerx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "generalliabilityinsure.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geon.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geoserves.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geostems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gerstner.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getoxley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ghostpi.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gifhelittlestars.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gil.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gill-cote-bistro.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalgrowth.group", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globedx.exchange", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "go-cqhttp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gobetweenfilms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gocleanandsafe.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "godoter.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goeddesoundandlight.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goedkope-bestelautoverzekeringen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gonce.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "google-lunettes.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gotzg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gracedonors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grangette.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grattecenne.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "griffithobservatory.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grimsby.ac.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grondwerkencooreman.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "groupsite.blue", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "growatiopex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gsp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gugli3d.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gzitech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hady.boutique", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happydays.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hartstart.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hcc-s.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hcc-server.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heiaheia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heinonen.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helenakmiec.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hellopandaphoto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helpcrm.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helplightning.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hemato.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hetoefenpunt.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hetveurtheater.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hexalinq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "highway71autoparts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiking-site.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hizakura.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hjbw-sterken.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hockinghills.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoffmannresearch.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoga.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hogamail.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holderbekebvba.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "home-design.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hopepartnershipproject.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostdns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hot-sex-photos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelsrejber.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hottie.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "houseroxrecords.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "houstoncenterforvaluedliving.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howlonghaswilliambeenwaitingforhislicence.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hs-hire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hselectricalservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huanvm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hugochilemme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huisartsenpraktijkzwalm.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hupoyunlar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huwshepheard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hygienet.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hyze.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iboat.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icddd.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icerockproperties.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icetechworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iddaatahminleri.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idealdedetizadorabh.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idealserralheriabh.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "identity-project.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "identityflashmob.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iepanywhere.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imediabay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imlbp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imobiliariarealdream.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impiantofotovoltaico.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "importsem.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "in-flame-team.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inevo.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inf-it.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infomeddnews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inkblot.art", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "innermindpsychology.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inomics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insideview.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inspiredelements.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "investpsp.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "investpsp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inzite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ip.gs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irentcar.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "islandinthenet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isn.education", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iso27001.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "istimdead.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-biznes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-cooking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-ip-rudnick.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "italianhelper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "italianweddingmusicians.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "italianweddingvideographers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itsbananas.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itsecrnd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iyspanel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "izmirprotestan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jad.so", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jamdro.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "january.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "japanese-tantra-escort.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "javierbarrio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jcwebtechnologies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jendela360.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jfhr.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jgsbrickwork.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jlqwer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jmp.chat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jmy.fyi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jnmusicgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobs.gov.scot", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jochem.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jofogas.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jordanhamilton.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jr-signalisation.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jsemonjr.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jskier.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justneworleans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justsa.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justweather.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kagata-kids.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kahvakiekkotalkoot.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaibinyang.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaion.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kajasafe.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kapsouro-ksimeromata.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keatsandchapman.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kentradioaeromodelers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keridos.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keshav.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kesifasya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kettsy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keuze.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keyoxide.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kieranpotts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kieutruong.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinencoin-tv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kingsolomoncages.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinto.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kirana.studio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klart.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kmdevelop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kmpropertyfunds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knowledgesuccess.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koch.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kod5.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konsultation.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "korstanjebouw.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kougeihin.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kozune.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kqh.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kroczynski.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krtl.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kruidenboeket.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kshpage.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kumo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kurs-fotowoltaika.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kursy-sep.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuudere.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "l33roy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lafattoriadiclotilde.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lancashirebeekeepers.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lanourotteguiry.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lara-eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lateraltrust.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "latifolia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lavaggio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lcrehlingen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lddr.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leaftracker.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leanrtech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "learnwelsh.cymru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leben-pflegen.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lebenpflegen-march.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lebenpflegen.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lechaletduplanbois.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leicesterastronomicalsociety.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lemitti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lemler.family", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leojweda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leonardocontreras.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lexmondcommunications.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liblogo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lichtplatformnsvv.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liji.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lilith-magic-molds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linea-nova.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linuxnews.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lissongallery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "litorallimpo.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "littlehoop.edu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "littleorchardpreschool.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lojadesomautomotivo.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "londonvetspecialists.vet", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "longlanearchitects.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "longwoodwrestling.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loonindex.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "louderfaster.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lower.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lucasbastos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lucasg.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lucky13strategies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luckydoglodge.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lufa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lxn.re", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lxnchan.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lyrex.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m-em.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m5industries.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macsonuclari.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magnet.pub", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magnusfulton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magnusj.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maiateam.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailbywire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailstation.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "majavucic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "makeuppleasure.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malego.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mamanetplus.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "margaretgel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maroochydorecitycentre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maroochydorecitycentre.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martinhalfamilyblog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martinhalliving.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martinhalpropertysales.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masterdistillers.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masterstation.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattcorallo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matteozinnia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maximumcontrol.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcpe.computer", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcpepc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcsfikirsanat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mddetails.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meals.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mechafightclub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medousaclinique.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melaodealmeirim.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melkoghonning.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mempool.chat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "menschocolat.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadopago.com.ec", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "merchstudio.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mesdagh.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mesologie-soesterberg.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metallrecycling.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metex.exchange", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mianfei.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "micanetic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michael-hess.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michelangelo1978.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michielskleding.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "midos.house", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "migrinfo.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnonesie.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikeschaffnerphotography.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mileonapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milesconsulting.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "millenn.photos", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miluneetsens.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "min-forsyning.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minquipo.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minul.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirkomainardi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miswonline.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mmwtrademarks.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moba-automation.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobikasa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moderntech.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moensnatuursteen.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moisesbarrio.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "molkerei-ammerland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monicadurr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moonsmanagement.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morinomiyako-a.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motovaruosad.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moz.idv.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtn-media.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muratboyla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musicsrv.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musik-reitemann.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muv.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mvib.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mx-solutions.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mybreakwatertower.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mydisabilitymatters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mydisabilitymatters.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myfirstchessclub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myfitnesscare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mylisting.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mylittlewallpaper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mytroc.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n3rd.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nagya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nagya.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nagya.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nagyandras.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nagyandras.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nagyandras.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naika.clinic", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nametalent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nanomusic.co.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "narkocenter116.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nation.net.pk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nationalemployertraining.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naturabuy.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ndxinfo.eti.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neb.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neero.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nejsvetla.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nepomuk-ev.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nerdgebastel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "networkingwithfish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neuland.technology", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neuroticpoets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neutrino.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newengineer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nharper.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ninohaslach.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noacore.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noiseboyz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "norbit.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notebooksbilliger.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noti.tg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notific.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novelly.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "npaf.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nrac.or.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nsikakimoh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ntokens.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nu.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nuvabridge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "o9solutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oblak.host", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "octarine.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "odbtomsk.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "office-basilique.notaires.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ohtoy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passky.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passthrough.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paulinaschubert.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paysomeonetodomyonlineclasses.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcsx2.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peachesandchampagne.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pedodontie.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pemasalem.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portugal-a-programar.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "post.tf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "posteo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "potatolighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prabhasakshi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "precisiondentistrynj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prensaalterna.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "profchristophergoh.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "promenics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "promoteroute.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "propertylondon.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "propertyofthepeople.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proxyhub.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pry.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pshar.ma", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psicomagia.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psihocentrala.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pttimewithtim.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puliziacantine.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pulizie.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pullman.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pumpen-blum.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "punaise-de-lit-paris.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purchaserprotect.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pvlrmnnk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pvz.tools", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "py.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "q.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qianglie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qoyyim.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qt.ax", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quantum5.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "queirozmiotto.adv.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "queirozmiotto.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rabattkoll.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raccoltarifiuti.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "racemanager.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "racetraq.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiomixer.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ragebin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ravalement-facade.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rbt.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdo.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reapandsowmarketing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rebase.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rebel-owl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rec5.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recordati.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "red-official.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "refinedinspectionservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reisspecialistdevalk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remedi.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remyphotography.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reneploetz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reneschroeter.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resmim.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resort-nuvola.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "restaurant-naan.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "restbygait.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retinaconsultantstexas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revisore.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rfasafedrop.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rfn.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rheimsandcohen.ltd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richlogic.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richtabak.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riedl-shk.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ripetizioni.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "risonanzamagnetica.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ristrutturazione.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ritirocalcinacci.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rm2brothers.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roadtripaustralia.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robinb0s.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robinbos.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robkish.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robocorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roc-taiwan.su", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roc-tw.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rokuk.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roodo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roofonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosevalleyfolk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rotas-turisticas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rotasturisticas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rotasturisticas.com.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rotasturisticas.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rotasturisticas.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rotasturisticas.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rt-praxis-barbara-scheibel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rte.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruiduntrading.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruixin.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rul.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rumeli.edu.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rwhapdentalservicesreport.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rx-base.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ryananeff.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sacwellness.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sailarmada.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saily.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sainttheresahome.org.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sakellariadis.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salesdesign.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salvalartesicilia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanapaino.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanktannae-advokater.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sartoria.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "savanna.vn.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "savannapro.vn.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "savingtails.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scarboroughtec.ac.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schauergroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schlossanger.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schluesseldienst-haymov.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scontomio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scott.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secondtreasuresmv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secret.garden", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sectigostore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "securesite.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "securimail.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seedbox.hosting", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "senkals.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sentor.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sentorsecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seodelhi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seowind.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seputarfinansial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servivum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sfumusic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sgoossens.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shahriar.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shahriar.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shahriar.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sheetengine.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiggles.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiggles.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shinodadc-nakano.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shipaik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shivenjoshi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shoekeys.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shopping-cart-migration.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shota.pictures", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shou.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shouldiclick.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "signcreative.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sistemista.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sistrade.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skill-x.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skky.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sklepsnowboardowy.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skrillex.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skvele-cesko.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyfall.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skylandanalytics.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slcdn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sleepshop.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slim.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slogix.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sluitsnel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smarriti.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartertowing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartmessages.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartphonefixen.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smashingmagazine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smgl.cm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smilecliniq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smilephi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smm.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smolbotbot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snabbacash.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soapsspoilers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "socialhp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soengen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "softekontrack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solarium.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solutionplumber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "somautomotivobr.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sorubak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sorveglianza.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sosessaimabeilles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sovereign.bounceme.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spillbasen.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spintracer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spn-it.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportfits.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportfits.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportfits.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sprucingupmamahood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spyequipmentuk.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sqrl.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stavgp2.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stepplanning.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stevebanks.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stevinson.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoicus.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoprat.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stpatricksmapleridge.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strail-english.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stratinator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strongmind.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sun-lounge.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunsetweb.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superalem.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superseguros.gob.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supervasan.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "surebets.bet", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "surfsm2.ddns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suziepachecoart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swot-digital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syntric.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "szih.org.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "t8software.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "t8software.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tabe.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "takosuke.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taleatherworks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talkeducation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tallcraft.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tappezziere.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tattoopiercing-wien.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tda-werbetechnik.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tda.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teachingtoday.education", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamsignia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tech506.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techlandgg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techlore.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techrevolution.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techzant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tecpartnership.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tedyst.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teengamingnights.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tellaresdo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teplovizor.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terme.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "termoidraulico.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terumoindia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tesla-fire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tethys.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teztarama.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thaihong.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theathletic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theaustinbulldog.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecheapairlinetickets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theclarke.wedding", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theeverydayprepper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thegildedthistle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thegraduatesalon.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theislandwellness.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "themexx.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theo546.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theopaczek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theoriginalcandid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theparkwoodmanor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thepennyjar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "therapyservices.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "therealestatesolutionsguy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thesiterank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thesoundproofwindows.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thevegcat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thewarehousefellowship.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thisisreno.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thoenesfamilierecht.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thok.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thoughtspot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "threatint.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "threatint.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "threatint.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "threatint.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "threatint.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "threatint.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "threatint.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "threatint.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "threatint.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "threatint.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thuthuatmac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tillydesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timo-viveen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tineb.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinint.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tipi.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tk-its.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toabr.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toeverynation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomashejatko.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tommytran.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toofab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toon.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topgevelbekleding.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topsexik.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torsdammen.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tosbourn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tourisme-dordogne-paysfoyen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tpedu.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tpedu.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tpf.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traitement-punaise.paris", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trashpanda.website", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traslochi.napoli.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traumtrauringe.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trave.africa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelclube.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trieuvy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trolla.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trongkhanh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartner.academy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartner.capital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartner.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartner.education", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartner.fund", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartner.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartner.software", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartner.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartner.technology", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartner.university", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartneradvisor.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartneradvisor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartneradvisor.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartnercapital.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartnercapital.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartnercapital.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartnercapital.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartnercapital.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartnercapital.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartnercapitaladvisor.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartneredu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartnereducation.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartnereducation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartnerfund.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartnerfund.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartnerfund.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartnertech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truepartnertechnology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truewinter.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trust-ted.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trutrip.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truyen-hentai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsumishima.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuinenhullebroek.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tulsa.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turisbrasil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turisbrasil.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turismoeviagens.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turkdevs.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turkeysforlife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuz-es-munkavedelem.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tyrael.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "u2co.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ubill.ge", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ukseafood.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ultrasbet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uneaimages.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unitysavannah.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upcwifikeys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uphold-15-party.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uprawnienia-sep.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uptimeuno.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utterman.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vakantiehuisverzekeringen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valemusicfest.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valentin-weibel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vancouverdriveband.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vanlierdezottegem.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vapebuddy.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vapoteuse.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "varalaval.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veebiveski.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veldadvies.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verhave.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verkeersschoolvanhouten.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verndale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verse.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "versus-hair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vertichost.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vestal.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vetantumapu.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viaeth.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vibrolandia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vichovska-vyhlidka.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villagevet.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vilvoordelaan.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virtualpavilion.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virty.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visatitans.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitamixromania.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viveoriginals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vkustradicii.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volantinaggioaroma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vollenberg.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "w4g-security.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "walter-foerster.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wangpedersen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waren.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warrenfisher.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "was.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-redactor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-redactor.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webaam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webal.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webpkgcache.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wecareplatform.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wedot.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "welcoop-logistique.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westonreed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wherecaniwatchanime.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whistleblowerordning.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whodiduexpect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wibu.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wigan.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "williammcgill.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wilmothgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "win11.ren", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winechapter.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wipayfinancial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiretoss.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "withdati.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woadzs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wojart.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woodcraftcompany.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woonverkoop.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldsweet.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wouterkobes.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wp-in.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpturnedup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wsdeboer.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wsrv.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "www.ki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "www.tl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wyndhamcapital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "x-team.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xajh.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xevnet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xm1s.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--9kq.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--uxqy9syyb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xylos.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yardtower.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yaseen.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yasmeencreative.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yasmin-apartments.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yjz.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ylromania.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yobify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yosh.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yosm.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youiv20.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yrausquin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yukitty-yukitty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zankevich.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaparoh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zdraveziti.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zdravshop.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhodani.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zijingbt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zijingbt.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zivotsdietou.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zukong.party", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0w.al", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "16195.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "18836.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "20plus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agceauditores.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agcegroup.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aianetwork.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aickelin.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aisera.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akad.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alg-fotografie.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "all-waystraining.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allapresenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpenhof-suedtirol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpes-deis.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altabadia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altimetrique.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bancontinental.com.py", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bas.codes", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "broadbandexposed.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brsvcs.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "godark.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "21stcenturyoptics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2cv-co.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2hypeenterprises.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7thcircledesigns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0x1.st", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3eyonetim.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4dimension.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7654654.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "893fm.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aaltocapital.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aaltocapital.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aarhus-protein.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abcum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ablx.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abraxas-apis.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abraxas-apps.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abys.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accademiadelgolden.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "achildshome.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "actions.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "activat3rs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ad-education.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adam.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "addictstore.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adressendata.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advanceoptical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advocaat-dejonge.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affairs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affine.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afoikrali.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agedcaredentistry.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airport-acap.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akaritakai.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alanokling.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alarmnewengland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "albertsemple.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alfateks.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alkemy.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allureclinic.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altabadia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altairfp.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altavaldinon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alwuz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amazingribs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amis-du-cinema.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ampact.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andre-baum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andreeapasat.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrewfergusonbooks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andriano.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "androidcrunch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anehtaconseil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angelaheck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anhdvshop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animal-clothing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animmouse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aniya.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ankaraciftkabin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antagning.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aoyagi-farm.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apartments.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aplusteachingresources.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appspcwiki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arboristic.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arhgrille.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aristidebouix.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arnstein.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artemiy-plus.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asfalti.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asgard-engineering.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "assiplan.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "assistentesanitario.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "assistere-a-casa.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "assistere-a-domicilio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "assistere-in-famiglia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ast-nabytek.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asthamishra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asthowen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asthowen.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asticon.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astrid-stolz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "athensdrunktour.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atimba.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlantishop.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "attogtech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aucc.org.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audioscenic.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audioscenic.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autoamor.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autolackierung-sadiki.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autospurgo.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avelengo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avincouture.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avontuurlijk-natuurlijk.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "awarity.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayresolympiclodge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babb.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baboo.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badkeys.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badmania.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balester.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baming.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "banktool.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barbarabryce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bart1ebee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baseballcrank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basmacioglu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bb.church", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bbcsuk.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beachsmile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beadaptive.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beast.rent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beaver.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bebidasrd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beet-und-balkonpflanze-des-jahres.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "begleitung-zuhause.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bellaslokal.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belocallyseo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belovedbumps.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beltramifashion.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bengt.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beninca.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benwoo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bergerandgreen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestroutes.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beta-cell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beton.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigmuff.duckdns.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigrivercn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigriverintl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigriverjp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigriverservs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bilkovitinkturi.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billaud.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billykwok.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bixilon.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bizoneplan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bk27.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blakenichols.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blastofftherapy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bliesener.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blodeuyn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluegoat.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blumagine.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boatsandoats.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bob-fuchs.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bodesi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boealpinelounge.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bolzano-bozen.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bolzanoavvocati.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bolzanoinfo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonviveur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boomboomboat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bp-systems.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brandsafe.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brass.host", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bravo.bi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bredband.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "breinify.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "breinify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brew.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brf-tradgarden.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brg.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bridalgallerysalem.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brillionworks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsdguru.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "btec.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buero13-design.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bummelwelt.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burningbooks.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buronducouderc.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burybox.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "businesstool.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "butl.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyshine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buzzybites.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bynono.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bztech.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cabinetlm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cadvending.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cakeshop.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calculate.co.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caldaro.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calibrationrecall.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calloway.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "campalhilal.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "campfire.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camping-trentino.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "campogrande.ms", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canovamedical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "capitoltrades.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "care-q.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "careapp.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carehomejob.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carezza.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carouselinsights.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carroattrezzi.lazio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catmatchers.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cblocallocksmiths.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cbrbuildingrepairs.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celinesrecipes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centricient.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centrum-bz.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chalet-gerard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chaletsusi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "challenge-magazine.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chengmach.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chesapeakeopticallab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chiusa-klausen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chongqing.design", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "choosealicense.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chorverband-region-kocher.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christopherterryweddings.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrudim-city.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chubuhokenservice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cityvision.org.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cjc.org.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "claimpilot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cleanspeak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clearsailingproperties.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clevon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "climatejustice.nyc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "climaverde.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudnexusit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubcupido.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubeamizade.com.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubedores.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cluedosenvivo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coldpaste.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colink.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collepietra.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colposcopy.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comet.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "communebouteille.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comprising.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "concrefy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "confianza.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "constellatio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consulentedellavoro.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "controle-exportations.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "controleert.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conversationexchange.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coolspeak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corridorsands.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corsohaccp.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coteouestmedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cotsworth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "countexact.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coventrycollege.ac.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cozyeggdesigns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "craftmeow.support", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creatormetrics.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crescentchc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crmzz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptulo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csaemeacongress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csaemeasummit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csafederalsummit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csgofinder.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ctmlightning.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyclemasters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cydogbrowser.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cynrgie.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "czebox.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dailyrenewblog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "damscheid.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danbailey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daricaun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darkoctoberseance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dasble.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dastomize.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datainvest.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datalich.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dblabsite.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dboptical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dbt3ch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dbtechreviews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "decisora.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "degraissagehotte.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dekinai.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delta.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deltacomputer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deluxecar.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demandmatrix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demoussage-drone.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dent-academ.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desertgrove.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "destruction-frelon-asiatique.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devopsish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dfwwp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diankou.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diankou.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diankou.com.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diatr.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diedesigntante.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "differenziare.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discoverbrampton.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazionemilano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "distant.land", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dlaces.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dmautomek.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dogdayafternoons.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dolomititour.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domkiwgrodku.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dotridmeto.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "downalarm.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dr-nope.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drafatimagarcia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dralucilavolasco.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drillster.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drillster.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drillster.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drillster.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drillster.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drillster.co.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drillster.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drillster.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drillster.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drillster.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drillster.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drillster.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drillster.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drillster.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drillster.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drillster.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drillster.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drillster.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drillster.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drillster.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drilster.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drilster.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "driveandpark.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "droneup.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drshefalibatra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drywall.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dsjbvba.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duka.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dungchata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duurzaamgww.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dynamicdiesupply.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-resident.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "earthshotprize.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebookdep.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecole-eac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecole-parfum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecoles-conde.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edgeconnectnj.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eduradiadores.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "einsteinmishra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "einwie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eivanec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eks.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electronsweatshop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electroyclima.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elektrotechniker-beck.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eliamakingmemories.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eliaustvarjaspomine.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elizaminami.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "embryooptions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emilioadani.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emonovo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "employmentguide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emprendecausa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enamonada.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "endoflife.date", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "endrust.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enefitvolt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enefitvolt.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "energicertifikat.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enerot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "engbers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "entzoneplan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "environcom.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eosguru.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "equalifica.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "equipsys.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ericleuthardt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esame-di-professione-cinestetica.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eskimuzikatolyesi.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esopticallabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "espub.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esquirelawfirm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essilorpse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estcequemonordinateurestallume.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estcequemontelephoneestallume.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estoense.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eszkola.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethniki-antistasi-dse.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eu4ua.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eugenegamelan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eugster.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurotracs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eusebiu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evalueit.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evoqion.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exceleron.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eyesaveopticalinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabiopaiva.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabulousfarmgirl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fandt.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fantinishop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feldmangallery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "felixhollitzer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferchup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fernvenue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferrybig.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fertile.fund", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fetchmonitors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fiekeoffringa.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "figl.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filesoup.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fillo.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finlib.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firatcakir.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstchurchmn.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fisa.net.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fishman.idv.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fitasdobonfim.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fitleads.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flanadot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flaviao.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flokinet.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flom.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flourishgrazingevents.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flowheater.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flowinity.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fnet.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fonds-dieter.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "force.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forcenet.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foreammatti.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forgetwp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "formatmydoc.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fornata.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fotografiadellalucerossa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fotp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fpalzira.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fpline.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fpsclassico.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "franchisebarrelhousepub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frankelod.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frederikbethkeviolins.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freepro.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freezoneplan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frequencymc.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fretboardforever.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "front.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fselka.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ftm.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fullpaisa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furisode-sendai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fusico.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fusico.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fyllingen-elinst.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gachea.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galwaytooughterardgreenway.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gasenergy.kz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gastro-dino.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gastrodino.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gastrodino.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gauting.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gemawardian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geneacdn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geneanet.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geneastar.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geotrust.com.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geppy.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gesath.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getbellhop.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getfastanswer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ghanapremiumconsultant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ghotokbaba.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ghpastor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giftexperts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gigacomputer.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gironde-tourisme.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "githubindia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gkdworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glenwoodpark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glitched.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalsign.com.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glorenza.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gmopconsortium.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goclark.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gomarket33.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gosimpler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goteleport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gowatermarkdesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gracelawoffice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graficagesa.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "granby404.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greatlakesden.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greensmartplanet.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greensmartplanet.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grissianerhof.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "groepper-it.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "growbydata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guideline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guiltyfox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gwnmarketing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gwrr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gypso-sendai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "h-maxton.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "h2ole.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hafling.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hakama-sendai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "halkakoop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "halloffameapartments.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hanhardt.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hansa-flex.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hardmine.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harvardpartners.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hasstopped.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hawkins.plus", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "headhuntercolombia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healinfoods.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hehn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heistheguy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "help911.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hepfree.nyc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hepsiemlak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hetmedialab.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hetvezercsarda.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hevo.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hevoapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hevodata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hevoiq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "highproxies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hikawa.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hillhiker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hireinsight.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hofgut.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homegrounds.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homensdeouro.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hornyaf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotel-bruneck.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotel-brunico.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotel-fleuralp.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotel-garni-letizia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotel-rosskopf.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotel-valgardena.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotel-vipiteno.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotel-waldheim.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelalpino.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelmariasas.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotvehs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howandroidhelp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howardshaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howdoesmycode.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howpchub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hpfxd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hubbell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hugs.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humorojo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iamkate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icedterminal.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icustomboxes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ideaktiv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ideasinlab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idoxus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ifh.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igloballaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iid.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ikaria.com.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilchaos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "im-s.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imageurs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "img.ren", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immo-israel.ltd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immoisrael.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immoisrael.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immoisrael.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immoisrael.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immoisrael.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immoisrael.ltd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immoisrael.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immoisrael.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immoisrael.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impartner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impianti.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impreg-group.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "improbo-group.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inetol.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inevo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infinitomarca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infinitybots.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infomarradi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infrastatic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ingemmologie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "innova-online.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inostudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inovitec.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inspirascholen.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inspiringtips.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inspirithealth.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "institutoessencia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insyde.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "integratedbms.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intellek.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intersun.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intor.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ionize.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ircica.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isole-lofoten.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isra-mag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "israel-nadlan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "israel-real.estate", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "israelandhome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ithuthuat.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iv4kiso.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivanesalud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ixypsilon.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "izmail-invertor.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jacobtamassiaadvocacia.adv.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jamesachambers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jandenhertog.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jandenul.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "japan-tent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jasongreenwell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeff.win", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jerusalem.estate", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jerusalemplus.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jimbrown.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jlulug.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jlwagner.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobcie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joelengel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jokerme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jorgenson-peninsula.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jpope.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jsautomation.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "julianatoma.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "julianbh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jw-services-stg.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jw-services.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "k7add.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kada.lk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kagel.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kangouroo.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katjapratschke.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaustubhk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaylielaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kbco.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kebab.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keithstaxis.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keritial.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kescher.gay", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keschi.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kickic.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kidzonet.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "killarnee.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kin-mail.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kin-mail.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kin-mail.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinaesthetics-begleitung-zuhause.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinaesthetics-net.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinaesthetics-net.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinaesthetics-net.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinaesthetics-net.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinaesthetics-net.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinaesthetics-verein.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinaesthetics.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinaesthetics.ba", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinaesthetics.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinaesthetics.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinaesthetics.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinaesthetics.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinaesthetics.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinaesthetics.ge", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinaesthetics.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinaesthetics.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinaesthetics.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinaesthetics.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinaesthetics.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinaesthetics.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinaesthetics.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinaesthetik-verein.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kitsplumbingandheating.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klima.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klimaplattform-milch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klubgerlach.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kocaeliyiseyret.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "komatsuforklift.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "korhonen.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kovrik-tm.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kr-beratungscoach.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kr-labs.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kshop.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kucukcekmececilingir.gen.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuma-it.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kvasta.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kylvaja.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kymcojp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "labottegafinedistillates.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laboutiquedeluminia.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "labrat.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laforgia.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lagrollabz.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laguscei.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lalelal.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lamplightvideo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lapasticcerianaturale.store", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laponder.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laponders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "latymer.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lava.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laviaregia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leadsonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "learnpedestal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ledigajobb.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legal-eye.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lehrgang-zum-brandschutzhelfer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "les-pros-du-drone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leuthardtfamily.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lff.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lfmosqueira.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libertydentalplan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifeofasi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifepathdoc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linkla.ma", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linuxiac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "listening-skills.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lloretparty.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lmrcirurgiaplastica.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loc-gauthier.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loganandmaria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logopaedie-millian.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lookitdesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lottologics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lousoyolos.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lt27.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ludasmith.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lumoa.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lumus-grafikdesign.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lynnvartan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m5wl5r.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macley.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madame-kosmetikstudio.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madost.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maeitems.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magnetvpn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mahnwache-luetzerath.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mail-routing.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maison-auriat.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "makrama.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maksima.kh.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malcolmsterling.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malermeister-kessler.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malles.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mangio.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manshamita.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mantaro.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maranza.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mariospizzaoxford.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marketingwelt-lipp.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markhaehnel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markushof.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maso-corto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mastere.tn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maternityfashion.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattpippen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mayx.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcleishandmatthews.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcleodoptical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcnairinternational.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "md-mb.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meektech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meetingvotes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mego-tracer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mego.gmbh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megotracer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mekhaodee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melodee.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "memoryjoggerlibrary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "menerga.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "menlogov.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mepresto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meribook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metacareers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metasophi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mgfpatrimoine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miarecki.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michael.ie.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "midwest737simulations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mightytips.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikoulloa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikysgrill.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milestonemachine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minasfor.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minecraft.buzz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mines-stetienne.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miniliga.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minnesota8.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mishraweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "misreports.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "missflora.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mistertesi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mistitservices.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mitjavila.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mjwadvisory.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mmulder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobilificio.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mochanstore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modahaber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modd.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moduhygiene.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moe.tools", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mofbinsurance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mogwailabs.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mohela.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mohelafederal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mojedatovaschranka.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mojeurlopy.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monkey-donkey.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moserhof.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moveonlite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mozilla-russia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mr-englischkurse.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrwindow.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msm.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtf.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muchoruidoacademy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musacomo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musasionline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myaccountview.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mycloudsoftware.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mygd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myoctocat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mytea.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nalles.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "namoro.com.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naschtastisch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nateoster.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nav.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ncat.tokyo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nctu.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neatful.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neetze-ferienwohnung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nelsonrecruitmentservices.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neom.directory", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neostralis.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neostralis.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "net4you.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nethead.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newvisionhealing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ni-dieu-ni-maitre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nibert.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicholasnassar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicolasfrebert.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicosaveyn.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ninrio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "njedge.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "njpc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "njtransfer.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "no-gods-no-masters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nobackups.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nobitschek.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noboxo.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notary-tx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notsoape.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nowhairtime.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nscorporation.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ntppool.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ntppool.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ntppool.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nubnology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nuhbeg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nviewscareer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nyac.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzdata.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "o00.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oauthdb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obraideal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ocsc.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oddfellowwellness.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ohrus.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oinimod.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olamiccutlery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oldtoystuff.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olepiraatti.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olisius.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oliverflecke.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olympic-lodge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olympiclodgebyayres.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omipicon.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onebanc.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oniuq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "online-wedding.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinecasinotrend.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinechallenge.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlyvintagewatches.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ononoki.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onsetupdates.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onysix.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ooo.xxx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openmindsec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opiskelijaradio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opiskelijaradio.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opritten-en-terrassen.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opspedia.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opticiansri.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optik-tamara.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optimumpacific.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optogenics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optoutpod.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orbit.church", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "origemtemperos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orilon.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orionlab.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orlandgo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oro.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osakagasaustralia.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osbornepro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oskety.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osteopatiaymasaje.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "otariarutiunian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outcasts-guild.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outgrow.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oxinarf.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oxos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oyunnetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ozgurkazancci.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p7m.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p7m.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pa1ch.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pachuta.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pack.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "packedagain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "packtracking.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pacman.ltd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pacteo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palamaailmalta.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palliativ-del.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palmex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pandora-prestige.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pankoff.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panser.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pansermuseet.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pansermuseum.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parideal.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parktownpatrols.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paschmid.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pasticceria.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pastorsline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patchduty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patchli.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patiga.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patri.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pauljrowland.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pauljzak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paulrainesjr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paulwatler.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paulzen.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pdvault.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ped-bike.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pedalia.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pequenosbichos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perferxprecision.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pergamentka-apartments.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "permis-a-points-montpellier.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pernod-ricard.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perspio.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perthweekend.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peterboroughhydroponics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peteroerlemans.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pettreats.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pfd-nz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pfwarriors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phenomnaltwincities.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "photogelique.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "photograni.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "photowire.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phsa.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "physiciansopticalservice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "physicsforums.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pier2pier.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pigop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pilotbook.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pimmel.stream", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinnoto.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pionplex.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piscestrade.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixel-perfection.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixel-puls.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixelmattic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixzilla.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pizzeriaveneziana.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plandecorones.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planetamotoshonda.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planetstimes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pleasantvillepd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pletenkin-nn.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plus-project.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pnr.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pocahontascountywv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polarbear.army", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polismar.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "politagree.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polygondemos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polygonthemes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polyring.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pongplace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ponteggi.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pontosnews.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pooletranslation.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poortenautomatiseren.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "popwaifu.click", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porlote.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portaldamizade.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portalutil.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portsona.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powerhousegym.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powersergopioidoverdoseinterventiontrust.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pragser-tal.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "praxis-dr-bandulik.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "preciousdad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "preciouspebble.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "premiachef.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prepa-code.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "presnetter.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pressemeddelelse.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pressimize.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prestaservicesgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pride-enterprises.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privacydesign.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pro-laser.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "productosquimicosrd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "profmatheus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "progezi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "project-tamriel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "projectlarix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proressources.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prozoneplan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psacertified.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psicologiaparatodos.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychotechnique.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychservice.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "publicishealth.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pulito.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pullman.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purecodedigital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "putitforward.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pymestari.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pyxyp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qbrix.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qin.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qtspace.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qubitsandbytes.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quiksite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quillandinkroleplay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quinnlawcenters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quintadesanamaro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quiq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "r17.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ragasto.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "railcarrxqa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raise-educationandwellbeing.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raisetheyouth.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "randorn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rankeco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rbcafe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rc3n.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rd0xb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reactivedrop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recuperation-points.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redefertig.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redhotmonks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redhotmonks.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redknothomes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redragon.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redvent.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reformayobra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regata-club.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rehasport-informationen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "relevaillesquebec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "residence-edelweiss.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "residencescauri.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "restauraceumichala.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resurfacehub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retiring-dentist.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revenue-playbook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reviquimicos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revisione.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revres.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rikpalm.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rinsbacherhof.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riscone.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rivertv.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rizaderindag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rkkerkjoppe.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rl3.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "romanceamor.com.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "romaniacompany.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rososa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royal-flowers.dp.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royalfoundation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royalgroup.msk.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rpowerpos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rubika.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "runlevel3.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rusnalog.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "russellmeek.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rycose.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rycose.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rymdweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sac-shoes.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sachte-restaurant.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sagicorgeneral.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sagicorlife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sagicorlifeusa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintefoy-tarentaise.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sakder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salonkaufmann.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "san-cassiano.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanitaria.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saphi.re", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saritas.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sato-legaloffice.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "savewithupgrade.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sbestimes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schmiedbauergut.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schnalstal.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "school-register.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schwienbacher-karl.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sciagebeton.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scoro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "script-sign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "se2.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seanbright.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seanbright.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seanbright.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "searchgurus.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seebetterlab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "segel-setzen-buch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "selltobpp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "senaofertaeducativa.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "senrj.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sergeykozharinov.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serguzim.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serviziocolf.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "setof88.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sg-gallerylive.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shailendramishra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sharpmetals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shipitsmarter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shoppingisrael.org.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shorehillgolf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shortstackcustoms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shortwave.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shouldiwater.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "significadodenombres.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siloportem.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplydonelegal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "singita.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sinta-d.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siretaweb.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sitemap.solutions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siyako.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sjeverni.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skilltran.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skorstensfolket.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sky-of-use.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyqueen.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slagerijrooken.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartlandconstruction.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartvalor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soadultos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soccorsostradale.lazio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sodel-sa.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soft.taipei", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "softizy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "somedial.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "somosgratitude.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sonarsource.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sonaza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sonaza.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sonohigurashi.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sophos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soumissionalarme.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soverin.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spaconsulting.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spherejoias.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "splendadent.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sporthotel-rasen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportposch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sproutsandstems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "srmi.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stadtcentrum.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stamperdle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "standard-mobilitaet.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "standardlifters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "standardmetrics.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stefanrusie.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stellarosa-clinic.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steppicrew.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stohrm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stopaggressivedriving.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storesonline.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storungssuche.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "streamliner.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "streszczenia.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studioavvocato.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studiopanamaitalia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "subliminalrecorder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sudtirol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suedtirolerhotels.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunticschool.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suomensotilas.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superioroptical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superioropticalva.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "surrealdb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suutaripaivat.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swacash.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swap-ict.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sweetgracemarket.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sycorr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sydneysteinger.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "synrelay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syntech.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "synth.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sysbert.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "systemerka.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "szeged365.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sztfh.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tachtien.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taekwondo-hochwald.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "takarabrig.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taniawizualizacja.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taxglobalizers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taxpackagesupport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tblflip.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamvite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techfuturae.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technowikis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tecnoimpianti.bz.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telaviv.estate", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telco-motor.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tenon-backup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terborg600.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teu-fel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "textura.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tg2sclient.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tgcfabian.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thalamus.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thammachartconnect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thatmy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebeatyard.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theblackravens.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theblink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebodyshop.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecotsworth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thedaac.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theflashback.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thegermancoder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thego2swatking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thehosmers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "themeccagroupllc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "themetropreneur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thereload.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thevetstop.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thisisbenwoo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thoughtexchange.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thoughtexchange.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "threeluck.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thuisverplegingvandermeiren.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinder.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinnitus.tirol", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tirflesia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "titiansgirl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tjpiezo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tlpn.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tlv77.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobias-olbrich.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "todoist.help", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toho-tk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toldos-en-stock.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomkleinit.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomoveornot.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomthorogood.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomthorogood.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topendcamphire.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topmanitas.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topvpn.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toulouselautrec.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "touroogle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tp-genie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trecobox.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "treexy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trendware.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tripmakery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tripwire.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trolldi.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "troplo.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "troyflexpay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tudorrosesamplerguild.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuleap.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turnkey-ips.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twolittlefleas.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "typescript-weekly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uncivserver.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "universityadmissions.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unstoppabledomains.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unterfrauner.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upandatom.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upgradeloans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upjong.co.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urbane-narrationen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uvomaltiv.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uzzamari.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vacanze-in-montagna-dolomiti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vaderochvind.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valdifunes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valledibraies.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valsenales.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vanherle-dakdichting.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vcebookclub.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veganfamiliesclub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "velken.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "venus-erotic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verkada.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vertanex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vfwpost1.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vicmatus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vidanuevaparaelmundo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villa-christina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villnoesser-tal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visioncraftinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visionproductssoutheast.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visithuntingtonwv.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visitmorelos.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visometry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visual-dreams.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vjn.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vl.cloudns.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vmedia.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volkswagen.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voucherx.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vpnalert.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wahl-co.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wasistderunterschied.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waterdropcultureproject.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webbureauer.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webdoors.ge", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webtrend.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weekendbus.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weetalksls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weirddisney.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wenmilot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wenoexchange.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wesleyanbank.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westchesteranxietytreatment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westjp-tetuke-hosyou.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wgauthier.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whatfontis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whiteneon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wihiki.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiki.berlin", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wilfert.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wilfert.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "willerei.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "willerei.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "windgucker.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "windows11.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "windybank.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winoptical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wir-pflegen-zuhause.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wir-pflegen-zuhause.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wir-pflegen-zuhause.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wir-pflegen-zuhause.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wisdomteethsydney.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wittebrug.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wkshp.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wolf333.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wollmann.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woltlab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woltlab.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workingtalent.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "world-mail.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worthyblog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wsm-naramowice.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wth-security.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wthproject.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wwp-beauty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wwpxbeauty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wypracowania.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "x.sb", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xertainty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xertainty.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xgpu.deals", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xinxeta.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xmdhs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--90amdjbi3c0ec.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--berufsprfung-kinsthetik-b8b50d.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--kinsthetik-s5a.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--nbetcieczane-4ib.gen.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xnopyt.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xpertmedia.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xpsnow.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "y.com.sb", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yahvk.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yamacore.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yearinviewcalendars.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yesglasses.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yogaportalen.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yonistap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "young-hands.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youremailexpert.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourlifespirit.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yupulse.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yzal.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeitschrift-lq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeitschriftlq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zenithvitalcare.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zerto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhangyiming.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zl2toy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zumturm.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "115.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "27.gay", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2finish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "360spider.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "360system.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "365vision.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4.sb", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4ads.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "51space.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aaoth.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abgrafstenen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acasadoprodutor.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aceai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "activities.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aegeanmep.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aegee-academy.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aegee-academy.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aegee.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aegee.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aires-autoroute-areas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airforce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinesto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlineti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airship.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexisshaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allis.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allohol.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "almanshood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alnilam.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altec.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altsetup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angkapaito.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aniababan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antikvariat22.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appsoda.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appstory.co.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arborio.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arifarma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artmaker.kiev.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ashbyhq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ashotofadrenaline.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asportnoy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlasreclame.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autohero.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "b3tec.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bannerrealty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barnhomega.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basisofcare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bassotto.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basuramarina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bdew.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "becker-annika.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestprofessionalchainsaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betteroffed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beyondmydoor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biber-bike.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biblionix.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biblionix.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biblionix.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biblionix.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "big.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bioarchlinux.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biontech24.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bizapps.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bledina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bleuwire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boostport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boostport.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bosanski-forum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bravelychoc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brutal.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsatroop3.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bundlejs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burgesspetcare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "business4all.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cabinetselect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cachecrawler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cagrimerkezinumarasi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camhavuz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canterburycrest.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carpeleo.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carpeleo.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccaa.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdeeply.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cedarmanagementgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celtigafutbolclub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chameleon.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charlestonpersonalinjurylawyer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrisrude.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christiansciencevancouverwa.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrome.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chronicbuilt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citizens.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cityutilities.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clearsoftcomputacion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "closrr.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cocinandoenelsalnes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comdirect.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "componentcore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "concurseirosdeplantao.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "constern.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "contos.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "controsoffitti.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conxcon.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coursehero.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "courselore.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crestalepropiedades.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csa.support", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "customerservicepal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daganghalal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dcvc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "debbiesblog.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dejiren.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delycate.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denverroot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diamantiques.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diamondsystem.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dictum-gardentools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dimensions-ohs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "divorceattorneyshouston.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djspacies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnel.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnslow.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domowezrodlozdrowia.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "driveandpark.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drwilfredbrown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dubaivisa.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dynamix-tec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e2epartners.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e4a.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eckel-edv.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eckel-kieser-gbr.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecommercenews.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecommercenews.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecommercenews.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edist.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elesconditedelola.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elithus.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eltoroweakly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enefitvolt.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enefitvolt.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enefitvolt.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enefitvolt.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enefitvolt.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enefitvolt.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "energyuse.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enjieding.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eplus.group", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essr.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "europeontrack.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evermed.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exact-distribution.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exarius.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ezcater.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "famre.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faster-disinfestazioni.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fcrrijswijk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feed-back.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feliratok.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feltencie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "femina.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fiberxl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fileplanet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finaster.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flatrooms-chiemgau.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flexdesign.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fmjansen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fssolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galileicompara.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gameserver.fun", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garrettrasel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getboost.social", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getrelish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gigs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "githubnext.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalsens.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gomovein.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grekos.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guild.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gumtree.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gvenglish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gynaeinfertility.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haislipcorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "handicapzero.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hashsters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hashsters.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heerenveenlokaal.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helhetsframtradande.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helmondautoschade.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hersheyfeis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiiw.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiiw.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hindenburgring.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hirschbergertal.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hllr.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hochzeit-ap.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hodi.host", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homematicblog.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hondengedragscentrumfriesland.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoolibit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelsthisweekend.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "houstonmethodist.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huggy.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hymn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ichibot.trade", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icims.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icims.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icims.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "info-eolien.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ingeseratlantica.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inhousehr.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "injurylawyers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insportline.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interacademybrazil.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inzeni.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iraf.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itasolution.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itondersteuning.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itsuka-world.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivetebolos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jasomill.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jin-design.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jonizatorywody24.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jurnalfm.md", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalaharifeis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalmarbilder.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kanal-c.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kappow.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kazuno-jc.or.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keeb.supply", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kemanai.akita.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kidis.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kklb.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kll.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kochdigital.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kodeholic.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "komichcapital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "komornikmroczek.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kondakov.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kopyandsonslandscaping.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kredi-hesaplama.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kulturbiljetter.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kurosawa-yakkyoku.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kyorei.or.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "la-sc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lagrangiandesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lambassadors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "languages.services", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lavalledelgusto.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "learnapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lefaivre-ferry.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leibniz-trifft.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leibniztrifft.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lialash.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lindipendente.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livli.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lochlans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lookscanned.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loomi.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lostcosmonaut.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lotc.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lqa.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luminal-creation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lupnix.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lynwilliams.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mabra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macrosec.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maggie.gy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manutenzionegiardini.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marchouben.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martdev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martnlab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "material.security", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matindustrial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matkuling.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattajones.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "max96.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mazda-mps.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mdf-nakladki.kiev.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediasklep24.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medibooker.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meetthesinglessda.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meganholliday.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "menshealthcollective.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "menteofficial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metiz.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mhainfantandtoddler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "migliorailtuoambiente.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miimhort.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikerichards.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mit.akita.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mit.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "money-tapuz.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monti.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morrharet.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morselife.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motherhood.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moveon4.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moveon4.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moveonca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moveonfr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mundodocurioso.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myboostport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myentspecialist.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mysill.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nerdyfam.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neumanndredging.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newdayproperties.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nextdayvapes.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicgoa.nic.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nipplefucking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niuco.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nomtechbytes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "normalizuj.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northcoastpsychotherapy.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nym.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olidetrim.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ondrei.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onformative.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optikflow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orangeshop.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orcamais.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ouaisetalors.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oyapkprdsb.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ozaymotor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p2enews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pageboard.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paranoid.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parasympathy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partykanal.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pathologie-dna.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peblet.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "penrite.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pepe.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ph-brand.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philipbuckmaster.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pims-hub.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pkshs.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planetadjs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plenigo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poehlerflorian.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "posturologo.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pr.tn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "presentationsteknik.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prizzlys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "projekt-manufaktur.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proton.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pureart.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pureart.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quermes.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "r-gmp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raberget.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ragusina.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ramenramenramen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ratman.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ravesteijn.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdmc.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdmc.host", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdmc.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdmc.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdmc.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdmc.report", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdmc.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdmc.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ready5g.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recetips.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "refresh-dc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "relationsproblem.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "residencemagazine.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rezidencezdanice.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riacanada.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roggebroek.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roomoutside.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosfan.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rteo.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rumaenien.immo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ryona.agency", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samarhotel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sankt-kassian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scanningpens.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scanningpens.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scanningpens.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schluderns.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schneider.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sciclubappiano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secureim.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "securitum.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seedsystemcoaching.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servicepclaptop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shareapollo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shmilyhua.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sidingsmedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simulus.technology", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirplus.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siteforce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skriptorium.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyscanner.co.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sloepverhuur-roggebroek.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sluderno.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartagilesolution.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "socfactor.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sogesel.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soillessgeek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sophiekush.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sprintswac.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "srebro.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ssbljk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "standoffarena.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stlautoenhancements.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stralenpoedercoaten.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "summitdentistry.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superbir.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suvirink.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swagmoney.enterprises", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "systemysportowe.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talentplatform.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talentplatform.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talentplatform.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talentplatform.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talentsplit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tasawehala.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taufers.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techforum.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technostropic.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technostropic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technostropic.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terento.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teritwarsj.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terrasandcooking.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testbed.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecakeboxhampton.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theceocollective.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thediyvibe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thenew3rs.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thenewsmill.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thongnhat.com.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "threadingcentral.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thyroidheadnecksurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiendaregalos.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tier5industries.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tillehus.frl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tolas.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tommypa.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tommypalarsson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tommypalarsson.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tpedu.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tradeview.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trasportatori.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelthisweekend.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trustswiftly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twinstudiosparis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unstable.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unvired.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uttenheim.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "val-casies.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valdega.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valdultimo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verymetal.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vesmail.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vesmail.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villa-ottone.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinci-archipel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinci-vie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinci-vie.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinci.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinci.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visitosalnes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivianaball.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vizyonpara.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vkusniy.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vocomo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vresonline.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "w.st", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waltthirion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wazuh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wealthadvisorstrust.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wellness-alto-adige.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wellness-spa-suedtirol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wet-dry.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whoistheorchid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wholewildworld.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "widado.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiegandt.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wimmer.software", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winterco.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiselectures.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wolfsense.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wonksecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workshop-email-content.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workshop.industries", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xacobeoexperience.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xlstat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--apaados-6za.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--helhetsframtrdande-xtb.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--morrhret-e0a.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yamazaki-automotive.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "z.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeus.wang", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zinkmetselwerken.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zpasathagroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zuhausejobs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "133335.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2xgraphik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affpass.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agentpak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ailladearousa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akarisoftware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allbs.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aracbul.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ascc.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astaraday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astralrank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avt-ukraine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bav.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "because.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berete.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bramfri.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brightideaspromotional.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brightwakeintranet.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brouwer-greonterp.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "browser.style", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsatroop1003.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "btcwip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buitex.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caribbean-tekton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cgo-it.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chesapeakecluttercontrol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "childcarealgoma.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "children1st.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clalbit-checknet.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "classicbakes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "click-7979.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "climaffaires.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cmonlien.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codehupy.org.py", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "copyhandler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "covercupboard.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ctm.community", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cvhunter.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deltacomputer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denknowles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dustinbrett.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dynamicasoft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "effra.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elitexxx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elliottinsuranceservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eloca.ls", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elocals.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emsdinghies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enchantedcode.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "energysystems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "escolanacionaldejudo.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "espirituracer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everything-mdaemon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exosama.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "facchinaggio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fdg-98.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fgtsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fibrefly.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "focusbet-api.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furiaot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galapagos.cx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gammaknife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gardensuperstore.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garochristian.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gavarny.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genealogia24.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gickelskerb.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "global-motherboard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gockelsee.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goodbits.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grandpad.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grepable.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hagalaz-design.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haylerivas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdrams.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthysanfrancisco.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heidelbergengineering.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "high-ground.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holisticwebsolutions.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hongjun.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostcsr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "http418.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "htzopremasrbija.co.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impeka.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inpresso.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ioxio-dataspace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipnoze.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "item.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ja-jirei-ienohikari.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jibungoto.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "junebo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "junebo.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "junebo.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kauper.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiwi.ki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kksg-sulzbach.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kodigo.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koncertomania.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krtl.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kunadomowa.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kvetuvplotu.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "labordude.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logopedietaalrijk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lolo17.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mangadex.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mindblown.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moonsama.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrplates.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrplates.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrplates.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myveronanj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naturart.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nchrd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neumanncontractors.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nhcps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ninadeissler.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nirma.co.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nobori.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nobori.ltd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nobori.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "norlink.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nrj-plomberie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nrvn.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oitaven.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opdera.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optgo.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orchideemilano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osallistuvavantaa.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p-ku.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paneldoorsolutions.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pansermuseet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "penthy.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peterbischof.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plagu.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plandy.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pondsama.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poppersareus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powersergwiring.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powersergwiringconsultants.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powersport.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "probiller.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ptm.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "punkt05.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qinlili.bid", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realitykings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revengegames.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rewardoapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rocketcityts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "router24.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rzeczy-silene.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sbcmedia.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sebastian-michalke.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secteam.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secteam.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seonaut.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sfcityoption.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sg-strietwald.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sjs.org.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sli.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slideshare.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solutysmultiservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soprovise.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spargrancanaria.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "specjalniedlaapteki.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stillwhite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stillwhite.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strietwaelder-blaettche.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sut-b.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sw-s.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "targetmarc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tattoo.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamr3set.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tecnitool.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tejomaya.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "temertysimcentre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thedave.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thedave.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thedave.photos", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theyosh.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "time.ly", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top-koupelny.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelfoot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ucemich.edu.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vegvor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinci-reassurance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinci.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivatbet.com.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivatbet.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voloder.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webcover.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weccode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whqmeps.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wildfoerster.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woelckner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wojtekmaj.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldsaway.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wxw.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wxw.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wyngatepta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourforcesupport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaneslaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaratime.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zenbalans.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zolw.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "123-ticketsystem.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "31fss.support", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "325fss.marketing", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "365labs.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "42fss.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "502fss.marketing", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "51fss.marketing", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5minutemystery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "6-bros.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "71fss.marketing", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "96229.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aaronr.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abas-erp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adapt-iq.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adbexcavation.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adreana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adsmodels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aenes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aimara.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airgundepot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airventuri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aktueller.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "almeidaesilvaseguros.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amambebe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ancaebacia.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angel-wing.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anhangabau.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anyma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arbautocare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arcmarine.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arefly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arious.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artemislena.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "askollelectric.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aspirecig.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astano.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atonibai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "attiliospagnolo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ausfin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avisodeprivacidad.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axzq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bamboostage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "be-craft.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beautyforce.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bellowsafs.marketing", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestlifek9training.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bet66.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betrouwbarewifi.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biberonshop.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bilkovita.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonsaitree.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bra360.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brandweerrooster.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bswears.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buckglobal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bvblaboratory.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cactusdentrepair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cardmates.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casetech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cbcembalagens.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "certly.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chirpset.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chngold.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christiancleva.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clashclub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "climall.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudbool.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cmalet-avocat.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cngf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coffeebreak.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collin.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collinlove.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "configcat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cracky.win", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crossdresscontest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cuppen.support", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cvrn.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidcraft.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "de-ooyevaar.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "de-ooyevaar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "de-ooyevaar.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "de-ooyevaar.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deallix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "debricked.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dengyt.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deooyevaar.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deooyevaar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deooyevaar.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deooyevaar.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deooyevaar.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "depilazione.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dermatolog-ivanova.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "didelikarpiai.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discordapp.gay", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dmforcesupport.marketing", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dmfss.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dokcar.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dr-mgeorgieva.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drugstore.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-shobai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eglinlife.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elevanhairdressing.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ellierider.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elshop1eu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enoteca.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epochcg.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "equilibratura.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esmoker.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "espaider.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etherdream.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "euaaaio.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "event-trac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evermed.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eversightwealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "excelsis.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exploreit.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "familleenfete.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fatumagro.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fireservicerota.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fitmommyinheels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forge.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fortune-healing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fujimurado.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fundingpartner.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fundingpartner.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fundingpartner.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gallagherperformance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garagen-crew.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garnetnv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gc4hr.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gebaeude-braun.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geesthof.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geodesic-tents.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "georges.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "germancorbo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ghimaging.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ghostmarket.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ghprinting.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gianturl.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globaltrucking.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grahamedgecombe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grnbank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gstehlik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guideline-pro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gusto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "handsome-samurai.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hawit-steuerberatung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hawit-steuerberatung.support", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herbisan.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hillcottagessuffolk.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiromi.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hokende.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holori.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hrknuddel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icieducation.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iglessydopena.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iniitian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "invoicely.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "italianerd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itt-shop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jmlegrand.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jocafil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justindianporn.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jz.lc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kashta-svgeorgi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kavinchauhan.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kkcomcon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kokwatersport.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koopmansamenwerking.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kudelskisecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lab-recherche-environnement.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lakenheathfss.support", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lastenrad-gifhorn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ldts.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leslhassadeluminia.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifeatthemax.marketing", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linux-techie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lorimar.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m.ac", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mafiatown.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magentazorg.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mamacoolinar.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mbrental.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mccsquantico.marketing", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcdonalds.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcgillsbuses.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediniti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meldknop.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "menlogov-admin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mfavis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mfmarquesantos.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michalszotkowski.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minestealth.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirandakids.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mocomoco.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motordearranque.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myhurlburt.marketing", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myinvisibleknapsack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mymovein.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myunraid.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "napervilleweather.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natgo.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nellislife.marketing", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netobur.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newage.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicolasfriedli.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niit-mts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novantaphotonics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nqhomeinsurance.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "numerli.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nur-test.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nux.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oktoplus.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orendatattoo.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orilliacdc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "owdeutschland.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "owfactory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p4.pm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panaceainfosec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pando-market.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pario.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perreiraproperties.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "physio-koenigsee.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "picatavocat.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pirofire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polski-dentysta-birmingham.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portes-imaginaire.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proton.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radstake.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "registry.quebec", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reguladordevoltagem.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riecht-besser.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rttreservations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruecommune.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruris.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ryancmassey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sallyheerenveen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samudranesia.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scandesk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schiriportal.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scriptrock.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seal-tite.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shackleton.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shcsystems.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shigotoarimasu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skymass.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slobsbeer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sloticagames.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartlandapartments.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snorerx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sns-tg.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spthk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squaredtechnologies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steroidswiki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suzannejauchius.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swiatzdrowia.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "switchboard.lgbt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technician.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tedroche.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tehillimforall.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thelematics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "titaniumconsulting.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torchmc.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tpetrov.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "troubleshooting.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "troubleshootyourvehicle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uasaumur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upguard.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urluno.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valeriya.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valivalcoach.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valivalcommerce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vatazhok.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ventosport.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verticalmindventures.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veterquimica.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinci-foundation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinci-gestion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinci-gestion.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vrac-drive.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vracdrive.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warrs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waveestetic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waysport.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webiz.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "werkenbijmagentazorg.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wertschatz-kommunikation.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiin.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wptrigone.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourforcesupport.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0.com.ms", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1-ae.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "106.hi.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "11u15.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "12.ag", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "127011.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "12u15.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "13u15.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "14u15.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "15u15.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "16u15.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "17u15.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2-ae.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2333hub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3-ae.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "31fss.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3u15.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4-ae.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4.com.ms", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5u15.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "60w.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "610.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "6b.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "6f.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "6i.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "8l.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "9l.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a.ac", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aaronbonine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abadie-architecture.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abli.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abli.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutyou.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acatiimi.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acquari.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinesbritish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlineslowfare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinesseating.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlineto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "al3ilm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alaska.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alte-wassermuehle-friesoythe.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altermidya.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altitude-dev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alzlogarforensics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amapspa.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ambasady.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ameresco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amministrazioni.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "analisi.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anbank.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andreotti-furniture.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andresvillanueva.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrew-lazarev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angestoepselt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antifurti.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antonios.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antonis.cy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antonis.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appiancloud-dynamic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appiancloud-static.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appiancloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apple.markets", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apple.tf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apple.wf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aquatiq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "archi.ve.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arinahashimoto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arithmetica.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arkagis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arle.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armeria.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artbygarr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artoflinesmd.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artouch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asuikit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atisoft.biz.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atisoft.name.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aura.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auteldesbrumes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autosalone.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autosdsg.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avoonix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axx.ax", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azarkepic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "b.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bachata.berlin", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "backd00red.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bairwell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baka.ms", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balagne-corsica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balancehairrestoration.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bbaccademia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bcgefatap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beatsnbits.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belk.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bellenundballern.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestethereumcasinos.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biaoxiong.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bird.engineer", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blog.fo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blog.je", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bloombergadria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boardingschoolreview.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bof.fo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bongbong-irl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bongbongirl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bongjukim.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "box.bz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brandonbonine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brazzers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brnr.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brr.fyi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brw-shop.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buergerwehr-ettlingen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bukowski.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bulatlat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burner.gay", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cablogrammes.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caldaia.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carcrushe.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carcrushers.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "careium.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carrozziere.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "castle-emarketing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cat.fo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catnetworks.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccak.training", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccsk.training", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cee3.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cestujnamiru.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cestujtenamiru.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cestunamiru.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ceu.edu.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chamudi.lk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chequeraccounting.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chikahaku1001vr.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chinese.sc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chocolate-express.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrisshort.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chuspace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cityvision.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cityvision.net.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cityvision.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clbmconsultancy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clean-cubes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clearwateragency.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cliniquedacupuncturelajeunesse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clmz.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudsecurityalliance.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudsecurityalliance.training", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudskill.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cocobollo-sallanches.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collinlove.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collinsdictionary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colorado-locksmith.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comaporter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comistar.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "communitycollegereview.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "computerpackages.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "computime.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "condizionatore.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "confettidogs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corarain.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corbax.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "could.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "covisa.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csacloudbytes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "current-ip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cwp.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberab.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cybiko123.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "czdoll2.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "czdoll4.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "czdoll5.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "czdoll6.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "czdoll7.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "czdoll8.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "czdoll9.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "d.ac", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daleanddollops.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darkstar-digital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datovyportal.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "day.marketing", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delta-market.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "despertarparavida.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devoncycles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dextermarket.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dicoado.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diecourier.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digit.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalexpertsdirectory.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dilmahtea.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djoiasoficial.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dogingtonpost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dogite.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domialt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donaldduck.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dontpayfull.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doornmore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drbonine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreifaltigkeitsgemeinde-leipzig.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreifaltigkeitskirchgemeinde-leipzig.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreifaltigkeitskirchgemeinde.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drison.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dzingel-personaldienst.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-instalator.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eautocash.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eckindustries.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eegaming.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eformost.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eh-huebner-stiftung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eiklandenergy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elanterna.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electronicaripol.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emaillagebaingenial.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "embien.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emocionypensamiento.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emsd.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "endeksa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "engso.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erider.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erraen.org.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "espocada.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethics.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eusystemic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evolutionosteopathy.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exterminateur-quebec.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "f1solutionslb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "falkenthal.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "familyd-c.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fatlabwebsupport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fcd.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "febooti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferien-haus-mittelpunkt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fffbhv.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filipinostaff.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "film.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fireflygatlinburg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firmanali.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fit81.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flair.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flie.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "franqois.my.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frontiernetworks.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuxgames.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garfieldairlines.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gartmaninsurance.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaudi-renove.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gazetefutbol.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gcqd.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geneuse.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gfx.cards", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globegazette.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gphalt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gphalt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gramtarang.org.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grassroots.org.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greatsankeypc.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gremagol.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "groupkoufopoulou.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "growidentity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gsded.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guajars.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guesclin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "h2.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "handsup.dance", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hashmart.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haus-mittelpunkt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heikomauel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heikoopminiaturen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "henneshaan.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hey-staging.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiddenhand.finance", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hideandseek.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hindenburgring.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hmtransfer.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homeseguridad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "host.ax", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hothardware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "how2smart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hozio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hrd.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "http.garden", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hysh.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hysh.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibemember3.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibon.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ici.ac.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ici.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icieducation.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iepaiement.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igshop.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ihmsp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ii.cx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilconiglioblu.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ileduguesclin.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impermeabilisationqc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infinityweb.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "innovativeunderwriters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insideevs.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "instem.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internationalfrom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "investigatore.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inycia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iolpodcast.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ionhowto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipv4.cy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipv6.cy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "istech.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "istories.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itaja.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "italianfoodonlinestores.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "its5oclock.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "james.cyou", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "james.pub", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jamonesrute.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "japonskonamiru.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jasonreadinglandscapes.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jbcharlestonfss.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jbmechanics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jm9.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johnsonsca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joneslymma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "josemariavazquez.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joshanders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juliakieser.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jurena.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kameldesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karapatan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kartalvincisletmeciligi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kenlewis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keyfortech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "km8.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knecht.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knechtology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kohana.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koltozzbe.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kolue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kostarikanamiru.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kreideseetaucher.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kringla.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krovlya911.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuraraynoritake.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuukkanen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladyoxytocin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laguiadeliman.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lakle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lanomina.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lansenou.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "law-moshkovich.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ldlorangecountylocksmith.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "letmdesigncommercial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "letstalk.video", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lineinchina-enterprise.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linker-wenzel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locomotiveworks.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logopedista.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lomuarredi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lonelys.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovetarot.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovetheprint.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lowlevelmusic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luckycloud.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luoliguan10.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luoliguan11.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luoliguan12.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luoliguan13.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luoliguan14.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luoliguan15.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luoliguan17.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luoliguan18.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luoliguan4.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luoliguan5.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luoliguan6.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luoliguan9.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lupriflex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luvmihome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lymiahugs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m08.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m2icondb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manjalcouture.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mapduce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maranightmare.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masterimperia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maydaystrategies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcgrand.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "media-cable-solutions.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medicina-interventionala.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megalogistic.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mertuslu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miartwalk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miklima.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minibomba.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mipromo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mixingnightaudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobilesignalsolutions.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moewe.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mon-sac-italien.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monsonshoney.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moonmoondomain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moquettes.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mprep.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrnordic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msisupplyinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multi-serwis.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mwscouts.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mybotti.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mycreditjunkie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mynrg.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mysisterandi.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myunitard.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n1.homes", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nako.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "name.ax", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "namespacesquatting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nannyandhousekeeper.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "narrow.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naturelife.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nbgrp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ne.ax", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netco-privacy.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netleaf.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nffsimples.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicolaleonardi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niitfoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niituniversity.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nikeyichinese.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nmaedu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noralku.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nordicsemi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northshoremums.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nso.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ntut.edu.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nudgesecurity.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oficoex.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ogznet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okiefrog.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omicawholesale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "online-tesis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opix.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orefice.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orfininumeister.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osaketori.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ossrox.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "owlhollowbakery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oxylabs.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oxylabs.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ozgurbozkurt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pack183.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pannellisolari.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pdfbear.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pedrotimoteo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perfare.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perso.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petitmaison.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pharosconsulting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philrights.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phinikarides.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "physis.earth", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pieux-expert.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinoysurvey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plaisiretsens.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "po.cash", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ponytail.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "popinga.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "preview.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "previewninja.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privateschoolreview.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proscost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ptt2.su", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ptufdc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "publicschoolreview.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pwbaccountants.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pythonmorsels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qcdoll.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qldnetwork.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "r-ay.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radbee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radianceswimwear.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "railfans.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ratemyfishtank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rcips.ky", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reddit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "relationalplayground.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "relationsatwork.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remodelhealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rhona.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ric-rac.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rollerwarehouse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rotasurbanas.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rpm-oldtimer-events.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "runar-data.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "runmyqubit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "runmyqubit.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saifoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sail-holidays-hub.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salman.agency", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salsa.berlin", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salzmann.solutions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samhall.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanidadnaval.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scaligerorooms.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schatderer.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schiedelkonfigurator.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schmidt-fri.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "school-id.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sdp.training", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secre.cy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seistolzaufdich.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serail.biz.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servant42.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sfccapitalpartners.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sfee.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sharehabor.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sheo-tech.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shongshoy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siemplifyg.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silentartifact.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skhosting.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slido.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slidstvo.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soar-npc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solencell.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "southyorkshireviolencereductionunit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spacehey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spctech.click", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squeaksscalesandtails.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stahlen.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storiagraph.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stradedelvino.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "streekwinkelkatlijk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studylink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suncoastrebuilding.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suternetwork.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svc-studioslive-api-dev.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swing.berlin", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swwc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sygnalista-24.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syotatakahashi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "szs-arbeitssicherheit.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "t08.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "t09.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tail.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taitlinstudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tango.berlin", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tapmat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "targeturl.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tatuaggi.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "team-building.tirol", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "team-swami.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tecnicman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tecnicman.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tekkenzone.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teomahk.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terme.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tethercasinos.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tgu15.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecoverlot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theindiantimes.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thelazyfox.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thelazysre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thelightingstore.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thibault-ml.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thoughtexchange.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "threatint.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tibber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tijdvoorgeschiedenis.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "time.cy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobiaspreis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobiaspreis.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tochinoki.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tokinohikari.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top.ax", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tornyosbbq.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "towardsthecloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tracer.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trinitatis-leipzig.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trinitatiskindergarten.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trinitatiskirche-leipzig.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "triomedspa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "troppotogo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ts-pro-consulting.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsig.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvsscs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tz9.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "u15b1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "u15b2.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "u15jj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "u15p1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "u15p2.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "u15p5.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "u15p7.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "u15p8.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ujotthon.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ulusar.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uniqueexpression-coaching.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unitedstudios.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unyouth.org.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "user-daitron.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utililab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vakantieverblijfalgarve.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vastgoedcert.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vastgoedfaculteit.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veli.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "venti.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vetreria.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viega.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viega.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viega.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vigilanza.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivezlaromate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vp-arc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "w60.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "websitebakers.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wegotrip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wegotrip.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wep.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westcreekna.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wlf.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woosk.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "working-group-cloudsecurityalliance.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldpayaccessories.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yakbett.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yamatonetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "young-zy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "younglabour.org.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourforcesupport.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourhearingnetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youth-sport.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zandmhomes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zbrsk.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ziz.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zoedijital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zohditech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zq.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zta.training", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "10001000.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "125-rue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abli.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adelapereira.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3abnstore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "69asmr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acab.love", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acm.vc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "actioncovid.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adventisthomemaker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advocateanakha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afreshperspective.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlineairlines.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlineairways.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinesair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlineseconomy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinesingapore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinestoamerica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinesunitedstates.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airportturkey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airsoft.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akashstephen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akshavitrends.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alanburr.us.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexjsully.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aliyasin.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alkaabi.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alola.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpparts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ankaraarabakiralama.name.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "annaaurora.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anuke.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aquienguate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artmaterials.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "as400566.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astettner.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avilauto.com.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axel-stettner.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axstet.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "b-tje.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barcodewiz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bassdentistry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bath.limited", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bertr.am", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackpurl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bmwhocking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "businessx.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carprice.auction", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catbat.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ceprenomnexistepas.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cerveny.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checkmarx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citymeats.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clement-gruin.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudbees.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clpoule.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubanimal.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codeproxy.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coderus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colder.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collagepartners.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collinlove.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collinlove.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comfy-court.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comingto.icu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crickits.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "criminallawyersingapore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csachapter.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csaurl.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "customfiberglasscoaches.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielg0.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielg0.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daughertyplasticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dehumanizer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dianaconta.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalsuply.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "distributordd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doehle-group.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domus-rely.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doverfcu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dovolena-ihned.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doylestownborough.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drduru.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dripshop.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drmvl.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dwgeneralcontractors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e8space.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eatwith.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebookpdf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "effectualness.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ehsehk.com.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elabib.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elektryczka.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "empireliverfoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erhydro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esmart.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esquirelawservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ewen-bara.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expert-batiment-rouen.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "extremepeptides.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "f1report.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fagott.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fallingbrick.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "falstoneshow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fartypants.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fdkm.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fermemarineau.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fibu.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fiesta-mk5-limited-edition.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fis.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "follygardens.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foreverpontiac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fqcstandard.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "france-orchidees.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fritravelapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frogtown.capital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fulcrumanalytics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuso.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futureforward.coop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamblingaffiliatevoice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaminggear.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gartengutachter.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geekwanderer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gjan.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gjan.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "global-wire.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalwire.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gms-marine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gnusocial.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "golaw.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goshop.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gs93.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gspcreations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gu153gx.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guiltyfox.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gustavomolina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gw.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harpen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hashi.icu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hashi.sbs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthcarediversion.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hendersonwomenscare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiitrepublic.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hipuranyhou.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hockingfamily.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoejetaastrupprovsti.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoh.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holyrosary.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "home.saxo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostelio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i-am-seo.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iacee.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ici.ms", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icims.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icpe.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ieros.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igorvisi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilin.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immoisrael.agency", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impactdepth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imtec-rohr.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indigo.pet", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infusemedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inovalon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insiderpie.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insomniac.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intermac.nl", "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": "intersun.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isab.run", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itoady.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iwec.pk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iyanmv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "izm.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "izumi-hirodental.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jarski.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jaspernbrouwer.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jcmunz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jenniferschmidt.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jh4.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joannechtler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jozefmutis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kasamatsu-sogo-hoken.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kassemmal.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kerb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konser.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuplukover.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kylewentworth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landgoeddorrebeek.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "les-aides.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lianka.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liudon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "live-tv-channels.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lkhrs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "localplumber-uk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locutusvader.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loyaliplaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lunekes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marcossan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "margauxnennig.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "margintoniks.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattressman.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mianra.ddns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moonhaa.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mountaintree.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myownconference.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mywebinar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n3t.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nahue.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nanort.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "narasi.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "narodnyi-potolok.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nary-software.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ndq.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newbrightonresidents.org.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nextcloud-alpha.ddns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nikitagukov.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "njliner.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nocoffee.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nod.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nodejs.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nomee6.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nordlayer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noroutine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nv-art.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nxf.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nya.autos", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nya.show", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obcfl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oceanohost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "octane.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olffi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ombrazur.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omid16b.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oncecocuklar.org.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinecasinoknowhow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "only.bible", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlysergio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opencartbot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opioidaffectedyouth.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opop.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orbitpro.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orchestra-ppm.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osindesejados.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osiris-ai.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oursibparksplan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outhwaite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "overcomingbias-collection.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pavlova.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paybackfx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phsa.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pierstone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixouno.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playavalon.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "podivilov.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "podivilov.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "podivilov.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "podqueue.fm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poseidon-giesing.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prestigehealthservices.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "putzigdesign.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pvportal.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pxtwitter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rabbisacks.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raccoltadifferenziata.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rahul.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rfbz.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rhino-inquisitor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rjfedor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roc-taiwan.taipei", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roueneternalmagic.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rucinski.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s26s.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salzburg-erfahren.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salzburg-verkehr.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanemind.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "santehnik-dnepr.dp.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "savransafari.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schuermannhof.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scienceforhealth.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scwind.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sergioforsanmateo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sergiozygmunt.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serhan.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiftdelete.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shj.technology", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siemplify-soar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "singaporedivorcelawyer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "singaporefamilylawyer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smbabyshop.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smits.frl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "southyorkshire-pcc.gov.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stop.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "super-gs.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swissborg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sykiotis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sysadmin.pm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talenteam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tasports2043.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telesales.guru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tf2b.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theapj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theblog.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebook.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thesurgeons.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thinfilmview.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ti-nuage.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tijoe.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timertomato.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timvanban.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tipmexico.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomaempleo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trofeosylogros.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truthsocial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ttluoli.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tutucos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twittpr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tybox.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "velocityelectronics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vocably.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vpnent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waynescottlcsw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wespeakk9.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wilky44.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "witzik.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wzh.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xayah.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--tftel-tom-q9a.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yacg.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yateam.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youthmarketing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zehy.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zehy.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhangjet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ziarajoias.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ziggo.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zuffel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zygmuntsergio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinehawaii.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airplaneairline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airportgatwick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airportsflorida.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airportsfo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airsoftpark.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airticketstravel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "albertpedersen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ankaraarackiralama.name.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ankaraotokiralama.name.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ankararentacar.name.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anthrocon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anthrocon.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apiordie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appian-cdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aranykornyp.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "as400566.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ashbyprd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ashbystg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asmess.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asseti.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asso.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asuntospropios.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atomic.radio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aupapa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aurac.org.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auservicedeschiens.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azairline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bagirahome.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balimoves.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ballroompages.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bayou.energy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beescloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beetech.global", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benhocking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bennie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackcatwanderlust.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackrockvet.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bnd.house", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boisebirthdoula.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bpsdev.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brmnn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bs2k.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "btcrit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bulatlat.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buscatea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cadwalk.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinoleader.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centrumgarten.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clublevelsports.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corporate-electric.ky", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creativestories.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberthreatintelligencenetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danslavieyadescactus.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drsteveart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "experthive.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "final-rest.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fitfoodfab.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flanderslaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flexicano.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foodsupplyiq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foodtruckconnections.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fxtwitter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hazza.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howandwhys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icenter.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jack-daw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jpc-design.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalabhavashricreations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keiji0501.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kentlove.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinderarzt-traunstein.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klanklichaam.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knotenpunkt-nbg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kowu.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kupkabn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lasttweetinaws.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lbj.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legaltings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lennusadam.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libot.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lichtbild.nrw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lilstarry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "limousine.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lisa.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "longportpd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lorasong.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luematecidos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luftfilterbegehren.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lulugold.ba", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mabnn.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macaw.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macaw.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macrogamer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mashrmail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mastertent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "measureaustralia.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "med-nagoya-neurosurgery.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediapart.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediasagasocialseo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediassisttpa.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metalequipped.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meulivro.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mics-notrack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minesweepergame.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "momentumcomfortgear.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrmarcie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multiline.ge", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mxgateway.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-itbk.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mycigna.com.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mytana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "namastenaturo.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nenco.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nerdsweide.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netherlandstypography.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newlifefund.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nijofotografie.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nool.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noticias7.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parafarmacia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peetersport.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petersport.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "picante.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plyind.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "postern.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "postern.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "postern.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powervolt.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prazeremamamentar.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prestigehealthservices.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pristinegrace.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proclaiminteractive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "profigen.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "programmervibe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "protectasecurity.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prpr.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychologischepraktijkphilips.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ptmco.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pygos.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radicallycanadian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raleighcapitolent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raleighsinuscenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdmc.contact", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retirementincomeplanninggroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rineke.art", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roobet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rucinski.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salisucre.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanpatigroup-recruit.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scpe.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scpocahontas.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scrapfly.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "searchenginelinks.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sebdat.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "semparar.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servicenow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shadowuniverse.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shm.ac.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shopupnorth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplyplans.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "singaporecriminaldefencelawyer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skiff.town", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soso.stream", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speeder.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startag.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stayby.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stellarite.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stroylandiya.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunburstdata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suspensebox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sustainableweb.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "t1cloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taipei2038.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "takehomepay.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "threatint.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ticketix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torch-fan.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tranzact.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trasportoambulanzaprivata.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvgsc.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvk.tirol", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "universe.la", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "universe.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "venegreco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vibioh.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vistamatic.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-snadno.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wilderoben.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wilhelm-sattler-realschule.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpsitesuccess.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yamaken.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yangxi.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yr-labo.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zorte.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zycrypto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "163.gd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "18pee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "247bar.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2ustyle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abacustech.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acecardiologyclinic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "actabg.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aeonmall.global", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinesaustralia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinesfrom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlineslasvegas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinesnashville.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinesnyc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinestolasvegas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinestoorlando.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinestophoenix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinestosingapore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlineticketsfrom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinetolasvegas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airportairline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airportinrome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airportzo.net.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ambulatori.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amunanalytics.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "annekleinert.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anonase.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anthrocon.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aspire-dev2.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "av-yummy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axeligence.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bagso.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bankiros.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basic.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beleefheemstede.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bellehorizon.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bellevilleboot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benprisby.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluestarbus.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boydcorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buses.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bvrlodge.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cadreok.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calcinacci.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "campguaikinima.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "candydoll11.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "candydoll12.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "candydoll13.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "candydoll14.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "candydoll15.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "candydoll3.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "candydoll7.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "candydoll8.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "candydoll9.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caponte.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cascadewindows.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cashdo.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cast-london.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "castglobal-china.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheapticketsfrom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chime.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chizra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrisshort.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "churchforeveryone.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ciniticket.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crazyfrog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crocia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "culturevision.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielh.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "degustuju.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "detrazioni.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dh.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dinnerandmurder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domainmonitor.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamlandsdesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duckhub.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dutify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dynamiclogodesigns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-guvence.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecozip.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elderdevelopmentgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elliottwoodworking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ericdobson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fantasy-football.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faresair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fibrenttech.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fiorellaweddings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flam.studio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flightticketsto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fly-fjends.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forhims.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fortnet.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fur.mt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furry.gay", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futurygames.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geranium.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geschenkkorb-ideen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalmobilityjourneys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goaheadireland.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grid.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guestandmore.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hagenkleinert.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helmscapital.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hitchen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hobroefterskole.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "housesumo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hva.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ialternatywne.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ijemin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ikrab.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilac101.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inoapps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inside-the-outside.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internationalflightstickets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "islandbuses.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jannhaber.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jans.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jberlife.marketing", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jewishjourneys.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jiriholy.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jpegd.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jweditions.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kagl.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaznice.art", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kka.vc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kyau.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kyaulabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "languageguesser.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lier.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linux4.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livingbitsandthings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locas.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logankpaschke.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lounge.guide", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lrc.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mamaplus.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manfredgruber.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marchagen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mathieuchollet.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaelkleinert.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milwaukeetool.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modernmomarchy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moego.pet", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motortg.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mp-bln.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mutualofomahamedicareplans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mynametags.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mynametags.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mynametags.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mynametags.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mynametags.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mynametags.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mynametags.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mynametags.mt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mynametags.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mynametags.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "namlcftc.gov.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nas.gov.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nowaesthetic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ok2a.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openkat.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pacifictechnologie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pari-vinci.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pauk.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piterfish.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "podawful.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rama.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rapidlegal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "readersfavorite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "red-panda.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reform.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "researchwriting.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robertlowdon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rooiratel.red", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salisburyreds.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saunavoordeel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scholingua.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scribd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scrumplex.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seiler-ds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seilergeodrones.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seypt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skillsboffin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sophiafoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sosafe-awareness.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spectrafox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spendd.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stroymart.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "summitseodesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "symatrix.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "szalaiterko.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tahitiodoo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamsakura.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thaixon.co.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thetravelinstitute.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tilde.green", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timewornlit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "to-ya.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topcash.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "totalabogados.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trusthub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsacasa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsra.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tyrasuki.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uaefiu.gov.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unibuses.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urbanfineart.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utilajexpert.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veritablescreening.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viaggioincoppia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitallispsy.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitallispsy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitallispsy.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitallispsy.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitallispsy.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vittoria.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vittoriaconseil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voidbbs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woyzeck.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yeti.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yeti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "younglabour.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "younglabour.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1001fonts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "21kampus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2345.lgbt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3newsnow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niu770.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niu880.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4freeprintable.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "511in.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5thfloormedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a-louest.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aayan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutyou.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutyou.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "academiacomercialalpina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acpny.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "action.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "addownit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adulteducation.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aeradoresgaivota.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aka.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allaboutcovers.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allchan.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alphaassurances.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alternativewireless.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altospam.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ameripacfund.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amessage.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amessage.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amessage.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ametrin.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amigoenergy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amplifiedit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amzn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrecarvalho.net.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appunwrapped.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apruvd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aptos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "argico.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "argos.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arma3.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "as203145.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auburnpub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autocheck.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aveloair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "awac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ba7jcm.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ba7jcm.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "backyardbella.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balingwiredirect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bamboohr.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bamboohr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basse-chaine.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bazel.build", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bedful.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beepcar.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestparking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bioreference.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitdefender.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluegolf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bnpparibas.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boden.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bourrasque-info.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brinker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brueggers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "builtinboston.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "builtinla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "callbell.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canal4.com.ni", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canalconfidencial.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cantongroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "capro.global", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "captainsonic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carfaxcanadaappgateway.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cariproperti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinosnederland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chaturbate.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christianreimold.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "climeradar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clocklink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloyes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "co3app.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coco-apo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coffeeplazahamburg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coinjar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "columbiathreadneedle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "complianz.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coresystems.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cosuno.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "countingup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coyo.tl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cpstest.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creativenz.govt.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cric-grenoble.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cronobox.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csper.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ct-static.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "culturagenial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "d2evs.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dailyprogress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daresaygames.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dartmouth-health.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deckshop.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "defence.pk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demeubelmakelaar.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derivative-calculator.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "destock-poitou.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devalbert.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diamwall.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalhack.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dijoncter.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "distribuidorguarani.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "divviup.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "docguide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donquix.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dresscodeny.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drivebespokelab.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drwongsuni.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dzogchentoday.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easybank.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easygenerator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "echosearch.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edb.gov.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eddi.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edit.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "effectualness.web.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eletom.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emporioguarani.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emrawi.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "energylink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eternl.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eventdata.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eventpark.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "excelindonesia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exclusiveresorts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expansive.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expensify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "f2pool.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabconvert.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "falcoz.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fewo.plus", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstbus.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstcommunity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fishingzone.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fius.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fnpvenues.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fontsinuse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foodo.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "formsite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fox47news.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fox4now.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fpcdn.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freeride-dragobrat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freeyourmusic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freitas.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freshporno.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fruitbouquets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fumotousa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furniture-warehouse.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futurefund.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaoice.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gatewayfurniture.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gdacs.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gear4music.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "generalshale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "georges-sadeler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getdirectcredit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getstream.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giamcanhieuqua.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gigantron.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "godsunchained.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gotravel.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grafana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grundschulratgeber.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guilded.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gw-uks-app-test-coreapi-02.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "handelsbanken.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "handelsbanken.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hardzone.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hawle-service.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hcahealthcare.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heart-valve-surgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heyfiesta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hinit.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homeprotech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelandplace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotlinenum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hozkomurcu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "htm-partners.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iaata.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibex.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ihonk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iks.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imagetostl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impact.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impalaparts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infinityels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insono.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intercom-attachments.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intercom-mail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intercomcdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "issaquah.cam", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ixn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jelocalise.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jiji.co.ci", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jiji.sn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jmn.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jmservices.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "join.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jordanmlu.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "josestiller.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joshthewanderer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "journalstar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jso-crescendo.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jumpseller.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justgiving.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kadifeli.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kahoot.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keysix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krabbit.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krimisound.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kyaba-kura.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "larotative.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lassencanyonnursery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laurenslatest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "learnosity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lechrismaran.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lepressoir-info.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lezzetyurdu.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loirevalley.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lojistaguarani.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lrn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m1-garand-rifle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madcloud.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mancaverevolution.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manif-est.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martinsvillebulletin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masinaspalat.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mccannhealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcdean.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "media-fleet.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medmark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meetmarlo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melkboshigh.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "merck-animal-health-usa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercode.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "messemakine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metacritic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mha.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milmesetas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "missoulian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobile-discothek.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobilosoft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morebus.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moxfield.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mozo.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "munihei.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muscleandrecovery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-woodcraft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myconradsiegel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mycyberspace.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mykoreankitchen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myorders.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mystream.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myunitypoint.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naboplastic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naildesignsjournal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naturalreaders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nceahelp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nederlandmobiel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nerdyspace.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netirio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neuca24.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newportit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "next-tms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "norebase.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nurkamol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oanow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "odoranswers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "officeguide.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ofpad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "on3static.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opengameart.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osohq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "otng.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "overflow.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "overlooklakeaustin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paintscratch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pandadoc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panelbear.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkwhiz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parsec.app", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passivebook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pband.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pbbm.com.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcrobot.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcsoft.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peanutbutter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peerview.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pesterchum.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phonex.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinterst.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pittohio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plaid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planbase.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "platinumkids.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plooij.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "postnet.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powertofly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prd-use-device-api.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "premstarinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pressed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pressidium.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "productive.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prohashing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proofpointessentials.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "protecht.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "protechtgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pundak.games", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purchasingpower.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quotescover.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "randomactsofkindness.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "readycentral.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recollective.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regpacks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reichelt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reichelt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reimsmediaslibres.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reisdemuthwiltgen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revionics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rhdiscovery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ritepriceheatingcooling.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosty.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ryancompanies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s3waas.gov.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sacredmessages.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanitaer-heinze.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanjaymenon.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanray73.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarahtamsin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schlepaaz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schnism.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "screeningxchange.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "semestaindovest.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serwis-militarny.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shinycleankitchen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siberianhealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "signrequest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sikkasoft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplymeatsmoking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skiff.city", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skiff.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skydivegeronimo.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyscanner.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyscanner.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyscanner.com.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyscanner.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smithikakart.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sorunrehberi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sparklabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spiderprotect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "springbaystudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sss.red", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stadiamaps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "statesville.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storytel.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "striata.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "striata.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stylight.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stylight.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunho.net.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svportalframe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tailorbrands.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talent-safari.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tatemode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tatewake.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamhealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telfas.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tellimer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "termine.tel", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thedowlinggroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tjgrant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toilet-guru.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "totalexpert.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "touristsense.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trawox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trib.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trikuj.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvguide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ubereatspos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ukrainianwall.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ulsterbank.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "umami.vercel.app", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unilinkbus.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uniserve.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "universityhealthplans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vakat.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valleesenlutte.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "venndy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ventanillaproveedorespit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veronicasuperguide.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vertigomassage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vihtahousu.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viktoria-stube.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vincentvdsluijs.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virtuology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vpn-suomi.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wcfcourier.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-stories.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webi.ms", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webi.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weddingbells.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wellthy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wernerco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wimmer-informatik.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wimmer-musik.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "windowsindonesia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wood4heat.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woohoo.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wordindonesia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldwidescience.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpmet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wtxl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xboxplay.games", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--ee-zja.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--mnich-7ua.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yellowfolder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yeri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youla.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yuliana-hotel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "z-e.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zenideen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhouyipro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ziftone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zipjobs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zylo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zymewire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3pillarglobal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4digital.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7hills.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "95868457.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abacustech.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abacustech.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abella.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adblock.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aetna-medicareplans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agence.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlineairports.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlineandhotels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinebe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlineblue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinebuyticket.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlineby.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinechicago.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinedallas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinedomestic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinefirstclass.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlineflight.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlineflightcheap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinessingapore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alertmedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apartment.loans", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arabam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artisan-ravalement-facade.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arto.group", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ashbymail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asztrologus.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audit.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axl.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babyboomer.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basisschoolhundelgem.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bier.law", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bier.legal", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bjjmississauga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blanchardandcalhoun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blauglockenbaum.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bookcreator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bryandunnewald.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsdbox.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "businessbasecamp.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calindairy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canv4s.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "castedart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centralesnucleaires.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chamath.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "channelingranny.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chaparral.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clickspeedtest.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cmbs.loans", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codecool.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cofetaria-narcisa.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collinlove.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collinlove.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collinlove.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "commercepartnerhub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "commonwealthsl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comtois.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "concor.ne.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "contrastsecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corsac.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cpstest.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crockettdoodles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daily.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dayuse.com.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "decokeuken.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "defkey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diakonie-michaelshoven.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dingoodramas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dirkkok.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dmarcpal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dmslog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dotovh.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "droitdunet.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dsobook.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duhy.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eali.com.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eck.cologne", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edl.com.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ember.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enji-sendai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etfcentral.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eule82.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evehryday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ever4cats.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fazz.fun", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feath.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fermani.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fermani.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "formidium.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foxite.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fpstest.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fra.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freshwave.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuentesdeenergia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funpartytips.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gebaeudeklima-schweiz.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genesis-herbs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ggb.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "givery.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gripopit.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "groove3.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gynaemdclementi.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harputlugil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hartmannindustries.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hawaindustrial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heavyhymnal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostidn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "https.gs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humana-medicaresupplement.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huskygifts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iddportugal.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infosec.md", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intercom-attachments.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intercom-mail.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intercomcdn.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inventarioti.serveftp.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ista-vdm.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itsallmath.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jcchen.art", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jdhigh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jianyu.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jizhazha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "job-goo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jonathanrys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joshua.law", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kafeline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kamcolorectal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kamikami.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keytoenergy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiparchive.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiwilove.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "korikart.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kruemelundkruemel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "labogue.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lafraia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lafraia.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "latinapress.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lenumerozero.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "levitatingx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lexgo.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "llcigroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lordofcbd.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "machbel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macnews.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maherhost.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mail.cx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailer-olivea.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marmitethegreyhound.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mars-infos.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masepps.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mastersindatascience.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matchflix.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medicaresupplement.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meoption.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercury.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metapublic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mhiler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaelworth.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milkteacant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mlv-psychosomatik.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monordibogue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morganeb.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mueller-starck.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mum.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muxup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mvmcorps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "national-shitposting.agency", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netresec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ngmisr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nobunplease.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oakbottle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oldrup.art", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinecounselingprograms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinemswprograms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oraculos.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outletstoresmalls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palmbeachbusinessbroker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pamorana.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paris-luttes.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paulopaiva.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "persistence.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "personal-scrum.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "personal-scrum.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "photobcdev.photos", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phship.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plainsoftware.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "play-best-games.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "podologie-tangstedt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "praxis-rufer.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "progettodighe.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychotherapie-ahlmeyer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pugstime.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pureatmospherellc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qeepitsafe.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rachelandadamarethebest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ramsay.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ravkavonline.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rbbuae.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redirect.pizza", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rediscoveredfamilies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "renverse.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ricardobaptistaleite.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rootprompt.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saidrive.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saklad5.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schulid.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scuolaparentalesanpancrazio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sdp-grupopit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "search4stores.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "searchforjohn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "searx.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seavision-group.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seavision-usa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seavision.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seavision.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seavision.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seavision.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "securityabstract.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seospace.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serverlein.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "so.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "social-net.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speechpathologymastersprograms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportedy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportwars.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starring.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuut.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sudrania.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supermeitw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "t33.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "target.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teach.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teckprojects.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tenantoptions.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theoakageexperiment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timmcclure.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tocco.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomwither.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toplevel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vbanu.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wackyblackie.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wangcanmou.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weprenup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "willwoodworth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wimmer.tel", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wirkstatt-lq.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wirkstatt-lq.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wirkstatt-lq.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wirkstatt-lq.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wisertp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workhorsemkt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xduce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xiaowangshen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yahtzeemanifesto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youshouldnthavebeenhacking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "z0ey.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zarinab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zlatamira.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zrali.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0milemarathon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1a-hyp.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1ahyp.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2333boy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "233boy.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "233boy.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4o.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "66gal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a-lexx.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abigailfriedland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abseher-technology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accurx.nhs.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "actoragecheck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adaoconde.art", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adhadse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advancedbuildings.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advinix.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afzetbak.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agiftinside.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agrarkredit.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ahoj.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airfaretousa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airflightsdeals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlineairplane.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlineandtickets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlineflights.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlineflightsinternational.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinep.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinesamsterdam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinesandhotel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinesandtickets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinesandtravel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinesboston.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinesbrussels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinesby.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinesca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlineschicago.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinesdallas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinesdc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinesdetroit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinesdomestic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlineseast.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinesfirstclass.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlineshouston.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinesit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlineslosangeles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinesname.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinesnewyork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinespackages.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinesparis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinesphonenumber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinessanfrancisco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinestexas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinestoalaska.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinestoatlanta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinestocanada.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinestochicago.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinestoeurope.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinestoflorida.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinestofrance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinestoitaly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinestojapan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinestolosangeles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinestomiami.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinestousa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinestovegas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinesturkey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinesvegas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinesvietnam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlineticketspurchase.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlineticketswith.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinetravelinternational.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinevegas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airplanetic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airportdc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airportholiday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airportknoxville.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airportlas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airportsflights.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ajaxmfs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akvakm.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alancolephotography.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "albinonderdelen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexmathews.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alfa-pack.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alfapack-shop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allactionsecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allianceairlinesflights.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allier-vichy-moulins-expert-comptable.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "almette.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpha-kamera.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amartours.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "americatracker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anbaicreative.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andyattorney.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animecasepremium.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "any-id.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anztb.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apcassistant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aptern.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aptient.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aquantia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arduino.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "argyrouminas.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armo.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artikel5ev.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arturojimenez.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asburyparkreporter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asiansnus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "associazioneterra.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astroluna.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astutetm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlasbus.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlasbus.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aufeerjob.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "augeo.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auxilius.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aveamcorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "awmb.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baer-concepts.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balancingbirthbaby.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baufi-express.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baufi-express.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baufi-express.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baufiexpress.ag", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baufiexpress.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beeremovalpretoria.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bernayslab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bert.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bertusengelbrecht.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bggcapital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitedu.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitfashion.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackcatcard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blitztesting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blue2purple.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bokaldo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boldorion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonnepart.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bookcheapairline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "borderlens.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "branchtobox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "breadheads.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "britishairlinesflights.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "broomorchard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bss-solutions.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bubalova.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cadencescience.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "campaignzee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canstar.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "capetownelite.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carear.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carottage-beton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carty.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccad.edu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdnrecords.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cebolinha-imaginaria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ceew.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheapairfarefrom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheapestwaytofly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheapfareto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheapflightatlanta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheapinternationalair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chriskthomas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christysstampingspot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cia-gaming.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cirasul.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "circleci.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cisprague.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clairebabai.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "climb4achild.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudsecurityalliance.events", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codepwn.win", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coinliq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coldsteelsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collinlove.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collinlove.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collinlove.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collinlove.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colorcomm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "columbuscoffeefest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "complycheck.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "connectto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "convoyin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cozumelairlines.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cozumelflight.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cumlaudegent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cursofuturosresidentes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cvpartner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cycc.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "czqu.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dadoilustrado.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielcardoso.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daseinsfreu.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dcnews.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deepl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demorgen.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dev-woenenn-node-server.herokuapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devonportairport.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dhurbabaral.com.np", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diabdis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diaweb.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dinkoreskoleviborg.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "directairlineflights.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "directright.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discoverradiance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "divanogiusto.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dm-918kiss.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dmz.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doctrine.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dumfriespropertyservices.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dwightd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eaglehaslended.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "earthlink.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easttamakiauto.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eccouncil.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "educard.co.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eduflow.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edupay.co.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edusuite.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "egos-online.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ekospajzka.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eliteimsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elusivetranslations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "engelzicht.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "entabe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enuchi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "envelopegroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eric.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erreguete.gal", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esgforum.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esquirelaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expediteplus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expert-comptable-vichy-moulins-allier.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expresshsp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ezcesspoollongisland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "familiekusch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faresfrom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faszination-fankurve.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fayffersons.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feelbycubanas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "figshare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filmsleague.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flightairport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flightfrankfurt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flighthonolulu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flightstimes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flowerwholesale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flughafenairport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foreignaffairsmotorsports.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fotobrinke.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fraeuleinmeerbackt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fredericosaraiva.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funding-zone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furuse-shika.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futurains.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fwaux.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fyziotonka.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gablermade.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galiuzvejoti.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaminglaptop.deals", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gatewaytire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giacomodebidda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gites-melaual.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gl-operacion.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gnzsnz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gofabcnc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gogreece.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "googlecom.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gorebayairport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gradinitasamariteanulcluj.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greatrichmond.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greenwood-it.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greta-fischer-schule.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gtk-tim.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guttergurugeelong.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "h-advisors.global", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "handballinside.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "handmadeselling.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdc.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdm-bogensport.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healingwithvibrationsummit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hellosixpackabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hermandevries.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herzpfa.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hexstream.expert", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "highburycorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hirechrisfinazzo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hochland.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holiday-home-baer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hospitalsanjuandedios.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hospitalsineachstate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelsingaporeairport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotspot.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hstoyanov.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "htl-anmeldung.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humo.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iconexperience.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ikarus-itkurs.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indamail.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indicure.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "industrydecarbonization.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "initiative20x20.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "innisfildental.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internationalairlinestickets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internationalgse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jambox.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jaris.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jarlstrom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jarry.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jhfunerals.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jialiangkang.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jibe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jibeapply.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jirehlov.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jl-k.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobcorps.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobsineachstate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jordancards.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jordanlys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "julia-spriggs.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jzz.cool", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jzzfyw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kasinopartio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kcucs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kevinji.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinden-giankyou.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinden-kizuna.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kindermarket.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinison.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "komsomolka.works", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kupone.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kurtneuweiler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kyoox.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lablaser.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lacontrevoie.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landkind.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "latourist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lexgo.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libanswers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libchat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libconnect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libcrm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libelle.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libinsight.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libwizard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lirui.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lisapinder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "little-luk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liukang.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liups.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locadoraequiloc.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lommers.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loststudios.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loveinabox.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luisvmf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luisvmf.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lydianibley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lyrique.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magic-cakes.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magnuspro.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magnuspro.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magornitho.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "makemoney.ng", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malevus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manitoulingolf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manitoulintransport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "margriet.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mariemccaig.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markmorris.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masfloss.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "material-ui.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matthewoliver.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matureporn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maverickmobilemechanics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mbudy.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcdonalds.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meda.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meddata.pp.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediassist.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medihost.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megacellenerji.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mepcoeng.ac.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mfinanse.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mgfgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnafspraak.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milosguide.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minxmine.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mod.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modernwebz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "momondersteuning.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "montevue.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morphitattachments.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mui.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multifamily.loans", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mycts.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myhotel.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myworkplaceperks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "na1.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ndisreview.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neroteknik.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nettoyage-apres-deces-crime.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nettunoguide.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newoldstock.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newwise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nextlevel-forum.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nextlevelforum.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nfobar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ngroupllc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niagaraconstruction.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nmbhgc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nodecore.mine.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nplc.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olafbrzeski.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omanair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omatoimi.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinecannabiseducation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onurerhan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onx.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openalt.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "operatoresanitario.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optionskredit.ag", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optionskredit.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optionskredit.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optionskredit.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "organizalpha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oriocdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osaamiskartoitus.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osiedlemalownicze.wroc.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pack.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "packagestours.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pahadee.coffee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palmatin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paperandpage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paremedical.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parool.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partsgeek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perssonsgarn.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pfandbriefsparen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pfnpc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pgmjr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phrlegal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pic-sl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "picrew.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pikafan.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pipetobacco.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pisaparaasescolas.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planetickettravel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "platinumpoolsaz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "policeauctionsusa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portiva.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pradyumnashome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "primrosehillvets.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privacyfenceanddeckllc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "priyan.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "probably.group", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "profian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prototech.store", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psd-vfx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ptjobsite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ptservidor.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pusztul.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qikio.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quiq-in.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "racquetdepot.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rafix.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rahil-p.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rajkotupdates.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "randomideas.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raumausstatter-fangmann.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rawmathub.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdmc.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realtyofnaples.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rebellyon.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regal.radio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reservationsair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retailnext.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revenuegrid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ridingthetigerpro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ritual.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rjia.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rnz3.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robindirksen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royaleafrica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rtjobsite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rucheentreprise.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rugbynow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s.team", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saap.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sadurscy.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sailormoonfansubs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanjuandediosburgos.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sardinhagarcia.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saresegur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scoolio.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scorebet24.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scott-smith.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "screenrant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sealvault.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "searchdogs.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "securesense.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seetow.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "selltogaprime.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sence.gob.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seotesty.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serifosguide.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "setupstreamers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sfmason.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sgtrains.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sheetsindonesia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shopmlr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siega.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sifnosguide.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silbox.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simpelkredit.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skysprouts.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slaninka.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slatteryassetadvisory.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slayersonline.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smoe.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smokefreeclinic.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sommer-reitmajer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "southwesttest.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speedable.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spielefant.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "springbreak.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spstechnical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stadionwelt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "standard-wohnungsbaukredit.ag", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "standard-wohnungsbaukredit.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "standardwohnungsbaukredit.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "statinfer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stbk.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stdssr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stonebriarpropertyinspections.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stopautoshop.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storvault.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stratahealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sudoless.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sudoless.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sudoless.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suessenbecker.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "super-silicon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "surgicalassociates.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suter.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suter.id.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swiezastrona.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swxtd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "synergiamedicalcare.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "t630.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tango.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "targettrend.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tasarimrehberi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tasports.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tc-tsc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tcgcardcare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teachjam.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teier.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teier.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telemind.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefrenchbeautyacademy.edu.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theologique.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theretirementincomecalculator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theriverspecialist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ticketscheapairfare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ticketscheapairline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ticketscheapflights.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tidydiary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toroguapo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelairtravel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelcheapdeals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelflighthotel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelnotoria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trouw.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twospirits.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ua577.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ubiqubit.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ubytovnastrazske.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urlrating.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vacationsforcouples.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valbon.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "velo-doktor.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vetres.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "via-tygo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vikc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visceralsound.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visualtec.host", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volkskrant.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vrbl.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vys.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waldorf-augsburg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wattpad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wcss.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wdstrings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webuyloansfast.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webx5.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "welldoc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "welldocinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wellesleycosmeticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westcoastdrones.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westmodernclinic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whatairdefencedoing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whitespace.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whitespider.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whitespider.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whitespider.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whoplusyou.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wisewaynutrition.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wkwsafetysolution.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "womblesemporium.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woodsbagot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worn.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "x-kamera.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xlnaudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--rl-wka.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yorkshirehousing.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ystral.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yuriylysyuk.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zahnarztpraxis-schaerding.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zecanard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zgw.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhujike.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "znowuwrocisz.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zorkin.uz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zwit.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zwitterion.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "07f.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1-news.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1-x-bet.ke", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1-x-mirror.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1-xbet-tj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1-xbet.ke", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1-xbet13.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1-xbet20.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1000ps.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1000ps.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "10news.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "10tv.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "123apps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "123gostovanje.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "12go.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1800flowers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1800petmeds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "18vr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1heiz-pellets.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1mgstorage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1strecipes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1sttix.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1x-00.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1x-01.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1x-04.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1x-bet-co.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1x-bet-ua.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1x-bet-uz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1x-bet.ke", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1x-bet2021.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1x-bet93432.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1x-betua.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1x-bit.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1x-krbet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1x-mirrors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1x2020.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xaja.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbenar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet-015.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet-ro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet-s.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet-se.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet-sw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet-uz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.ac", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.cd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.cg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.ci", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.cm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.co.ke", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.co.ls", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.co.mu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.co.rw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.co.zw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.com.gh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.com.zm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.ec", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.gd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.gf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.global", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.gm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.go.ug", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.gs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.gt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.gw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.ht", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.lat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.mg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.mq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.mw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.na", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.ne.ug", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.net.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.org.mw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.org.na", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.pn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.rw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.sb", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.sc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.sc.ug", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.sl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.sr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.tc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.td", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.tj", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.tl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.ug", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.vg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.vu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet101.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet102.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet82.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbetbk16.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbetbk17.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbetbk2.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbetbk4.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbetbk6.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbetet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbetga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbetkk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbetkor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbetkr1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbetmm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbetqq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbetsd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbetst.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbetsz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbettz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbetua.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbit1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbit4.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbit5.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbkbet3.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbkbet4.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xgames.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xgokil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xmakati.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xmaubix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xmyanmar.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xpartners.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xraja.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xslot-ua.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xslot.casino", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xslot.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xslot2.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xslot3.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xslot6.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xslot7.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xslotpartners.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xslotspartners.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xvhy.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2020cadillac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2020spaces.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "21lab.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "22-bets.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "22bet-top.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "22bet.co.ke", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "247analsex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "247asiansex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "247bigboobs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "247butts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "247cumshots.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "29a.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2think.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3arena.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3d47.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3dzip.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "42matters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4chan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4devs.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4exchange.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4grad.in.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "511.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "51talk.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5ca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5g.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7-zip.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "700creditsolution.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "700dealer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7aga7.mk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7hq.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7money.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "8000plus.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "838888.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "8fit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "8thstreetlatinas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "90.cx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "902.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "9tailedkitsune.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "9xbuddy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a24help.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aaahosting70.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aalaslearninglibrary.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aaliyahclothing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aappb.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aau.edu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abancommercials.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abbeycarefoundation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abbl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abc15.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abenteuerteam.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ableitungsrechner.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abnbfcu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutyou.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutyou.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutyou.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutyou.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutyou.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutyou.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutyou.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutyou.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutyou.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutyou.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutyou.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutyou.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutyou.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutyou.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutyou.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutyou.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abplusz.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ac8.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acara.edu.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acbcoop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "access-nl.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "account.gov.mo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accountancymanager.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accueil-paysan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acepi.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acronis.events", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "act-on.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "action-education.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "action.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "activeprospect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "actualidad-rt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adamant.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adameveplus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adamevevod.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adamj.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adaptimmune.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adatitleiii.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "addall.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "addtelegrammember.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adespresso.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adgreetz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adinaporter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adultdvdparadise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advancedmedicalcertification.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advantmed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aetherdigitalplatform.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aethon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aff1xstavka.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affiliates-psychicsource.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affinitycu.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aftontickets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agirc-arrco.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agora-energiewende.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agora-verkehrswende.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agorabet.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agravery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agripick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ahima.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ahm.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ahswarranty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aiatsis.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aibolit.md", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aiccorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aiha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aiminet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aipi.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aipi.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aipi.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airburners.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinesfleet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airscorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aiwo.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ajmansewerage.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "al-monitor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alanrogers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "albanylaser.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alcanaplata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alcatrazeast.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aldridge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alertlogic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alertsclk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexandraschick.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexia.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alfafile.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "algerie360.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "algoritmika.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alightwell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "all4running.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allasianpics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allauthor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allbuttpics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allcumshotpics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allegiancemd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allesisgezondheid.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allesoversport.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alleyread.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allfatpics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allianz-pro-schiene.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allianzdirect.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allianzdirect.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allianzdirect.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alliedmedia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allinpdf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alllatinapics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allnodes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allnumis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alloprof.qc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allpantypics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allporn.pics", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allsmart.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allsouls.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alltimespost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allwithinmyhands.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "almeera.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "almirall.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "almurtaqa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "almutawapharmacies.com.kw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alphamosa.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alphastrip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alphavit.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpinebank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alt-pannekow.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altea.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altimetry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altinity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altransport.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altravita-ivf.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alua.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alumni.education", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alwaysdata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amarinbabyandkids.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amazon.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ambient.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amblin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "americanmessaging.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amorszexshop.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amp-wp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amp.chat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ampedairsoft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amsterdam.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amwine.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ananasposter.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anastore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ancestry.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ancestry.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ancestry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ancestry.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ancestry.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ancestry.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ancestry.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ancestry.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ancestrycdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ancestryinstitution.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andreacarreno.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "androidwedakarayo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "androidweekly.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angelfood.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angelsandfriends.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angora.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anguloconsulting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angusbarn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animeuknews.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "annefrank.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anniesdollhouse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anonhq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anonymous.com.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anoopcnair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "answersincme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antalyahomes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antarktida.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antavo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antivirus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antiwarsongs.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ants.gouv.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anycoindirect.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anytimefitness.co.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anytimefitness.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anytots.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anywayanyday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aopa.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ap.nic.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apachetoday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "api64.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apil.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apkcunk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apkxi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apoia.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apolitical.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "app-control-fcu.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appcraver.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appelboom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appfollow.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apple-droid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appletreemedicalgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "applian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "applybe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appodeal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "approve.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "approveme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appsafrica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appt.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apptio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aprovatotal.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apspayroll.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apstylebook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apuestalegal.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apuestalegalchile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aquaphor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aquaphor.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arbeiterkammer.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arbounie.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arcane.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "archphila.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ardennes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arij.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arkforum.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armand-colin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armaplatform.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "army.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armyburza.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armyuniversity.edu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arpnet.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "art.art", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artifacthub.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artifort.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artishevski.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artmark.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artmo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ascenderhcm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ascl.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ashlingonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asiafaninfo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asianetbroadband.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "assecuro.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "assicurare.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "assmgp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astmatiki.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astrologify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astrosociety.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asual.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asugsvsummit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ateasesystems.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atheistfoundation.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atheneum-partners.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "athoris.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlanticcityweekly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlarytm1x.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlas.md", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlasams.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlastube.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atobtransfer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atpx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "attesawp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atttrainings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auction.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audio-extractor.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audio-joiner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audioplugin.deals", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aum.edu.kw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aumigona.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aupair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auroraer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "authcom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "authenteak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "authentication.directory", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "author-it.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autisme-france.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autobus.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autopartsprime.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autopilotapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avalaunchmedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avalonaccess.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avexongroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avexonsecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aviasg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avivanuestroscorazones.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avvoka.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axcient.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axoftglobal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aykiri.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayudamineduc.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azdailysun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azoft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "b2markt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babesnetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babevr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babyboomer.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bachelornation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "backlog.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "backwpup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "backyardchickens.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badoinkvr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bagelbrands.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bahcehavuz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bahri.sa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baileyladders.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baitapsgk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bakivaxti.az", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balboacapital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baleinesendirect.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balneariodearchena.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bancoagricola.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bankid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bankislami.com.pk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bankwithfidelity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barcodelookup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bardfarm.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barkio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barlettaviva.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barsleaks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baseballjapan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basicknowledge101.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bath.ltd.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bau.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baufi-express.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baufi-express.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baufi-express.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baufiexpress.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baufiexpress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baufiexpress.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bawag.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baxterstorey.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baxterstoreyirelandonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bayashi.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baymark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bbcincorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bbfandom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bbwanalsex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bbwmovies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bbwpictures.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bbwpornpics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bbwpussytube.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bcec.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bcu.ac.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bdli.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beable.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beaconhealthoptions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beatmalaria.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beatricedailysun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beautiful.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beavertails.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bebodywise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bedienungsanleitung24.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beeline.am", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beeremovaljohannesburg.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "befunddolmetscher.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beirel.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bellenews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bellhowell.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belveb24.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belvoc.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benefitharbor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bepick.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berekenen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bergfex.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bergfex.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bergfex.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berghof-foundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bernard.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berries.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berrnd.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "besdev.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bespaarbazaar.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-stroy.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestatter.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestfewo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestmaturepics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestofnuevovallarta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestporn.pics", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestpornpictures.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestportablegeneratorratings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beststock.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "besttrannytube.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betandyou1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beteroud.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betingsite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betkorea1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betterbaseball.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betvisa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betwinner-ua.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betwinner.co.ug", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betwinner.co.zm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betwinner.ng", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betwinner1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betzgmbh.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betzwhite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beutner.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bevestor.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bewerbung.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beyondthemoments.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bezpieczny.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bfharrison.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bfi.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bg-1xbet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bharatskills.gov.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bi-medien.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biblicalcounseling.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bidlab.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigassmonster.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigbooty.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigbootytube.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bignaturals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigtitsmilf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bikerestart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billetto.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billetto.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billetto.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billetto.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billingsgazette.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "binbaz.org.sa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bingebooks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bingoporno.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bismarcktribune.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bisnis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoin-2go.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinapi.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitlair.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitvise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biz4solutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bizontrip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biztrend.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bjsms.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bk-info.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bkk24.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bkpm.tj", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackarch.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackmaleme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackmesa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackmilftube.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackstoneone.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blaetter.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "block.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bloggingtriggers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blogman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bloobasket.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bloombergtv.mn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bloomfire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blsattestation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluecam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluecatnetworks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blufashion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluzone.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bnews.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bnpparibas.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bnpparibas.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bnpparibas.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bnpparibas.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bnpparibas.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bnpparibas.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bo-1xbet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "board-portal.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "board-room.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boardroommind.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boardsoftware.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bolbilisim.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boobsgirls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bootytube.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "borfin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bostonmedicalgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boulderdowntown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boulstory.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bourtalm.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bowwowinsurance.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bpd.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "br-1xbet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "braincorebismarck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brainguru.co.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brainguru.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brainporteindhoven.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brainware-india.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brambles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brazzersnetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bregroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brentsoslibraries.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bridalreflections.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "briefly.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "british-assessment.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "britsoc.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brittany.com.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "broadfoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "broadwaytravel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "broedersvanliefde.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brokenships.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brokernews.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bromo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bryantx.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsdex.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsdly.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsebresult.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "btrans.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bubblebuttpics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bubok.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bubok.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bubok.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buckmans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buddy.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "budget.gouv.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "budget.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buffalonews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buffl.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "builtin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "builtinaustin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "builtinchicago.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "builtincolorado.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "builtinnyc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bulgarianproperties.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buncombecounty.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burgas.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burtsbees.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "businessleadsworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bussi.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bustyarchive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bustymilftube.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bustypassion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bustypics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bustyrack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "butternutbox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bv-ferreiradozezere.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bvwphotography.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bzkj.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c4b.tools", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ca-immobilier.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cabinetm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cacareerzone.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cactus-search.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cadcrowd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cadeauxfolies.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calculadora-de-derivadas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calculadora-de-integrales.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calidadbio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "callan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "callcriteria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "callflex.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camerawisata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "campaign-center.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canadacouncil.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canadianlawyermag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canadianpharmacyonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canalbpv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canalrivertrust.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canelaimobiliaria.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canliradyodinle.fm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canstar.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canstarblue.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canstarblue.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "captain-droid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carbaza.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cardinus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cardmates.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "careernet.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caretaker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "careyolsen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlsonsw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlysgarden.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carolinarice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carolinebazin.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carprice.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carproof.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carre.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carterjonas.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartoontube69.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casaplorer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casasdeapuestasdeportivas.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caseware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casewarecloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cashper.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casino-r.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casino.guide", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinologinaustralia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinosanalyzer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "castingnetworks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catgirl.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catharinaziekenhuis.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catprint.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catvibers.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cba.gov.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cboard.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cbs.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccc-ffm.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccc.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cciofficial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cck-law.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccmg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccnbikes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccoo.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccplot.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdga.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdn-reichelt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdpn.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cea.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cefonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ceinorme.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centremanagement.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centrenationaldulivre.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centrodememoriahistorica.gov.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cerberusftp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cercanos.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "certificationmap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "certifylogin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cesclam.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cexplorer.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cgtips.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chaikinanalytics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chaminadeonline.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chargebacks911.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charthop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chasse-maree.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chatgen.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chatteron.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chaturfier.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checkfreescore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checkmarket.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checkreview.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chefaa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chefdehome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chemaxon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chennai.nic.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cherrycredits.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cherrycreeknorth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheryls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chetu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chinati.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chiucainlaw.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chkmkt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chloeting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "choice-design.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrstngr.cm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chubbygirlpics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chulinkuei.org.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ci.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cigotracker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cihr-irsc.gc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cioxhealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cirro.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cirurgicasaopaulo.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ciscobrewers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citizentruth.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citti.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "city.kharkov.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cityofglasgowcollege.ac.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cityonfire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cjp.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cl-1xbet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "classiques-garnier.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "claunchdesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cleanenergywire.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cleanrun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cleanuri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clickfreescore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clientportal.photo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clintonsavings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clock3.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloppenburg-gruppe.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloud24.kz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudvoor.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudvoor.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudvoor.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubforce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubmahindra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cm-law.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cm1xbet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cmfuchs.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cmmcinfo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cmrlink.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cmscompany.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cncexplorer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cnnumerique.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coa.gov.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codeclouds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codekk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codesal.solutions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codex.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coding-aloud.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coedpictures.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cofigs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coggeshall.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cogstate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coinscatalog.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collectionru.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collectorscorner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collinlove.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "columbialawreview.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "columbustelegram.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colwyn.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colwynfm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comedonchisciotte.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "commissionaires.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "commloan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "commoncog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "company-bike.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "compleet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comptoir-hardware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "compunet.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "computersolutions.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comquestmed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conferenciaepiscopal.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "configserverfirewall.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "confluent.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "confused.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "connectingup.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conova.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conscia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conseildesarts.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consortiumhealthplans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consumerlaw.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consumertesting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consumptionjunction.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "contadorespublicos.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "contrarianoutlook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "contrastly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "controlup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "convert.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cookgem.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coolgeography.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coordonnees-gps.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "copasulassessoria.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "copyright.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "copyrightservice.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "core300.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cornel1801.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cornerstone.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cortlandreview.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "costco.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cosude.org.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cottagelife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "counsellink.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "couponava.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coursesanswer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "courthousedirect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cove.chat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coveragent.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coveteur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "covidactnow.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cpd.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cradleofaviation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cratexedm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crazysexpics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crealabs.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creamfields.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "create2.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creately.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "credify.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creditriskmonitor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creditxpert.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creelandgow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cressetcapital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crestaproject.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crestresearch.ac.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crestron.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cricheroes.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crimemuseum.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crimewatch.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crimewatchfl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "critfc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cron.uz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crowdbank.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crowdfiber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crunchybetty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptitan.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptoviet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crystal.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csbs.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csdisco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csfd.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csgo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csgoempire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csgoempire.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cstg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ctdi.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cubanda.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cubflaica.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cultivariable.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cumberlink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cumfiesta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "custify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cvdesignr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cvedetails.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyconet.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cz.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daaxit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dailydodge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dailylviv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dailymedicalinfo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danejones.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daniel.priv.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daniellesteel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danishbytes.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danke.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danskemedier.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danthecloudman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daredorm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dartmouth-hitchcock.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datafloq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datalogistics.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datamish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datarails.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dataroom-online.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dataskydd.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datastar.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "date-conference.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davison.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davisvision.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dawaai.pk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daxisweb.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dayz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dbhome.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dbildungscloud.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dbushell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dclm.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dcparts.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ddma.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ddnsip.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ddsdiscounts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dealjumbo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dealogic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deciso.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dedoho.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deeezy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deepid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "defectivebydesign.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dejuzconsults.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deli-fuzoku.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delicious-audio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delsolphotography.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delugerpg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "democratherald.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demonoid.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denkit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deno.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denovocorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dentistabarbarajaqueline.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denver7.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derattizzare.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dereklow.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "designbro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "designengineering.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desinfection-gale.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desitorrents.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "destguides.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "detfagligehus.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "developerinsider.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dexie.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dg-hyp.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dg-hyp.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dghyp-immobrief.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dghyp.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dghyp.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dgn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dgroups.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dhakabankltd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diaakademi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diamondit.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diapazon.kz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "die-herrenschneider.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dierenwiki.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dieta-vita.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": "digitalbuero.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalcourage.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalplayground.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalplaygroundnetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitaltbyra.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitogy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitoimistopipeline.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dignited.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dimitri-papadimitriou.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dimonz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dinarys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dinira-bg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dionera.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "directorioweb.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "directright.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "directrightcartage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "directview.ddns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dirtyboyreviews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disabilityscoop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discgolf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discoverglo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "divernet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "divicar.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djav.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dlcompare.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dlttrading.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dm.cw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dmc.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dmesg.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnshotel.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnsrevolve.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dock.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doctaforum-events.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doctorsinternet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doctorswithoutborders.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dodi-repacks.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doenets.lk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dogecdn.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doghousedigital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dolfotransport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dominionlending.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dompetdhuafa.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doneinteriorerp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donplafon.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dontbreakme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dorcelvision.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dortmund.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dosenpendidikan.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dotcomdesigns.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dothaneagle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doujinrepublic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "downloadfestival.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "downtownindy.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "downtownla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "downtownraleigh.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "downtowntucson.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dpc.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drivechat.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drksachsen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drtsaiclinic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "druidry.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ds-srv.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ds-ultimate.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dsdomains.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dsebd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dsgv.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dsv-gruppe.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dualuniverse.game", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dubaifitnesschallenge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dubaisc.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dubaistudiocity.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duckerings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duckeringstransport.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duckeringstransport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duediligencedataroom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duffel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dulux.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dulux.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "durastudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duwitmu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dvminsight.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dwservice.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dynamicservers.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ea-ru.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ealarm-safemode.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "earthwatch.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eastman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eatdrinktalk.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebakery.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebonyfantasies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebonylog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebonymgp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebonymilftube.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebonytube.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eccoholiday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eccu.edu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "echomail.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "echoserver.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "echoship.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eco-web.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecologic-france.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "economipedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecpl.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eda72.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edelvivesdigital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edelvivesdigitalplus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edelweiss-service.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edgarsmission.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edgartamarit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edgemagazine.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edited.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edited.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edited.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edited.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "editorialexpress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "editorsguild.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edmwaves.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edocr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edri.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edscha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "educacionit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edugram.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eduki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edusson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eduzaurus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "efiglobal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "efirma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "egestor.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggplantsoftware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "egroupware.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eindex.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eirgroup.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ekf.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eleconomista.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elections.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricityplans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electromagnetichealth.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elektro-reibsch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elektro-wandelt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elevatewebdesigns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elfi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elite-magazin.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elkodaily.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ellty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emagazine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emailablev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emailspedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emakicms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emazzanti.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emberit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emccglobal.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emersya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emilysweet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "empyreanrule.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emse.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enactor.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enam.gov.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enboarder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "encryptedconnection.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enelgreenpower.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enerpac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enroll2control.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ensayistas.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ensma.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enter.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "entertainmentmesh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "envistacu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epdigital.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epitesti.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ergometrics.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eritonetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erium.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erli.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eroticjuggs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erpid.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ersankaucuk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eru.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erzbistum-bamberg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esasafe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esc3.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esc9.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "escapio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "escortdelhi.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eskypartners.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eso-database.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "espiv.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "espivblogs.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essexhighways.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estatebud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estelarix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estrasol.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethanrjones.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethpool.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ettlinger-tor.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ettoremirarchifilms.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eu-secured.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurofinance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "europabio.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "european-alternatives.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "europeangaming.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evangersdogfood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eventdata.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "events1.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eventseeker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everestbankltd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evertz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ex.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ex2technology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "examsoft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exceptionnotfound.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exchangesolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exclusivemilf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exedo.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expediteplus-asia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expediteplus.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expediteplus.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expediteplus.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "experiencealula.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expocom.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expodat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exposureevents.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expressodasilhas.cv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expressvpn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expressvpn.works", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expressvpn.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "externeverslaggeving.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "extract.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "extratv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eylea.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eylog.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "f45challenge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "f45training.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "facteurcheval.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fadecloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faelix.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faelix.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faelix.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faelix.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fahrradreisen-wanderreisen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fairline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faketaxi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "falck.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "falixnodes.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "falkentyre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "familieretshuset.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "familydoctor.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "familyhookups.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "familytreewebinars.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fanflix.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fansport.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "farenheit.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashiondistrict.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fasigbrooks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fastcloud.ge", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fastcup.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fastcustomboxes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fastestknowntime.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fastscanapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fatassbooty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fatpussytube.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faulhaber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fc-rostov.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fcm.org.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fdlp.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fdltcc.edu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "federalcriminaldefenseattorney.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fednat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fedoranews.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fedrigoni.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feeling.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferrari.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ffnm.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ffwd-it.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ffxiv-eureka.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhi.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fides.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fidlar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fieldcrafts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fifauteam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fifehg.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "figure.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fija.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filmezzunk.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finet.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fingerprintjs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finicity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finovate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finsight.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firemail.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstbankkansas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstcapitalfcu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstorion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstshowing.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstwordpharma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fischer-group.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fischer-usa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fischerca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fishbrain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fixpart.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fkbae.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flagma.biz.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flagma.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flagma.uz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flandersmake.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flaticons.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flcgil.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flevoland.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flexgs.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flexgs.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flickdirect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flipsnack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "floridarrc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flowingdata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flyplay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fmbonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fok.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foliencenter24.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "folxhealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fontstand.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foot-direct.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "footballfoundation.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "footballnews.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forbes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foreningssparbanken.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forestdeclaration.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forestvets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forexlive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forix.agency", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "formafantasma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forsyth.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forsythco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fortknoxster.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fortnitedb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forum-goszakaz.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forumconstruire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forumsaudedigital.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foundationprogramme.nhs.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foundries.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fox13now.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fox17online.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foxygf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foxytubes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fpnpmcdn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fragbite.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framasoft.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framerjs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "france-volontaires.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "franciscolapa.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frankenfresh.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frappe.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frappe.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frappecloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frappeframework.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fraulen.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fredericksburg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "free-apply.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "free-printablehq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "free-printablemap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freedomonthenet.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freeflightstoitaly.ngo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freefuckvids.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freeimage.host", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freemilfpics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freepeopledirectory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freeroughporn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freesat.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freescorefast.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freeshipping.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freeview.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freifunk-myk.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fremonttribune.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frescocooks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fresheetmusic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freshjoomlatemplates.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freshman.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freshsexpics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frostplatform.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frsecure.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frugalfamily.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fruitfulenglish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fsconline.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fu110.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuelcycle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuhe-psy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "functionx.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furbooru.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furniturefashion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furrycdn.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fussballmanager.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futeboleapostasonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futurecharcoal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futureplan.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fwupd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fxexplained.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fyndiq.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fyptt.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gadalkindom.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gadgetguideonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gadgetick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gadgetsandwearables.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gainnet.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamblingconsulting.expert", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "game-repack.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gameflip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gameplus.win", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamerankings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gannett-cdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garrettpopcorn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gatherup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaypornvideos.xxx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaytor.rent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gazettengr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gazik.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gba.gob.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gdz4you.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gea-waldviertler.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gear4music.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gear4music.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gear4music.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gear4music.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gear4music.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geauxdns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "generix.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gennet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "georgian.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "get-a-wingman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gethotspotshield.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getroman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getstark.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gewerbe-fix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gewerbe-fix.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gewerbefix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gewerbefix.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ggdrop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ggdrop.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ghn.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gibbonedu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gif-avatars.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gim.ac.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giochistars.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "girlsfucked.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gis.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gisa.gv.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "githubengineering.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "givecfc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "givelab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "givingpledge.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gkb2.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gkrru4v.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glami.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glamourandgains.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glbth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "global-wire.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalmethane.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalreachtech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globe.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gluwee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gmanlabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gnuher.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "godanriver.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "godns.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gogle-analytics-srv2456.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gogocarto.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gohost.kz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldenpi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldtits.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goodsey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goodsrepublic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gorebayairport.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gorodrabot.kz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gorymoon.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gospelidea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gospence.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gotohomerepair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "governikus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "govvacationrewards.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gpskoordinaten.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grand-challenge.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grannynude.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grannypussy.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grannypussypics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grannytube.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grannytube.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grannytubes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grassau.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greatdane.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greatergoods.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "green-wood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greenlighttreeservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greenline.financial", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greenmesg.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greenmountainenergy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greensboro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greenville.k12.sc.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "griffithobs.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "groestlcoin.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grooove.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "groupleavingcards.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gta5redux.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guidedogs.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guj.nic.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gulliversfun.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gurugamer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gvh.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gymnasticbodies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "h-node.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "habedieeh.re", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hachettepartworks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hacksnation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haemonetics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hagleitner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hairyfilm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hairymilfpics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hairypussyvideos.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hairyteenpics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hairytouch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hairytube.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hairywomen.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hairywomenpics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hallmarkbusiness.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hamibot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "handelsbanken.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "handelsbanken.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "handheldsound.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haniasitek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hansanders.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hanwhalife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happity.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harapanrakyat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harryanddavid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hastingsdirect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hautehorlogerie.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hautsdefrance.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "havana-club.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hawaiifamilydental.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hb.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hcamag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hcdonbass.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdbigass.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdblackporn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdgrannytube.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdhomelift.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdmatureporn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdmaturetube.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdmaturetube.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdmilfporn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdmomtube.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdnakedgirls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdporno.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdpornpics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdpornpicture.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdwetpussy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "headed2.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "headstrong.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "headsuphealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healingfoundation.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "health-e.org.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "health-tourism.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthy.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heartlandcocacola.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hedefhalk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heficed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heftfilme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heimstaden.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helabet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helcim.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helenair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helgeklein.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helisimmer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hellotars.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helmethouse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helsi.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hentai-paradise.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hentaiprosnetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "her.porn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herald-review.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heraldcourier.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herbalife.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herbsociety.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herohealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herpderpderpderp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herregruppa.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herrns.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herzzuherz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hessen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hessischer-landtag.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hexasoft.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heyjoecoffee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hfholidays.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hfvuejq.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hg.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hickoryrecord.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hideuri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "high-solar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "highstakesdb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "himprom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hipnosisyterapias.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "historicengland.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hitimewine.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hitrecord.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hitsk.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hivelocity.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hmbana.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hmshost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hno-arzt-thomitzek.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hobbybrauer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoerspielbox.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hofbraeu-muenchen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hollmann.international", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hollywoodbios.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "home24bank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homeoperator.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homepage-nach-preis.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homerecording.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homokfuvo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "honda2wheelersindia.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hondaswap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "honeysucklewhite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hop.exchange", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hopscotchmodel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "horusrc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostaz.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostido.net.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hosting-fast.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostripples.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostsall.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotblondepussy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotbustymoms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotebonytube.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelbird.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotgirl.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotmart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotmilfphotos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotmom.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotmomsvideos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotnudeteen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotpornfilms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotporngirl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotporntubes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotpornvideos.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotpussypics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotpussytube.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "houdenvanhonden.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hqtrannytube.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hrnk.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hrodna.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hsjdzaragoza.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "htmag.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "htmltemplated.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hu-1xbet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hubx.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hugetits.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hululkitab.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humaninterest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humanresourcesmanager.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humi.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humm90.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hurtigrabat.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hv.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hygraph.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hymnal.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hyperdesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hypernode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hypervsn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hypnosis.edu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hyser.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i-med.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i-readycentral.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iacc.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iadb.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iae.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iaf.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iav.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iav.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibb.istanbul", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibexpackaging.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibmaspera.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibuildings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibz.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icasas.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icatt.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icca-chem.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icomuk.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iconsiam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icpcorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ictergezocht.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icthealth.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idcat.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idealmature.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idealwifes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idjnow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idmod.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ieomidi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iexaminer.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ifdb.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igad.int", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igrun80.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igrunplay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ihacares.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iir.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iliad78.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imagequix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imdb.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imibo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imigrasilampung.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immiboards.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immo-spezial.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immo-spezial.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immoexpress.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immtel.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "improd.works", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imunify360.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "in-1xbet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "in-line.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "in-star.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inara.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "incels.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "incels.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "incorporatedstyle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "increment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "independent-bank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "independenttribune.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indicodata.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indreams.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ineuron.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infarktniki.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infarmbureau.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infeedo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infinoe.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infinum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inflexa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infoflora.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "informacionsexual.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infostor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infraware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ing.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inges-kattehjem.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inilabs.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inovalon.global", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inscriu.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insertcredit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insidegnss.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "instacart.careers", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "installation-hotte-cuisine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "institutoclaro.org.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insultniki.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insurancebusinessmag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insurgo.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "integral-calculator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "integral-calculator.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "integralrechner.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "integrisaviation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "integritydetail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "integrityline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intelcapital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intelekta.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interbanco.com.gt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intercariforef.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intercol.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interguardian.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interiorai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interiorsnmore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internalportal.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internationaldelight.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internetpasoapaso.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interspar.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intersport.com.kw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intervention.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interwerk.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inthevip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intrafi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inventati.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inventorylab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "investia.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "investigace.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "investingnews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "investingoal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "investintech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "invicta.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "invidis.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "involve.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iodb.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iosco.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ioville.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipoteka.az", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipservices.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irishlifehealth.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irisopenspace.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "is-and.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isense.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ising.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "israelpalestinenews.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "istanbulhomes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isvstar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-connect.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-stek.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iteracy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ithillel.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ithmaarbank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itnet.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itt-us.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ityug247.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivandafish.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivrn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iweblab.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iwf.sport", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iwmf.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "izs.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jadid-alwadifa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jambox.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jamiiforums.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jaminidesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jammy4312.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janus-it.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "java-for-minecraft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jbctransport.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jboats.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jcchouinard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeanettevanrookhuizen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeangalea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jena.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jenne.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jenniferhudsonshow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jennymovies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jesusplusnothing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jetcard.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jg-tc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jh-group.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jhaudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jibecdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jiehun.com.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jimpl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jinshabu.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jirehlov.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jkws2.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jm73umh.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jmango360.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jnjpolymer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobanzeigen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobs.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jock2go.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joinclyde.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joj.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jollytur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jomactransport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joo.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joshuagoss.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "journalnow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "journals.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "journaltimes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jpan007.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jpg.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jsberrylaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jumpseller.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jungefreiheit.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "junyangz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jurkomp.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justice.gc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justinritter.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juzz.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jvspin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jvspinapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "k3a.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaandorpfietsen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kabushiki.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kackyreloaded.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaiahealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kamanja.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kandkforwarding.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kanru-clinic.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaora.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karada.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karta-mira.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katretter.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kayseri.bel.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kbtairmont.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kcnawatch.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kdb.uz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kearneyhub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keepersecurity.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keepersecurity.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keiebijters.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keitaro.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kemba.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kemhan.go.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kenhhomestay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kenwood-electronics.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kenwood.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kenwood.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kepleruniklinikum.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kepoper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kernel-video-sharing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ketchcdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kgun9.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "khaledalsabt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "khda.gov.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiacatherine.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kidcentraltn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiddyland.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kidsontheyard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kik-info.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinanart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kindler.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kindspace.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinoplex.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiprotect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kitchenwarehouseltd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kitenation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kivitv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kjrh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klapsinakis.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klarheit.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klimafakten.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klinikasoyuz.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knowmoreplatform.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knowyourteam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koaa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kohlchan.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kolukylaselts.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kondakovgorin.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kontent.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konwerter-online.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koopdomeinnaam.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koowde.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koppelvlak.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kor1xbet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "korea1x-bet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kostecka.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kotisivukone.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kp45.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kpinterface.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kramesondemand.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krik.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kriptokoin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kristv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krossvordy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ksa-lawfirm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ksamaps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kshb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ktnv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuba-erlebnisreisen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kulshe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kulturbanause.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kumacdn.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kumina.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kumu.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kunsten.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kunstmuseum-moritzburg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kurtosys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuti.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kvdb.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kxxv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kyobusiness.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kytkintienautomaalaamo.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kztv10.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "l-a-b-a.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "labinator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lablue.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lacorteimoveis.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lacrossetribune.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladobe.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladyboy.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladyboyfiles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladyboytube.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laegemiddelstyrelsen.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laget.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lahaine.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laji.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lakegenevanews.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lakeheadfreight.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lakerfreight.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lamanchelibre.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lamanzanamordida.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lampenlicht.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lampenundleuchten.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landflirt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landgorilla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landingtransport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landkreis-augsburg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landverliebt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "languagecert.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lasvegasnevada.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "latestpornvideos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "latoken.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laurentianlanes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawandtheworkplace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawdepot.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawtimesnews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lbwl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leadnxt.co.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leadnxt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leadplus.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leadplusdev.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leandoo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leansixsigmadefinition.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "learnattack.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "learnsafe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leaselink.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lebkuchen-schmidt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leblob.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lecourriercauchois.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legalis.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lehmanns.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lehollandaisvolant.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leicabiosystems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leisurevip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leit.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leitz-cloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lemedecin.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lendera.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lendinvest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leoburnett.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leon-16255.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesbea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesequinoxes.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesershop24.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesycr.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "letstryanal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "letto.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lex-legal.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lex18.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lexblogplatform.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lexblogplatformthree.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lexch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lexmedia.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lexpert.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leyaonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leyfutmex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lgmars.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lhv.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "li.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liangfaner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liberty.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libertylondon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libertyreversemortgage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libertystation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libraryh3lp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libreplanet.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libreview.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libstick.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "licenseplates.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lidkoping.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lidl.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifelineanimal.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifestyle.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifetimetraining.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ligadegamers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lilithfund.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "limburg.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "limetee.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lincolnzoo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lindseyadelman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lineru.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linguarama.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "links22.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linkurio.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linuslagerhjelm.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linuxdoc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lip.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "litkicks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "little-shield.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "littlecreekhosting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "littlegleemonster.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livdesign.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livefoot.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livepix.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liveplaygo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liverfoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liversurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livetilesglobal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livevacancies.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livingdocs.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "llac.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "llcgeek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "llumar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lmr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lmsal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loadninja.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loanscanada.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "localcdn.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loft.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logismarket.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lombard.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lombard.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "longevitywi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lonza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lookathernow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "looksmax.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lootdog.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "losviajesdequimyelena.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lotusbook247.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loudly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "louisianamusicfactory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovehairstyles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loyolahs.edu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lucidya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luckmoneymyth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ludwigsburger-brauhaus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luinonotizie.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lukeplant.me.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lumapr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lunagrill.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lund.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lune.gay", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lyanaprintable.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lynnco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lyonliving.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ma-bimbo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maat.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macaw.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mad.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madeinabyss-manga-new.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madison.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maeva.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magdahavas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magesypro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maggianos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magiamgiashopee.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magicdust.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magicvalley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mahalux.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mahou-sanmiguel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mail.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mail.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mail.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailgenius.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maimemostatus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mainstaysafetywedge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "majorhifi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "makeitsimple.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maketheconnection.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "making-it.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mamopracuj.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manga-passion.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manga-republic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manga1000.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manitoulinairport.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manitoulinairport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manitoulinglobalforwarding.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manitoulinglobalforwarding.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manitoulinglobalforwarding.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manitoulinheavyhaul.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manitoulinheavyhaul.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manitoulintransport.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manitoulintransport.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manitoulintransport.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manitoulinwarehousing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manporn.xxx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manytricks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maples.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marcelovasconcelos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marcha.org.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marebca.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mariamindbodyhealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marketresearch.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marketsnerd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marketvolume.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marks.sa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markus-enzweiler.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mas.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mastelic.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masternetltd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mat.services", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mate.academy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mateslibres.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "math-drills.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mathematica.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matrixeditora.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matrixhealthcare.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattgemmell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matthiasmueller.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mature-lovers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matureasspics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maturebbwtube.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maturebigass.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maturecharm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maturefucktube.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maturepussypics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maturetube.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxboobs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maximiliangaedig.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mbed.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mc-connect.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mc-mods.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mccannworldgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcdowellnews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mch2022.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mdgx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meao.market", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meao.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec.gub.uy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mecloudprinter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medefield.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medelement.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediaboutique.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medias-presse.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediatrust.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medicareadvantage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medicaremarket.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meetmaps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megahobby.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megahouse.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megapari.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megeve-tourisme.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meggnoapps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meinereiseangebote.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meinungsplatz.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meisterplan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meisterplan.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melbet-sp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melbet27.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melbetaffiliates.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melbetua.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "memberclicks.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "membersolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mennetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "menterarchitects.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "menti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercosuleditora.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "messagely.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metrodemedellin.gov.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metrolisboa.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metroymca.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metsosivut.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mexticket.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mfcentral.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mgfgroup.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mgkl.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mhgeay.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaeleisen.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaelessek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaelfoods.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michelegreenmd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "microbiologyinfo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "microblink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "microhydrony.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "microworkers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikanakashima.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milehighmedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milfanaltube.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milfbank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milfed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milfmoms.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milfsection.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "militaria.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milkyperu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milkywan.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "millix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mincantos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mindprod.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mindstream.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minefort.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mingle2.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minibardelivery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minifree.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mintywhite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minuterice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miomiojoyeria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirasee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miroslavholec.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "missingchildreneurope.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mississaugaelite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mister-auto.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mister-auto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mister-auto.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mister-auto.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mister-auto.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mister-auto.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "misterdomain.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mitel.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mixnmojo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkinfo.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mncbank.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobilelaby.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobilesms.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobygeek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modding-openmw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moddo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moderaterna.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modusgames.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mofosnetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moglie.xxx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "molpay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mommoneymap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "momtubevideos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mondoffice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mondovisione.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "money.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moneymart.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moneyreview.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moneytalks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monitor-mailtracker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monvanityideal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moodfabrics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moodgym.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moodgym.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moola.market", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mooresvilletribune.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moovemais.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moplay.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morewithcore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morganton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morgengold.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morpheusdata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mosautoshina.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moscow001.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mosio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mostbet2.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motional.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motiva.health", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motorline.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motorsactu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mountainstage.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mouseflow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mozfr.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mp3cut.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mpamag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mphprogram.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mpi.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mr.bet", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mr0.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mr1xbet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mr8.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mru.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msinc.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtstandard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muj-sejf.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multiasistencia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multigo.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multilingualpress.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multiply.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mundoemalerta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muscatinejournal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "museumplantinmoretus.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musicrepublicmagazine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musictech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muxetv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mventix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mvsp.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mwv2wle.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myanmar.gov.mm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myareaf2a.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mybrb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mycandylove.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myclang.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mydedicatedservice.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mygreencloset.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mygtcup.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myhelcim.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mykukun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mymagnifi.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mymesra.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mynr.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mypetcloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mysafeway.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mysavvastraining.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myschool.edu.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myservices.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mystrength.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mytaratata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mytolino.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mytolino.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myvcc.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myworkplaceperks.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mzflirt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nacionale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nacua.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nada.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nafezly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakedbigdickmen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakedmaturepics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakedpussypics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakedpussyvideos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakib4tech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "name.am", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nanaya.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nanboya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nanomicron.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "napavalleyregister.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nashvilledowntown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nashvilleplasticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natera.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nationaltestingnetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natur-seele.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natwestgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natwestinternational.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nayapay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nbc26.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nbf.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nbx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ncalculators.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nccauto.gov.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ncchd.go.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nccpa.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nearnorthcustomsus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nederlandse-modelspoor-database.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nederlandwereldwijd.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neiu.edu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neo4j.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neopoly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neopoly.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neorsd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neosoft.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nerdmovieproductions.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nerja.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netdnstrace1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netdox.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netherite.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netherlandsworldwide.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netipbox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netwire-solutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netz-noe.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newenglandtek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newnorthfuels.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "news.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "news5cleveland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsadvance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsvirginian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newswav.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newzen.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nexgi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nexhealth.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nexiopaysandbox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nexiosandbox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nexiostaging.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nexon.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nextgenmath.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nextsource.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nftshowroom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ngsmedicare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nhg.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.bnpparibas", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.bo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicetits.pics", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicolas-feuillatte.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niedersachsen.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niemeyer.org.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nightskyalerts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niice.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niiu.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nikolab.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nikon-photocontest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nimblefins.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niu.edu.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "njsbf.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nla.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nmugroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nn-com.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noah-shop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noahs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noamweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noirmale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nolate.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nomadcasino.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nomadix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nonpareilonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nordformstore.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nordicway.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northcoastbrewing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northernlitescourier.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notebleue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notipress.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notube.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notube.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novaquark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novaya.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novaya.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novayagazeta.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novayagazeta.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novocarrobr.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nowzad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nprb.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nptelegraph.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nrchealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nsec.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ntinet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ntk-institute.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ntvtelugu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ntz.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nube.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nudegirlphotos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nudegirls.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nudetube.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "numbots.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nvio.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nwaafund.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nwtl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzbfinder.ws", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzbstars.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzhistory.govt.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzmca.org.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oaklandenrolls.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obandln.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ocarm.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oday.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oe-it.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ofa.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ofb.uz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "off-festival.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "offeo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "offers.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "offgamers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "official.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ofina.on.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oglebay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ojjdp.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okokorecepten.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oksystem.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ola.finance", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olamagri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olamgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olb.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olderwomanpics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oldspice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omaha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omal.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omart.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omaweetraad.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omnilert.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omstars.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "on3.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oncc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oneblinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onefamily.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onepotliving.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onet.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onetouchreveal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onex.bet", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onimaodonto.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "online-audio-converter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "online-video-cutter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "online-voice-recorder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinefabricstore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinehsa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinepokies.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinesellingexperiment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinesurveys.ac.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlineveilingmeester.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onohawaiianbbq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ontrip.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oot.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oparceirao.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opencagedata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opencartspecialist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opendsp.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openfin.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openfpcdn.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openhandhelds.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openintl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openmandriva.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openpowerfoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opensocial.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opensocietyuniversitynetwork.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "operationhomefront.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opiniterupdate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oppa888.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oppa888.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opteamax.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optionskredit.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optionskredit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oralb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ordremk.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oregonpasturenetwork.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ornc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ortecapps-dev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ortecbdp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ortecdna.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osb-alliance.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osun.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osvhub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "otonity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ottogroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ourfamilyworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ourtableforseven.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outbankapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outlooktransfer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ovc.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "overprint-samara.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ovstravel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oxfordandcambridgetutors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ozdevelopment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p-insurgence.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paanews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pacificblue.kiwi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "packetfabric.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pagiamtzis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pahe.win", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paho.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pakfactory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pakpedia.pk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pamukhaliyikama.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pancake.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pandasilk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pandavpnpro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pandys.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paniniamerica.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panmill.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panorays.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pantagraph.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "papaimama.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "papakarlotools.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "papelisimo.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "papersowl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "para-sports.tokyo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paramountbank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parceltrackr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parimatch-best.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parimatch-chance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parimatch-email.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parimatch-sport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parimatch-sports.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parimatch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parimatch.kz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parimatchtop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paripesa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paripesa.ng", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkable.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parokia.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paronubi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partir-en-livre.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partners1xbet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partners1xbit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partners1xslot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partners1xslots.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partnersbiz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partymat.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partywithunicorns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passiton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passportcorporate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pastetot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pasyta.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patterico.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paulromer.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pawp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pay2keep.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paydoor9.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paypointindia.co.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "payspace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "payvalida.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pbla.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pc.domains", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcnaid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pdamerica.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pdf.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pdihc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peacewiththewild.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pearson424.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peerberry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peerjs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peerviewpress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pelajaran.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pelikone.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "penelopia.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "penguin-stats.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "penguinrandomhousegrupoeditorial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pensiune-doina.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pentagrid.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pentestpartners.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pepechkova.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peregrinefund.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perfectpussypics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perfecttits.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "performive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "personetics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perspective-daily.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pestdefense.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peterkuma.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peterpiperpizza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petroleumservicecompany.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petsidi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pfashionmart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pfcardprogram.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pgp.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pgsupplier.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ph-ooe.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phatblackbooty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phdgames.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phishing.army", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phoenixmanga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "photobc.photos", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "photobrunobernard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "photovoltaik-reinigung.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phreesia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phtbth-upload.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pianoadventures.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pianoo.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pianotaku.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "picasoft.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piccolitrasporti.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pickastock.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "picpay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pig333.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pii-protect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pikaramagazine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pilseta24.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinkpussy.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinoydeal.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinspiration.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.com.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.com.py", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.com.uy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.ec", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pintrest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixel4k.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixinfo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planethowl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planning.center", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plate.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plathome.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "platinnetz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playgameoflife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plugshare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plumperthumbs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plurilock.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pluxml.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pm-22711.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pm.uz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pmc.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pmg.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "podnikatel.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poeditor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pointel.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pointfoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pointpur.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pojoksosmed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poki.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poki.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pol-members.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "politicsnigeria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "politik-kommunikation.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polspam.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ponytailsdesigns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "popmatters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porngals4.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porngameshub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornoplus.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornsticky.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornvideos.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portail-familles.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porterbuddy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portingkit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "postman.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poststar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pp.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ppcgeeks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ppcsesco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ppf.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ppld.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "praew.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prairienursery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prathambooks.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pravda-tv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prdctz.tips", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pre-commit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "preapps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "precisefuture.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "predictz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "premazon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prensarural.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "president.gov.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pressofatlanticcity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prestigia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pretome.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prettyporn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "previewfreemovies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prezentmarzen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "priceblink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "priceofbusiness.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pricepropharmacy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "primed.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "primitivesbykathy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "princessyachts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "principal.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "printable-map-az.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "printablemapaz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "printablemapforyou.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "printableschedule.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "printme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pro-c.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pro.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proacousticsusa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "probrewer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prof.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "profi.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "profilib.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "profilib.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "programminghomeworkhelp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proletaren.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prolikewoah.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "promecin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "promet.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "promolife.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "propertyrate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "propmark.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proscore-vr2006-1plc.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prostore.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "protected-forms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "protium.co.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prove.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "provide-vr2002-1plc.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "provide-vr2003-1plc.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psb4ukr.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psemc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pslgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychiatry-clinic.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pt1xbet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "public.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "publicdatafiles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "publichealthdegrees.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "publicwhip.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "publikum.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pueblocc.edu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pulkovo-cargo.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pulpitsupplypreachers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pulsenetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "punksway.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "punshjp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puntopropiedad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puppyfinder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pureleverage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purelovecoaching.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purelymail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purplehost.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "push-free.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pwddelhi.gov.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pxc-coding.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pycoders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qbstores.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qcc.gov.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qconline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qctimes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qssupplies.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quadernoapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qualescegliere.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qualitahub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qualitycesspool.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quanterix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quantfury.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quantiply.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quantum.st", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quebec.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quebecsolidaire.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "queer.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "r-e-a.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "r-rehab.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "r-rehab.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "racco.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radaar.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radarfirst.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radbag.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radbag.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radio-online.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radioonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiusone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rafinad.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rainbowtransport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rainfall.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raj.nic.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rajapack.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ramfy.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ramusa.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "randoxhealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rapidcityjournal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rapidessay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rapidspike.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rarediseaseday.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rarlabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rarsoft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rasa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rasnyder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ratatosk.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ratespy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rathsallaghhouseonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ravallirepublic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ravelin.click", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rayusradiology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rbcosmetici.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rbsinternational.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rcbconlinebanking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdn-team.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "readingoutpost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "readyclassroomcentral.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realestatebees.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realestates.istanbul", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realityjunkies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realmjoin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realonline.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realtimeregister.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rebargroup.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rebrandly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rebusfarm.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reckers-griesbach.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redcontralarepresion.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redefiningstrength.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redstarline.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redwoodtoxicology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reebelo.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reebelo.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "refer.nhs.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "referenceur.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "referrer.website", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reflectoring.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "refreshmentshop.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "register.com.np", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reichelt.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "relatedgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "relayto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "releasedate.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reliabilityweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reliant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "relines.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "relojes-especiales.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remarkmart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remicade.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "renate-lietz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rentberry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rentcafe.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "repairlinkshop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "repeat.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "represent.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "republica.gt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "researchresults.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reservevaparks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "residency-bond.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resist.bot", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "responsible.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "restaurants.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resumecompanion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resumegenius.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resumegets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resumenlatinoamericano.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retrohousewifegoesgreen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revintake.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reviveourhearts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revoka.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rewebsitepro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rewirenewsgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rexo.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reyesholdings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rhbrown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rhelevate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rialtocapital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richard-fath.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richmix.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rietveldacademie.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rightthingrecruit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rinoartdistrict.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rlcosmeticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rmconsulting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rmsisrs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roadtripnation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roanoke.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robertcspies.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rochesterymca.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ronc.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rootsweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosebikes.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosebikes.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rossignoli.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rossstores.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rothco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rottal-inn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rottnestexpress.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roughnotes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roullier.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roundandbrown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royalgrandpalace.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royalpanda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rtarabic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rtcyber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rtde.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rtde.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rtde.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rtde.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rtde.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rtde.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rtde.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rtpa.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rttechlaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rubenshuis.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rubix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruileitao.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "runalyze.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "runrun.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rush49.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruvoip.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rwlib.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ryobitools.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s0t.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sachiepvien.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sacscoc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safeplayground.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safewayins.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safewayinsurance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saggytitsporn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sahabatnesia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saieditor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sakipsabancimuzesi.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salaryfinance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salempress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salon-legato.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salonist.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saltandlight.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salwyrr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samclarke.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samorzad.gov.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sana-commerce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sandersonfarms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sandragortemaker.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sansumclinic.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sapling.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sapphic.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sapphirebet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarkariresultz.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saschabruemmer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "satwcomic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sauber-lab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saubermacher.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saudiembassy.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "savesubs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "savoryandpartners.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saybrus.partners", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sayingimages.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sbli.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sc2labs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scandiweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scbodner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schaerding-innovativ.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schefer-mietstapler.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schlepaz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scholding.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schooldismissalmanager.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schuhwelt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schwiha.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scienceeurope.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sciencetoymaker.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scml.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scnow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scotiabank.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scottymiller.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scoure.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scoutingmeerhoven.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scrabblecheat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "screentimelabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seancody.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seancodynetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "searacon.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "searchbyimages.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "searchengines.guru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seark.edu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seat61.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seats.aero", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sebio.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sec-consult.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secondmeasure.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secretarypics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secretenergy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secunm.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secureauth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secured-login.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "segm.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "segmentnext.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seiffen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "selectagents.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "selfpublishingformula.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sellerengine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sellersfunding.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sellerssignals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "semantic-systems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "send2sign.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendai-recruit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendmail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendsonar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendy.land", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sensepost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sensoscientific.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seo40.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seohost.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seolik.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seoplus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serasaexperian.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serc.ac.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servicioskoinonia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servingseniors.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexastr.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexawynet.cam", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexgirlfriend.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexlipetsk.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexokiev.love", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexokolomna.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexolipetsk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexspb.love", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sextubespot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexyporn.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexyteens.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sfondo.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sgdi.gov.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shadowsocks.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shadowsocks.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shaffermixers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sharethemeal.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shavedpics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shavedpussy.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shavedpussypics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shelf-ssp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shemaleflick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shemalehub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shemaleplus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shewillcheat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shibashake.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shineads.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shipmondo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shippingyourworld.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shippingyourworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shophumm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shophumm.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shopsmarter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shoreyit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "showme.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sidhbalibaba.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siffron.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sigep.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "signwell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sigsync.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silvergatebank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silvergatebank.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silverspringdowntown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplifiedlaws.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplix.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplychocolate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sinpermiso.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siouxcityjournal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirbio.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sisoftware.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "site-dns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sitek.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sitepokupok.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sitgesfilmfestival.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sk-ii.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skatefilms.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skeetads.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skepp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ski-planet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skidkimira.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skiftet.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skilldnsproc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skillonnet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skillsoftcompliance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skinlords.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skintdad.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skisportdain.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skooli.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skybridge.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skye.vg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skymail.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyoceanblue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skypicker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sladkiiflirt.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slaek.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slbetx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sledwyoming.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sleepcouncil.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slo.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slodkiflirt.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slotsup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smallfarmersjournal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartbear.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartlooks.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartnews-smri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartoneclub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smeweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smiledoctors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smileeye.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smstec.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smtnet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smutfactor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snackbyincome.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "socialcare.wales", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "socialmatch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "socprime.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soelt.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soff.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "softhints.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "softnet-consulting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sogo.com.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sol.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solcom.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solsea.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solunet.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solweb.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sompo-intl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sonraisecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sophus.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sorted.org.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sos.xxx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soulnatura.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soundar.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sounds-resource.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soychile.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spacecityweather.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spacelift.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spacomic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spaink.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spar-ics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spar.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spar.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spar.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spar.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spatialflunky.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spconsult.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speedexam.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spincity-casino.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spins.city", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spinscity-casino.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spinscity.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spinscity.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spinscity.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spinscity777.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spirent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "splex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spokeoaffiliates.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportalliance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportihome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spotifycodes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spravochnick.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "springgrillhouse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sprizzy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sproutstudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squadco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squarecdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ssatpa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sst.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "standard-wohnungsbaukredit.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "standard-wohnungsbaukredit.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "standardnotes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stape.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starexponent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starherald.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starline.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startplaying.games", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "statfluence.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stats-mailtracker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "statuscast.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stcc.edu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stealthseminar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steamcardexchange.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steinhartwatches.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stelzl.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stepyz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stereo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stgy.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stirringphoto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stitchlabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stockholm.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stockilluminati.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stocks-adviser.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stockx.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stodlinjen.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stopklamstwom.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storistalker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storytellingsales.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stotranidhi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strategicmanagementinsight.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strategy.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stratekispiel.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strawberryplants.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "streamsoft.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "streetartcities.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strippersinthehoodxxx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strong-iptv.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strongblock.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strongencryption.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strophicmusic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studentquickpay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "students4sports.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studio-one.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studyhacker.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sturents.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stwcreation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stylight.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stylight.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stylight.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stylight.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "successrice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sucro.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sudeleycastle.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sueletricidade.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sugarfans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suite360sel.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suitecrm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sumill.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "summa.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sumzero.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sup-net.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superb.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superiorvision.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supplyoutlook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supportlafd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suttonbank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suvalor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suzuki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suzukicycles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svc-tools.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svendgram.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svgwg.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svkpk.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swacu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swapfiets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swapfiets.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swapfiets.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swappa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swapspace.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sweetamoris.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swgoh4.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swhi.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swimlane.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swissbit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "switch2osm.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swopre-appgallop.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swvatoday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syd.catholic.edu.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "symbility.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syncrony.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syndigo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "synoptek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "synthax.codes", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syscap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syscom.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "systemhaus.saarland", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "systeminformer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "t2informatik.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "t2tea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ta-server.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tablascreek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tablethotels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taburetka.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tactus.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tagcorp.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "take-a-screenshot.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "takenote.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "takipavm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "takkyu-navi.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talkischeap.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tamgaturk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tamilfunda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tamilglitz.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tampabayhistorycenter.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tandemtransport.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tangerangkota.go.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tanglepatterns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taodung.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tarcode.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tastyplacement.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taxandor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taxassist.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taylorandfrancis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tblnk.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tbwa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tcglobal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tcr-ees.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tcrecord.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teacherpics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teachnowprogram.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamasea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamcg.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teampassword.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamphotonetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teatrebarcelona.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technicus.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techshout.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techsoup.net.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techtolia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techwin.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tecnoboxchile.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tecnoempleo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tecsar.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teenslikeitbig.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teh1xbet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teko.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teldap.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tele2vaxel.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telecharger-videos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telezon.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telhai.ac.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tendanceouest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tenderned.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tentinger.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teoassessoria.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tep.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teramundi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "termius.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terracycle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terumomedical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tesorion.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testgroup.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testplant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testprepinsight.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teufel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teufelaudio.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "texkings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "textus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tfaforms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tfyre.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thailande-fr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "the-brandidentity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "the-crypto-syllabus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "the-ear.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "the-tech-trend.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theatrefolk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebetterfit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebhc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theblogstarter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thechaikinreport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thechinaguide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecleverhost.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theclockdepot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecloroxcompany.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecookiewriter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecup.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecyberwire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thedemocraticstrategist.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theeagle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theeducatoronline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefasthire.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefatduck.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefoxmagazine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefranklinnewspost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefulcrum.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thegoodinside.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thegpbox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thegradient.pub", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thehudsonindependent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theindependent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thelawyermag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "themacateam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "themediaframe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "themilfmovies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "themortgagereports.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theodorojr.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theoldschoolgamevault.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thepaperstore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theplumtreeapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thepopcornfactory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theqrl.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theqtree.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thermostatsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "therobertcoffeeshow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theros.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "therowlinglibrary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thesafetymag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thesecularparent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thetandd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theurbandecor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thewolseley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thibierge-associes.notaires.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thickassporn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thinkingfaith.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thishousedoesnotexist.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thorborg.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "threema.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thriva.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thrivetracker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ths.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thtcmaps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thuiswinkel.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thumbzilla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thw-messenger.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiarap.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tibc.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tible.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ticketsolve.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ticktbox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tie.pub", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tigerconnect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tightassanal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tightpussysex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiki.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tikkio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tilvids.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tim.org.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timesofmalta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinevogel.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiptop.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiremart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tivit-chill.partners", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tlercher.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tlmicorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tmcrew.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tmj4.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tn.nic.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "todamateria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "togetherprice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tokenizedhq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tokyo-co2down.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tonaton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top-super-60.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top1health.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topagrar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topbuild.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topesdegama.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topfreeporn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topmachstudios.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topofart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toppsnfts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topworkplaces.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toshl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "totalenergies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "totalenergies.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "totalenergies.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tote.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "totheweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "totolink.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tourmaster.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tourshopfresno.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "townnews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tpgozd.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tradesecretslaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tradition.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traintoday.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trannysurprise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trans.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transangels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transfair.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transgaz.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transitllc.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transwestern.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transwestern.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tratt.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelfusion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelinsured.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelodge.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traws.cymru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "treasureboxgreetings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "treasury.gov.lk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "treecycle.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "treesonthemove.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trendingnewswala.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tridentfreightinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tripleblossom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "triumph-gera.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "triumph-hannover.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "triumph-rheinhessen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "triumph-stuttgart.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trocaire.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tropicalhurricanetracker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trovas.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trove.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truckspring.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trueccu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsb.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsbg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsimg.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ttrecms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tubemilf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tubeporn.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tucson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tulsaworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tumanishvili.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuotromedico.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuppennysfireplace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turbineaero.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turbodata.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turbodata.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turkanime.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turnto23.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tus.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuxcare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuxphones.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tv9gujarati.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twistysnetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twoseven.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twr.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tycaa.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tyk.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tyrocity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ua-1x-bet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ua1xbet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uafinance.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ufh.com.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uglypeople.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ui.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ujam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ukosystudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ukrainci.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ultahost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ultalabtests.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ultimatecheerleaders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "umbria.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "umojo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unbelievaboat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "underconsideration.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unhabitat.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unideb.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unilab.com.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unimus.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unitedaviate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unither.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unitil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unlocator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unpar.ac.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "up.nic.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "updata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upplands-bro.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uprep.lol", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uquidcoin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urban-nation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urbansketchers.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ureed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urlcitrus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ursulahadasch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usaherald.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usanamiru.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usavingsbank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usdirectory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usenetreviewz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usgamesinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usmoneyreserve.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ussfcu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utagawavtt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utec.edu.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utp.edu.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uwtd.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ux.pub", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uz1xbet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uznaychtotakoe.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uzoic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uzparimatch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "v2xtls.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vacaturesonline.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vakanser.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valimail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vallen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "values.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vamoscurarsintra.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vancouverok.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vanier.gc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vapoo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vassalengine.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vbl.co.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vcot.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ve-1xbet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vector.express", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vedom.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veethi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veeva.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veganz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vehiclehistory.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ventasreit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "venture.biz.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verdonkadvocaten.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verge-solutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vergehealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verkami.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verlocke.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veros.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "versanthealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vertex-academy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verve.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "very-good.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veteranscrisisline.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vfnm.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vhg.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viadennis.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viaon.net.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viba-sweets.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vico.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "victoryoutreach.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "video-converter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "videogamers.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "videosporno.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vieon.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vietnamphotographer.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viewfreescore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viewstub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vikiwat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viload.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "violapiekut.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viral-loops.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virgilsecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virima.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visionamp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visionunit.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visitazores.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visitnewcastle.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visitstegen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visomdm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitalchoice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitanetonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitay.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivat.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viverse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivimasverde.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vjshop.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vogue.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voicemaker.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voicenation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voitolla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volt.fm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vort-x.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voxio.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voyainvestments.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vr-payment.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vr-re-bank.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vr-realestate.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vrbangers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vrconk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vrcosplayx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vrimmoexpress.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vrre.ag", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vsee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vtexpayments.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vulkan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vulkano-online-casino.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vuse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vvvzeeland.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vwforum.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vwfsfcp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vycius.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "w2w.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wacotrib.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wahoo-ashland-waverly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "walkfree.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wall-of-death.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wallix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wallpapertag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wamsi.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "washabich.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "water-for-africa.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wave-cockpit.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waybinary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wbtenders.gov.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wcpo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wealthprofessional.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weareher.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weatherguard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-dev-qa-db-ja.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webadmit.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webanalysissolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webcamera.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webcrial.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webemployed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webfrenz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webhostingempresas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webhostingmedia.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webhostsg.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webhotel24.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webpark.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webprom.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "website999.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weddingdressesguide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wedinspire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wefloridafinancial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wellington.govt.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wendys-careers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "werkzoeken.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westeremden.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westernresourceadvocates.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westlandinsurance.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westvancouver.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wetpussyporn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whatcanyoudocampaign.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wheely.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whenisholiday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whentowork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wheon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wherearethosemorgans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wheresthejump.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whistleblowers.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whois.az", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wholesalediscountsunglasses.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wifesbank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wifi-ooe.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiki.gallery", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikifunctions.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikihow-fun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikihow.health", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wilsonlanguage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wimbledon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wind.com.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "windowsblogitalia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "windowsviet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "windr.win", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "windrawwin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wine.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winl-45774.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winterthur.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wirebank.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiredrelease.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wirelessfestival.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wisebarber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wishing3.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "withjoy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "witron.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiut.uz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wkbw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wmar2news.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wodemo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woffu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wohnberatung-wien.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wolfstreet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "womenridersnow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "womfs.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woodstone.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worcestercu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wordfast.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wordunscrambler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workona.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workzly.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldjusticeproject.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldlandtrust.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldtattooevents.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wormhole.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wowa.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wowchemy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wptv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wrallp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wrap.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wrighthassall.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wrm.sr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wrtv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wrytin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wtkr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wtmarketing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wtvr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wvdnr.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wws.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "www.gub.uy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wwwebdesignstudios.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wxyz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wyspa.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "x90.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xauzit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xbet104.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xboxdynasty.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xillimite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xl-porn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn-----6kcamlijegc9ea1aw4ivc.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn----8sbdo7cb0b.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn----htbhdmyci.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80aayajj8aic.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80afvgfgb0aa.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80ajuk.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80apbaibrczvs.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--9iqy04a7fi01l.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--d1afcjuch.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--h1aaahdlb4aki4h.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--photovoltaik-berwachung-opc.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--q2y08clzag4u.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xnxxporns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xoutpost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xstorysnap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtorm.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xxlpen.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xxxtophd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yalla-kora.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yang1963.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yanisvaroufakis.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yapaytech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yappy.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yay.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ybr.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ybrfrance.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yello.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yespornplease.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yhclinic.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yongkang-clinic.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yonja.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yoopies.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yopmail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yorkcountyschools.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yorktest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourbenefitsresources.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourhrworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youthpassageways.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youthpolicy.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yuhaoskin.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yulsn.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yuumari.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zackzack.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zad-academy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zakratheme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zammad.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zapproved.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zavedeno.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zcb.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zecible.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeldamods.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zenbox.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zenvia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zerohash.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zestedesavoir.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhongzilou.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ziddea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zingermans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zl.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "znanio.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zniis.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zodgame.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zoomerhost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zorgverzekeringslijn.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zorro.management", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zotum.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ztv.su", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zwickau.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zwit.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zzzmode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0wx.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1-800-mattress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1001telecommandes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1024.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "12apostleshotel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1800matress.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1800mattress.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1800mattress.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1onestrong.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.com.na", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.hn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet.sn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet105.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbet84.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xmobi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "23andme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "23andme.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "247maturesex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2daysmood.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2daysmood.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2daysmood.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2daysmood.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3dmili.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "401ksite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4filtre.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4server.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "50firstavenue.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "777mage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7kvadratov.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7net.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7networking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "800mattress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "888starz.bet", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "9417k.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a4.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ab-uk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutadhd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abpages.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abrolhosoctopus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accesspress.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acg.ac", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "achl.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acingov.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "activexperts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adagia.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adamkissee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adbglobal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adeexaustralia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adelaidamountainresidences.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adelaidefestivalsquare.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adelphiawines.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adihomes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adjustablebeds.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adoperator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advaith.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aere.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aerofarms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affect3dstore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aglar.com.ec", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agorapulse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agrifutures.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ahoeheng.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ahomeconcept.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ahosamuel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aidoc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aina.moi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aiot.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ajansmanisa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akko.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akrasa.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "al-wood.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alan-turnbull.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "albi-tourisme.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alenvlahovljak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexblanck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alfred.co.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aliel.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alittledelightful.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allaboutyouspa.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alliancebank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allianceblock.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allianzdirect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alloldpics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amac.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amateur.cash", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amordoce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amrealtypr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anacron.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "analogman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "analpics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ancuong.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andreichira.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andreihodorog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ankaraarabakiralama.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ankaracikma.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ankaracikmaparca.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ankarafiziktedavimerkezi.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ankarajeneratorkiralama.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ankaraotocikmaparca.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ankaraotomobilcikmaparca.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ankaraotomobilyedekparca.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ankarayedek.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antagning-vn.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antalyaduvarkagidi.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anthes.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anytimefitness.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aosc.kz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apem.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apiculture.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apollointeractive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appinplace.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appinvalley.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appsbd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aquastudios.games", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "archistart.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "argonmail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arielhr.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arkutinofamilyresort.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arrangeme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "array.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arsmundi.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artclasscontent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artex.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asbaces.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asbweb.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asc.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ascirno.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ashfordcastle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asiantube.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aspi.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asri.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "assignments4u.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astrologics.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asufte.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "athleticstore.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ativaplayfitness.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlasbridge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlasescorts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atrexservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ats.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autoauctionsarizona.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autosoftdms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aze.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azehosting.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "backtobed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balcaonet.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bandhanbank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "banes.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barbershopbabo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barkerandstonehouse.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barnacional.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barnflix.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bart-f.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "batacas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "batelco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baterias.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baufi-express.ag", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baufi-express.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baufiexpress.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baufiexpress.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baufiexpress.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bbsis.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bcbsfepvision.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bcdn.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bdeep.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bdpn.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beautyboxes.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beddingexperts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bedinfo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beeone.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benjamin-thomsen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benq.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benu.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benunapredpis.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berakal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berekenhet.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "besteckliste.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestmattressabout.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betahyp.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betsfortoday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betterbedding.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betwinner-india.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betwinner2.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bf2statistics.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bfbs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bia3consultores.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biblereadlist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biddr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bidoluindirim.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigasstubes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigboobporn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billetto.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bimedis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "binds.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bioarc.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biodieselpumps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bioinfo-diag.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biosupplyalliance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "birdwatchireland.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "birthdaybuzz.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bisnismuda.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitbotster.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bittentechsolutions.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bizcalcs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bk-art.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackisbetter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blacktube.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackwaterlounge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackwoodseventcenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blagomed.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blavandbike.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blavandbike.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blitz-idee24.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blsgermanyvisa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluecrossmn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blur.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blutspende.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bmsupermercados.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bnpparibas.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bnpparibas.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bob.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bobcat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bollervilla.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bondvigilantes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "booksy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boomingofthings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boop.icu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "botanischkunstenaarsnederland.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boxclub-marburg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brainbashers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brcshipsupply.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brevent.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brianleejackson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brightmachines.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brightvalley.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "britannia.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brokenrevolution.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bromonetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brookz.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brubaker.ac", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brubaker.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brubakerairconditioningrepair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bruitparif.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brukalai.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsale.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsd-unix.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "builtinvacuum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burghardt-neumann.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "businesscloud.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "but-its-not-your.business", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buy-express-vpn.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buy-invertor.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buypersonalproxy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bwigroup.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "by-g.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "by-the-sword.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c19early.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c19ivm.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caknowledge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calculator.aws", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calvaryhospital.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canadiansinternet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cancer.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cannabisdiscounter.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cannabishouseyeg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canva-staging.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canyonisd.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cap75.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "capetown.travel", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "capitolnational.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carauctionsnewyork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carbeso.co.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carbgrent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carbonmapper.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cards4jobs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "careersinpsychology.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caribank.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartridge.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carunion.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casacapalbio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casacolosseo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cashbacksummit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cashwave.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "castit.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caw.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cbd-world-online.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cca.ky", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccautomobil.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdg30.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdgitalia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ceiexam.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centurionlaboratories.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "certsign.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cfbenchmarks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cfnmpics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cgmllc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chalonsenchampagne.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "changing-cities.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charlesperkinsacademy.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chatify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chatphp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chaveirogrimaldi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheapandbesthosting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checkmk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checknetworks.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chelseagroton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chesterfieldmayfair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chg.codes", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "childrensheartfoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chippewa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ciceron.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ciftkabincikmaparca.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ciftkabinyedekparca.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cins.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cio-spirit.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citiswich.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citto.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cityapparels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cityseeker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cityspin.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cleared.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "client.photos", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloversonoma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cm-funchal.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cmsonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cnslub.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cobiz.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codecatalyst.aws", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codigosddd.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coffee-like.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coinpedia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coinplay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collinssquare.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "combloux.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comediant.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comfandivirtual.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conectens.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "connexio.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "connor.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "convertire-documenti.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cookielaw.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cookingandme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "copadata.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "copurhoca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corporategift.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cotennis.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coverage-db.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coyote105.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cpeip.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "craftwarehouse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cratexcalgary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crazynetwork.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creativemarket.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creekie.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crimewatchpa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "critiquejeu.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crti.dz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crucial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crucial.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crucial.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crucial.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crucial.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crucial.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptofacilities.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptomining.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptopuppers.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptowat.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csub.edu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csvlombardia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cufoon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "culturaldistrict.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cutaneon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyesec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "d-uhlig.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daffodilusa.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dailydoze.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dailywealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "damanlu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "damnmodz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danalpay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danbolig.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dannon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danone.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dartagnan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dataproject.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datarobot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dattelking.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dature.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidcrousehouse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidlouisedelman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidmgarvin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davosalestax.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dawnzine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dblsuretybonds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dda.gov.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deathclub.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deboo.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dekordiyon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delamoreretirement.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delfi.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delhi.edu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delivery.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deltacity.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dentalqore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dentalqoretemp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "designforchangetaiwan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deuxfleurs.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dghyp-press.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dic.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diecieventi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diekleinekartenfabrik.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digimind-evolution.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digisfil.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalmove.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalzylinder-shop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digsys.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dingeldein-messtechnik.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "directright.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "divihosting.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "divinefeminineyoga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dixeo.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dlevans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnadk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnsscience.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doctaforum-diferidos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "docupub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dodotool.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dojah.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domainlions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donnahay.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donpi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dopei.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dopeillustrators.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doveconviene.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "downtownboise.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "downtownmesa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dpc-software.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dpoairport.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dpoairport.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drk-blutspende.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drt.org.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ds-networks.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ds-networks.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dse.com.bd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dubaiaerospace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dubairun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dubex.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dublinseocompany.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dukes.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dyn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eaa-online.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "earni.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eauxdevienne.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebscomedical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecobunker.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecobunkerusa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecologistasenaccion.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecommercedb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "economia.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edikacomptabilite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "editus.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edufever.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eeagrants.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "een.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "efeindonesia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "egt-digital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ehlers-net.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ehr.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eifach.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "einsteinbros.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "einstokbeer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eis.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elections.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electriccoin.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elegantanal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "element.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elliman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elos.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elvisvrconnect.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emarhotel.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "embawood.az", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emmaowl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emmerdale.me.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emotionsanonymous.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emplifi.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emporiumbeverages.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "endener.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "engelorchester.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enkrypt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "entdeckertouren.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enthrallinggumption.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "entreterse.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ephemia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erkeklersoruyor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erpcloud.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erste-hilfe-sbh.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esc18.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esemtia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eso-skillfactory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esports-betting.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esswp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethansailant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethiqueadvisory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "europa-passage.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eventnature.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evisos.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evokeearlylearning.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evz.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exceldatapro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exploretock.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expressdebanat.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "extremeleadprogram.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eyoo.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "f-centre.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabricio.adv.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabrik.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabrika-jaluzi.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabrinet.co.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "facchinetti.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faelix.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "falconi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "falsepattern.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "familysinners.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fan-sport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "farmbureauinsurance-mi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "farmtogether.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fasqu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fastblob.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "favro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "favrotest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fcht.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fdj.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feribotlines.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "festivalplaza.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "festivaltower.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fianoromano.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fiddle.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fidelityhomestead.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filantropikum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filesharingshop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filmpornofrancais.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fin-ware.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "findoutlyrics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finfowe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finmozg.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "first-wishes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstcitizensbank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstimpressionsecuritydoors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstlab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstup.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fitnessvolt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fitpass.co.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fixpart.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fladnag.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flagma.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flippers-leuven.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flixone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flmedicaidmanagedcare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "florp.social", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flowstateyoga.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flygplanering.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fmslovakia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fondation-afnic.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fondzee.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fool.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forest-cl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forestsprings.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forgemedia.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "formation-russe-paris.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forumcondominio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forward.lc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fpjscdn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framer.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "franchiseportal.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freepornpics.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freepro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frequence-turf.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fruitjuicetab.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fruitsfromchile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fueko.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fulisex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fullhouseresorts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fundwave.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furaffrate.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futhark24.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futhark24.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futhark24.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gadgetsgigabytesandgoodwill.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galaxyofebooks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galerie-com.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gambarian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "games-rt.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamesandcasino.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garageportcenter.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garnuch-immo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gastrocenter.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gayhotmovies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gcoption.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gear4music.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gear4music.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geneawiki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "generaltitlewebui-stage.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "generator-energy.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geocaching.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geomancy.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "george.id.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getaldea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getcabal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getlaminas.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gfleaks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gfrevenge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giopiu.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "girlboss.ceo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glamadelaide.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glass-blaster.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glassicasino.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "global-wire.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalimmigrationvisa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glsauto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gm5.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gmimarkets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gmtm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "godisgreat.africa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gohyer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gokgids.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldstein.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gonoodle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goodshuffle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gormanprojects.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gorodrabot.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graceharborapps.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grachten.museum", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graniteescrow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grannytitty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "granulate.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grapheneos.social", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greaterzion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "green.com.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greenopedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greysolonballroom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "groupouts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grovecrypto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grupoice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guitarristas.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gutscheinpony.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gyertyalang.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hahn-trafo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hall1c.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hamibot.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hamptonandrhodes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "handpresso.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "handsender-express.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happytugs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haqrpatrol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haverford.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hd-olimpo.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdbooty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthleadsusa.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthybeauty365bn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthyrecipes101.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heartymail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heliport-moscow.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hellorory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hellraid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hemanklerehab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hepworthwakefield.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "her-life.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herp.careers", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hif.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiphopdates.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hispashare.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hispasonic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hj.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hl8id.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homeserve.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homyhomee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "honeycrypt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hornwiesen-grundschule.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hornybank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoshi-sr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelkeihan.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotmoviesforher.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotsex.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "housingauctions.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howtomanagedevices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hpruehl.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hravatar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hrcdn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hrreporter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huangban.org.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huddlecamhd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hugotech.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humantouchmassagechairs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huntflow.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icebike.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iddaatahmin11.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idealmilf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idroot.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iffk.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igrun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ihe-europe.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ii-vi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iknowthatgirl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilgisaglik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilionsky.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immoaval.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immobilo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immospezial.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imobiliariamax.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impactovenezuela.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imprentamanonelles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inchargeus.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "india-export.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indiaexport.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indiapost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indiavotekar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inetworking.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infosysco.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "injerry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inlink.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "innovasistemas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inparkmagazine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insightsoftware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inspirationalstories.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insulectro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intellego.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intercomp.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interlogos.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intersolute.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intervalzero.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "invertiaweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "investingoutlook.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "investorplace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inwebo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inwepo.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipadizate.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipon.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipv4.party", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iqor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irishwool.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "is-rocket.science", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isacybersecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "istekparcam.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "italianpillow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itpedia.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itviec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iwant-sex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jaipurescortagency.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janime.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jao-collection.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jegkorongszovetseg.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jgmenterprises.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jimkanabar.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jinhaagency.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jinhaagency1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joinentre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jonshelton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joostdeheer.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "journey.study", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juicydesigns.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "junksleep.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juragantembakau.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "just.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justcams.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juul-iversen.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kampfsportschule-einherjar.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaufleute-sbh.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kayne.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kb-psy.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kckarchitects.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keaipublishing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keepersecurity.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keithmcmillen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kelio.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kenduct.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keukenhof.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kevinbardot.alwaysdata.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kidney.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinde.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kindernothilfe.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinecenter.ec", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kipa.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kirchner.social", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kirstengillibrand.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiteschoolofkenpo.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kkforwarding.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klavierhaus-klavins.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kmecnc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knzb.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kobietoid.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kokomoprivateisland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kokomoresorts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kondi-flex.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kondi-save.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "korsordsvar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kotobuki-healing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krachbumm.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kraken.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kreiglaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kruchheartbeatdev.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ksiegowosc.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ku-niederwinkling.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kubit.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kubit.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kubit.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kungsangsgymnasiet.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kupujemprodajem.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kusunokitomori.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kvalhe.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kvs-demo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kvsplayer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kylegough.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lablue.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lafattoriabiologica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lakesviewrobina.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lampandlight.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lampeetlumiere.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lampyiswiatlo.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lan-x.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landoftile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "languagesandnumbers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lanzarote.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lapublicpress.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "latexmattress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "latinoguysporn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "launchindonesia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lauradavis.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawnandordercs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "le-tempo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leasing.sos.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lebenshilfe-hannover.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legginsypolskie.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lemieuxproducts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lendme.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lenstore.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leomax.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lessonsofacto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libcal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liberal.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "librarika.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "library.nhs.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightrun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lijie.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lile.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lillywhitehotelgroup.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lim.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linkurious.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "literoticavod.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ljekarne-plantak.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "localnode.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lodestarss.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loginsecure.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logosnet.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loonbedrijfwierda.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lostbubblegame.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "louest.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovi.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lustgarten.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lyfepyle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lynxbroker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lz.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m2designer.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mabasketdesecurite.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maddie.gay", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madisonmobilenotary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mahalux.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mai.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mainzbiomed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "majalahka.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "makellos-kosmetik.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malinmethod.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mallhabana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manitoulinglobalforwarding.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manitoulinlogistics.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manitoulintransport.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manmatters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manual-pdf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manzanagroup.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mareforfa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marinadarje.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mastodon.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "materassicatania.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matosinfo.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattres.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattressdiscounters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattressfirm.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattressfundraiser.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mature-orgasm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matureladiespics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maturepornpics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maturexthumbs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxaro.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxihyp.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mbw.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mccinc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mclast.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcmind.ddns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mdwedding168.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meao.pictures", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meazurelearning.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mebelok.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medfind.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediamora.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medicasa-gmbh.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megasesso.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meifacil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meinungsplatz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mel-bet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melbet.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melody.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "men.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meowstodon.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metallbau-gehr.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meteobox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mfactory.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mgf.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miccgolf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "micon.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "middelstaedt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "middleeasy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "midwestinjurylawyers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mifacturabolivia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-aaenhunze.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-almere.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-amersfoort.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-boekel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-coevorden.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-enschede.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-goirle.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-groningen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-harderwijk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-helmond.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-hilvarenbeek.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-kerkrade.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-leiden.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-losser.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-molenlanden.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-oisterwijk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-oosterhout.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-rijssen-holten.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-s-hertogenbosch.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-staphorst.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-steenbergen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-tynaarlo.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-utrecht.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-waadhoeke.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-westerwolde.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-wierden.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-woensdrecht.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-zundert.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikunosworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milagrotequila.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milestonehotel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milfedin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milfgalleries.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milfporn.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milomedia.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ministeriodeeducacion.gob.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minorice.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mintea.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mishamayfairart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mit-sexchat-geld-verdienen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mjpromotions.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobiotics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modacompleta.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modasexy.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "models-resource.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modusit.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moesborg.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mofo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "molise.store", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mom.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moma.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "momslickteens.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monasteriumlab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monikadesign.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monstercurves.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "montagnainitalia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "montaguehotel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mooivoet.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moonsalutations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moosic.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mosquito-sklep.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motability.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motorcitycasino.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "movavi.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "movetonewcastle.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "movieredeem.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mp3.tj", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mpfa.org.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mr-7.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrfactors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrhost.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrux.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrux.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msedkiewicz.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msgs.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msig-thai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mstdn.party", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msu.edu.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mte-online.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtkhs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtz-clinical.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muhtesemsozler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multiplex-rc.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "murrsuit.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "murrsuit.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "murrsuit.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mwu.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myafweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myalumil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mydedicatedservice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myigetit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myip.solutions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myld.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mymcc.gift", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myriad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrxplans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nac.gov.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nada.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nafco-online.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naijapower.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakedwomenpics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nast.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nationalgangcenter.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naturedao.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naucountry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ncrpay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ndeb-bned.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nearnorthcustoms.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nearnorthcustoms.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nearnorthus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neglected.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neilrooney.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nelnet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neoverify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "net-service.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netcoresmartech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nethorizon.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netpatient.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "networklessons.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neuralink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nevers.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "new-1xbet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newlondonhospital.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nex.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nexiopay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nf-tel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nft-dagasi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicepussypics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicholasjohnson.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nien.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nikkei225jp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nma.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noc.best", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nogluten.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "normalinlinden.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nosmoke.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nostar.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notisphererecalls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novashare.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noviny.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novumnet.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novychas.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nrw-stiftung-magazin.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nsbih.ba", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nuclearmed.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nul20.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nutroeffect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nya.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nyaan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nyaan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nyadisk.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "o365info.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oaaa.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obezma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "objectivefoodie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oen.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "offtheshelf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olevoitalia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omegleporn.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onefestivaltower.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onefestivaltower.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onets.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlifehealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "only3x.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ontariopropertybuyers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opcoes.net.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openinsieme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opinie.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optalysys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optymyze.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orangetown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orchidinsurance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oregonstudentaid.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ortechealthtest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osbygymnasium.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osuszanie-prinz.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "othercdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ouropal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ovegi.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oysterboxhotel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oyundijital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ozcare.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p1-test.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pandavpn.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panwchi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paramountdigitalcopy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pari-match.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parimatch.co.tz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkeer.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkeerserviceboxtel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parksi.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parquestejo.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parthuisot.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partsworld.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passgator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patchassociates.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pathfinderbank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcfunder.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcminsk.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pedohunters.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peervoice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "penes.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "penguin-stats.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "penrose.edu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peoplecert.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pepix.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petsru.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pfefferle.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philasd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philipoff.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pidu.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pigdetector.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piifunder.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piifunder.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinkpussypics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinxporn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plausibility.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "play-asia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "play595.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plusfitness.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plusport-api.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pnggrid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "po-italy.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "podcreative.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "podologyclinic.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polyglot.com.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ponteggi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "popolini.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "popularbusinessplatform.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porncomix69.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornobilder.pics", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portal.fo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "postfactum.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poupaeganha.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prana-coachings.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "praxis-fickenscher.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "praxis-kjpt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "predator-league.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "premier-dream.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "premiumkeystore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prenatal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prima-digitalkameras.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prima-fernseher.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prima-webcams.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "primary.health", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "primasmartwatches.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pritti-wummen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prochainephase.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "progroep.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prosperoarts.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prozhedownload.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prudential.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psionlinestore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psydprograms.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ptcorporategifts.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pubkgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "publicagent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "publicnode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pulvislab.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purefarminggame.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pureliferx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pvebuilds.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pzz.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qatesol.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qicoder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qisda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quackapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qualitysistemas.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quantumortho.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quayconsultingllc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "queentitine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "questsys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quickref.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qwarkhealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "r.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rachaelsmaids.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radpath.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raidentawork.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rainerstoll.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rainforestfoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raja.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rajapack.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "randallcraig.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raqebpress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdrama.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realitystudio.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rebuga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reckner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redcarnationhotels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redfox-media.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reference.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reflectionsonthebay.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reliahost.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remix64.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "renascercorretora.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rendutowers.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rentandgoandalo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rentfaster.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reparaturcafe-pfullendorf.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resourcespace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revijahak.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revmap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revx.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rfstag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rhd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rheine.schule", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rheineschulen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rheinland-pilgern.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richmond.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rickengineering.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ridsdale.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ripenapps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rise.md", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riskymeals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riverlea.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rjet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rmgsm.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roblox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rockcelebrities.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rockvilledentalarts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rockymtnexpress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rockyrealestate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roedl.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosebikes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rotterdamapartments.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roxswinery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royalchallengers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royxiang.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rsfinance.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rspp.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rubenshotel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rubensteinphotography.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rubymaybetranslations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruimonteiro.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rungisinternational.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rupeek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rurange-les-thionville.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rus-call.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "russianpostcalc.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruyatabirlerin.gen.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safecircuitelectric.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safekidney.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sailormoondoujinshi.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salim.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samsatcorner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sandstein.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sandybigboobs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saudedigitalnews.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sbacorporation.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schindler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schloss-wackerbarth.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schoolcash.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schrijverspunt.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scias.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scms.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sd44.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secret-bases.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secretmuseum.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secureo.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seda.wa.edu.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sekweta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sellerstats.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seltek.su", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sense.finance", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sensiblepcsupport.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seraku.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serpinco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serviciomigraciones.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ses-offshore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexcamsbay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexokrasnogorsk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexyar.vip", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexybuttpics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexynakedgirls.pics", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shemalepictures.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shemalestrokers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shhmale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiftkey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shitara-tateo.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shopfully.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shoppersvineyard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shortbreakstudios.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "showmoviz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "showmyip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shuttelportal.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siaminterhost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sicilpiuma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sicomasp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sid500.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sigateway.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sigmath.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "signaturerx.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "signup.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplecompliance.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simpleshow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siphalor.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siris.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirius-se.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyblue4.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skytel.ge", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slavic401k.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sleekflow.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sleepys.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slightshop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartme.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smb.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smoothfreight.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soccerking-store.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "socialplace.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "softcomplex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sogoreate-landtrust.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solarandenergyspecialists.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solarisbank.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solarisgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solarpanelquotes.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solutiontutorials.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sonet.uz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sonicdx.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soopy.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sotis.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sounah.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soundee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "southernsecurity.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "southwestwildlife.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "specialistskin.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spend.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spenderservice.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spin.city", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spinbetter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "splatnet3.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spmf.org.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportovnivozy.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportsdestinations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sprogress.uz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sscnapoli.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ssentinel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ssqq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stadlwirt.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "staked.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stand.earth", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stansberryresearch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startupislandtaiwan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startupislandtaiwan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steel-pc.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steller.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stembureau-nissewaard.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stembureaunijmegen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stichtingtwigadukina.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stickerapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stierheating.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storagenewsletter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stormchile.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strawberry-melon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studioamoureus.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "subiblia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "subscription-plus.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "subscriptionplus.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "successive.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "summerjam.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sumtotallab.host", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sundaysky.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunderland.ac.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "support.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supya.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suresi.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suresi.gen.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "surik.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "surplusrecord.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "susannaridge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svenmuller.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svfitness.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swentr.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swireshipping.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swiss-export-compliance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swissneutral.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sworkit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swpat.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sydcatholicschools.nsw.edu.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "synfrait.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "t4-wiki.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ta-nehisicoates.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tabletennis-reference.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tagliando.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talentwall.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tambola.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tand-teknik.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tandcr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tangoanalytics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tangosix.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tangs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tarkett-group.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taxfunder.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taxfunder.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tdeecalculator.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teachonmars.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamhd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teara.govt.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tece.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tech-my.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tech-zoom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techfinancials.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techland.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teenslovehugecocks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telecommande-express.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tempefestivalofthearts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "temporaryfencehire.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tennis-academy-weserbergland.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teslam.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tether.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "texascarauctions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "textscout.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "textures-resource.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "the-digital-insurer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "the-ken.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebrag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecommunityguide.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thedelaunay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theknittingnetwork.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thelatinbrothers.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theloves.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "themiamimarathon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theofficeofangelascott.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thetampariverwalk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thevine.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theworld.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thumbnail-download.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thwitt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ticket-time.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tierfaszienation.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tigergraph.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiggertracks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tightasspics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tikklik.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobiashorvath.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobiashorvath.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tokenoftrust.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tooij.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topdetal.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topsport.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tormentgame.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tornadica.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toscanaeconomy.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "towersstreet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toyscenter.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tplak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tracery.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tractive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traderlion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "translink.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trecebits.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trendpie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tresoro.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tresoro.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "triumph-duesseldorf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "triumph-schongau.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trizettoprovider.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trkmakine.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "troopers.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuna.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuta.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuzdrowie.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvojeucetnictvi.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvtsvod.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twistys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tzsrv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tzsrv.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uesaz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ugurkorkmazyurek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ujeb.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ukraine-standart.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ukrzoloto.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "umojacloud.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uni-chem.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unikon.su", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unioncr.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "universereligion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "universevision.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upahminimum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upr.edu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uptimeradar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usgs.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ustoy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uwu.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "v-empower.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valant.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valleycom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valsa.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valueaddedonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valuelinksoftware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vamsucai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vamziyuan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vande-walle.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vcdspro.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vedran-zulin.from.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veganplace.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veintidos.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vek.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verbert.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vertexinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vertexsmb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veteranticketsfoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vg-resource.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vialto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vicinityindustrial.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "videochatv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vientosur.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viksbergshr.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vilans.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villanyautosok.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinilart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virtual-data-room.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virtual-dba.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visale.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visitdubai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitacore.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitafybrands.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vital-heart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viterbio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivaconagua.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivaleisure.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivaleisure.group", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vkcombo.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vkst-field-trials.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voatz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voiretrevu.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voxeljet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vr-immo-invest.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vresportal.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vrimmoexpress.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vsource-rsdv.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "walkergroup.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wallofclocks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "walsermedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warriorofmars.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wathory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wbeme2.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wdo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wearemarketing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webawere.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webfinger.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webkolektiv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webshipper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "websolid.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webvanced.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "welivetogether.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wellsbourne.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westgatecruiseandtravel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wheatland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "when2watch.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whiteyardcottage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikigta.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikitechsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wilhelmina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "windice1.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "windstreamhosting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "witt.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wittur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wolfgangkowar.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wolkanca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wom.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wonderworksonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woonbedrijf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woorkup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workmax.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wot-life.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wozwaardeloket.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpginvest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wsug.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wuoppy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xce.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xeditpro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--tatilgnleri-yhb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xoomenergy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xorm.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xpreflect.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xxxshemaleporn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xyzmedia.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yachtwaypoints.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yalla-shootx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yamagata-healing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yaoyorozu.re", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yerf.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ykb.click", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ymcapkc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ymg-allergy.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ymoz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yopmail.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "z.sv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zappo-entertainment.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zarnu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zataz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zdcs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zerodensity.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zinnia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zionladderp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zisoo.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zkrd.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "znanium.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zodiaconline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zoeyvid.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zoones.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zsplesivec.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zuivelonline.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zvcdn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zverovod.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zwz.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zyiaactive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "12356.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "123sportpassion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1800-mattress.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "18kit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1bps.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1secretaire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3b-concept.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "404.city", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4netguides.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "51senluo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5snb.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7203.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "777.tf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "830res.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abc-pneupascher.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abinmetall.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accueillons.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "achtenhagen.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "actus-banque.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adjustablebeds.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "admanmedia.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adminconnection.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advogadavaleria.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affordacode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agence-matrimoniale-paris.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aipee.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aita.global", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aixploringprovence.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ajto.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alatienne.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aldolafontana.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alector.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexnedea.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alvaro-smith.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amaisd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ambarbyarihant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ambtpay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amplifire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amroz.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angiszi.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anglopoltransport.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "annonces-moto.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "annonces-vacances.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "any-id.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "any-id.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "any-id.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "any-id.store", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anyid.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anyid.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anyid.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apatransport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apexchimneyrepairs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aquarillon.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arellak.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arendakemper.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aria-sante.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arihantabode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arihantarden.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arihantsouthwinds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "art93.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artisanat2france.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asennestudio.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ashiba-kagu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ashikajewellers.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astour.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aussiesnus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autista.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autos-motos.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avenir-now.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aviprime.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avocat-bourgogne.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avocat-droit-du-travail.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avocat-karsenti.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azhappytails.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azimuth-ast.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azzorti.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babichsteriliser.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bacgp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bacgroup.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bacgroupdigital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bacgroupinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bakchich.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balikturleri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ballajuraafc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barduschinamusic.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barney-media.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barrierpestservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "base48.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "batitrakya.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baxus.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bdocfurniture.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beegarage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beeliarspirit.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "behealthyeveryday.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belajarcarabelajar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bemergroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benaldirma.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benchmark-ip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berighthere.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bernius.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bernius.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betasozluk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bfc-expertcomptable.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bien-etre-beaute.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigzoo.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bijoux-fantaisies.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bizmonthly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blacklist.support", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blogpsy.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blueride.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bmac.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bnpparibas.com.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonjourmademoiselle.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boomfinity.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boostup.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boubyranol-biere.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "br-hq.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "braun-russia.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brilliancesecuritymagazine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brookskolb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bslnow.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buzzage.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bwinvestments.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bytebolt.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caldwell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cancer-info.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canningcityfc.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "careshields.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casacampolima.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catmonad.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cbbio.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccpe.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ce-na.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ceatheneum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cegpalota.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cetak.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cgdct.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charlws.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chasseurdetruites.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chaudierecogeneration.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chequeo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chichoverboard.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "choruru.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christianaknudsen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christianplumbingservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cigarettes-electronik.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cinecat.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cirroenergy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citizenside.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloydnco.com.jm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloydncojamaica.com.jm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cnxiangxian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cohob.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collinssquarecatering.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collinswyatt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comiccrusaders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "commentgagnerdelargentsurlenet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "communi.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conferencemanager.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conferencemanager.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conferencemanager.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conferencemanager.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conferencemanager.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conferencemanager.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conferencemanager.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conferencemanager.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conferencemanagerpro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "confort-bebe.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conseils-immo.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consertodeeletrodomesticosembh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "contango.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "convecteurs.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "convicted-driver-insurance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coolabaroo.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coronavirus-journal.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cothurnes.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "couleur-lavande.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creativevietnam.com.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creerunblog.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crestataustin.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crm-gestion-relation-client.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crucial.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cruiselookout.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptobot.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptodore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptography.blue", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptomonnaies.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptosender.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crystalcleaningservicing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyclonemetals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyrenianhouse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyrozap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "czechhunter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danish.events", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dankburritofranchise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danloona.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danske.events", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datastack.design", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidrteixeira.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dcgprecisionpainters.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "debateisland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deceasedonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "decopros.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "decoral.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "decotonic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deiaprint.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demolitetuto.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desguacesbarcelonacat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "designdecoration.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devenirconseillerbienetre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deviante.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devksingh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devrekarti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devries.frl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dewijkpraktijk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diapuls.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diariodebalsas.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dieffe.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digidaigaku.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digilabs.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalcrisis.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dimension-pc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dirtywork.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "distribucionmayorista.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "divergences.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dmlive.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "do-not.click", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doctoblog.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dotlab.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dotlab.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragonbox.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragonsunited.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragonsunited.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragonsunited.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreambed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamlight.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drnatura.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "echidnalock.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edocperso.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edvan.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ejsc.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "el-masri.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elternzimmer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emmalegalnurse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emploi-international.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "employment-solutions.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "empowered-decision.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "endcottagevets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "englesh.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "engsoyouth.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enkolaysertifika.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enterthehollow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "entreprise-innovante.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "envia.com.gt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eoliennedetoit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eraterm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essentiel-du-mariage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eternalaugust.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evakuator.ltd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ex-links.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "examhq.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exiletattoo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exzibit.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "f4jsl.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabricandoclientes.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fakehub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fal.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fandars.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fansdefoot.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fauteuil-bebe.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fcporto.ws", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "festivalsquare.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "festivaltower.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fewo-groden.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fh-photographie.art", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fiddlestickstoys.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fiedelaks-landbarf.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fieldeffect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filejo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fimc-biodiversityportal.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finalweapon.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finansified.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "first-legion.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fjerhammer.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flagma-no.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fleeps.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flextrades.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fmcsa.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foodandseeds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forestersfriendlysociety.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "formation-intergeneration.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fotografy-help.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fragment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "franchisesports.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frantajaros.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freckles.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fresco.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frshminds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ftrfnd.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furnu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furry.codes", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furry.re", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furtodo.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furtodo.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furtodobox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furtodobox.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furtodobox.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furtodobox.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furtodoit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fusions.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futhark24.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "future-telecom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futureappin.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamedware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamize.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamma-travel.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gammonvillage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gdm.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gear4music.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geekdoit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geekofeminin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geekplay.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geilefrauen.pics", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gelcocktail.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gelisimakademi.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genealog.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "generateurdapplis.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "generation-clic.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "germantolobis.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getfitbee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gevo.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gigachad.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gite-le-pascaud.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalhomeautomation.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globeprotocol.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globeprotocol.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globeprotocol.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globeprotocol.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globeprotocol.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globeprotocol.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globeprotocol.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gnihm.ac.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldysoptic.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gopro-qa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gopro-staging.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gopro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gordonbeeming.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gotomojo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graceclinic.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gradintel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grandesmaisons.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grandviewgynecology.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grannypussy.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greatlakestechdiving.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greenbeauty.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greencbd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greenplanetgrass.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gregmckeown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "groeneoldtimer.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gruenwedels.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gruppotac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gts-tradgard.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gts-varmepumpar.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guatzessen.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guidecbd.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guidoclub.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "habermatik.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haha.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "halkbank.mk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hamptonrhodes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hanatan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hardcorepost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harfordpark.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "havuzkapinda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hayvanlar.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healinlife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthwealthtime.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heilpraktiker-maxdorf.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heinrich1.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hentaipros.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hervegranger.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hessis.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hexagonengg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hexcel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hezzit.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hgtwa.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hk-shuttle.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hlm.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hochzeitsregion.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hommecontemporain.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoo.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hooshop.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hosifuri.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hospitaldebarcelona.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostiko.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostingweb.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelpalotacity.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "houstonaudubon.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hunhold.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hunhold.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hunhold.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hunhold.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hunhold.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hunhold.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hunhold.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hunhold.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hydroposev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hyzy.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibmix.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibra.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icdisinfection.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icie.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iconmale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idhl.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idsc.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idsconsulting.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iflscience.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iltis.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immobilier-realiste.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immobilierlibourne.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indironline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "industrilokal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inews.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inhale.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "int-elektro.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "integratedphysio.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intersectionconsultancy.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interterranfed.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "investment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iphone6.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iphonemobile.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irenictherapy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ismailtoraman.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ismekkurs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ist-analys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ist-analyse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itefix.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itprotect.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iventishirts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iww.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iyadalkassab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janphilip-bernius.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jasonwongwr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "je-voyage.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeannette-py.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jenniferfontaine.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jesuiszen.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jikei-reha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jinbbq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johnlewis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "join-aomori.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jpvisual.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jrroofinglancs.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juicipattiesfranchising.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "junis.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "k2.works", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kabide.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaguramea.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kami-riha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kampova.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katesymmans.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kazu-techlab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kcnxp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kech-immobilier.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keystone-europe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kickitfootball.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiddoscape.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knkv.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "komasan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "korfbal.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "korfballeague.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kosmosol.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kraftfahrtversicherungen24.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krugerengelbrecht.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuberkaitseliit.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuchugury.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kyoox.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "la-bonne-cuisine.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "la-maison-neuve.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladymadd.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lahalte-buvette.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lakerfreight.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lansociety.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laquestionviterepondue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "larabouillere.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laspoesias.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lasthome.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawcover.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lbofrance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lcr94.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "le-reso.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leauda.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lebuys.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lemr.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lenord.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lestravauxduparticulier.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "letras10.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "levischuck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libauth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liberad.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libermoto.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libgraphe.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifestyledoctor.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "likesec.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "limescapes.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liz-ate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "location-vacances.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loge.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logicielscrm.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logipdv.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lolcats.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lordgeorgeanson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "losderover.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loshogares.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lostluma.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lowesprotect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lowlab.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lukaszwojcik.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m-enterprise.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ma-subvention-electrique.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maavaishnowsewatrust.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mack.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magicpaper.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maguy-energies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maisonkobe.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maloneyja.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maman-geek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "managed-it.africa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manga-life.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "map-immo.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marabook.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mariage-reussi.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marie-psy.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markco.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marredesefairebaladersurlenet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mas.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masanteadelavenir.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mastodon-poradnik.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matarbyte.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matchimmo.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matetineamoi.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matrixengineered.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mauronovellas.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maurrikone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mb-amenagements.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mc-sin.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mc2informatique.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mckenney.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mdwellness.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "me-mainz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medicine.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meister-stuecke.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meister-texte.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "memez.download", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mergegroup.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meritus.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "merkatal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meublesrosa.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mforum.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mgfgroup.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mgfgroup.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mglobalservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-hollandskroon.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-koggenland.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-leiderdorp.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-schagen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-zwijndrecht.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milfhunter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mindtherock.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miplanilla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mitarrangement.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mittarinvaihto.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkpeurope.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mnrtechsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobshop.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modanloftsortigashills.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mofos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mojavibe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "momsbangteens.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monbebeautrement.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mondaynightbrewing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monstresdesfetes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "montres-mh-besancon.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monvoyagedentaire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moonspell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moorelife.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motoselfservices.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moviebox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrgeek.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msbdocs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtf.party", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muratbekgi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "murmures.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muscle-home.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "museo.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musexpo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myensolofts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myggkungen.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mypetitjob.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mysantanderpension.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakahama-dental.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naprodukcji.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natenzia.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naturallychildled.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naturalmentesinescuela.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naturaprint.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naturesupply.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nautours.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ncjdigital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ncrjobs.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neosolution.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "net-abuse.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netprepare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newnorthfuels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newporthomehealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newtech.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "next-geek.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nexzus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nfpsa.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nguyenduythiem.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicoleisaacs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nictiz.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niftyninjamarketing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ninetyninestreet.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nkrupp.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nnrevolt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nocr.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nomada.gt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "norfipc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "norwegian.events", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noticiassonaqui.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ntcrmezon.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nuage-libre.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nucciocondorelli.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "numismatix.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nyupoco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nyuware.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "o-n-s.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obi-investissements.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ocabj.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ocalhukuk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ochobeatsmedia.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "octav-avocats.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oharas.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ohmygeekettes.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oi-wiki.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oktaybozaci.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olgamalytcheva.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omxz8.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlyjedis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "open-work.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oroshikikin.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "otomauto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outlookbythebay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oyaphwcdsb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ozgurgokmen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pahuudenanatomia.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pandamoto.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pandn-bulgaria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panoramahillhotel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parfumi-eu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partygangsta.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passion-net.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passportapproved.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pauliuspiecius.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paymore.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paysera.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcgamemc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pdf-tool.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pearloc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pecan.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pecmd.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pellet.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peterpauer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petit-bebe.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petr.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pfp.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pholio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phoneia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "physiotherapie-buk.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piggingcleaning.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pimppublishing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinyonpass.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pista73.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pitakashop.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playform.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plex.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pm-schilderwerk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pneumania.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pocsaismartsystem.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poeleapellets.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pogrebeniq-sofia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pondacademy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pooi.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "post.lol", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pot-au-feu.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "premierpedsny.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prima-badezimmermoebel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "primaudialrecords.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "primisbank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "printscan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prixmetaux.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prizcode.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prizecode.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prod-vigl-www-master.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pronty.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "propfirmdiscount.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proverb.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psiholognatalija.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psq.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "publicpickups.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purits.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purrpley.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purrrpley.dev", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purrrpley.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purrrrpley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pvawa.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pxagency.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pxnetwork.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qpi.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qraa.qld.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quantum.gdn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "queenspark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quiq-frp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qwanturank.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qxq.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qy.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rachelwatkins.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radioombo.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radyogemisi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ragadoor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rainative.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "randomuuid.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realitydudesnetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rebel.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recettes-de-tiramisu.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rechtsanwaltdrach.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rechtsanwaltskammer-hamm.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redactibio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redfox-media.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redfox-media.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redshank-largeformat.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "refb.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reference-emploi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reflectionsbarlingsbeach.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remservices.ky", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rencontredemerde.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "renovation-abm.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "repararmac.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reseau-image.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "residualpayments.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riggsloves.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riseproject.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ritaescortsdelhi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roa.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rockingreports.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rocknreports.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roguelicious.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roomie.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roussillon-informatique.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rumreader.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "runningcitadel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ryansmithphotography.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safera.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sajbersove.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salesandwants.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salesfunnelfirstaid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saltedpasta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samenvoormedicatieoverdracht.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanctus.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sante-informations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saxifrageleather.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sbettoken.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schlagzeug-lernen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scholi.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scsprotect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seamac.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "segurico.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seiulocal300.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "selmon.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servispasaoglu.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serworkribeirao.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexolviv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sezane.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shabaka.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sheehans.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shit.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shoudanren.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sierkbornemann.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simoncotsworth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sinanozpinar.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sindacato.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "site-de-paris-en-ligne.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sites2poker.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sjid.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skinetic.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skioakenfull.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skymkmk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sleekfellow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slopeoak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartcard.tools", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartglassworld.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartphonepliable.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smdmetals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smithwealth.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snrd-africa.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "softwaresanta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solalnathan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solarafrica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solectrus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solutions-it.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sonyazi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sorrentofc.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sowget.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spankmonster.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spar-dich-frei.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spbelect.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "specprawnik.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spribe.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spribe.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spribegaming.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stahlzart.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startandstop.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "statepoint.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stc-knrm.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steel-pc.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stefanoiavarone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stillpointmag.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoicnotaries.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storephotovoltaique.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunmeiren.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "surpassexam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svenska.events", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svnty2.dedyn.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sweetsinner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "t-moon.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ta-maison.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tavex.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tavex.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tavex.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tavex.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tavex.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tavex.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tavex.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tavex.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tavex.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tavex.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tavexbullion.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tavid.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teaching-certification.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "team-building.madrid", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tece.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techwestsolutions.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telaviva.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telk.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thekitchendoor.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thekitsunesden.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "themprojects.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theshesuite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thetruthabouthemp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thetubecopenhagen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theworksboulder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thisis.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "threadspecification.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "threatlabs.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "threatlabs.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiengtrungquoc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiski-shop.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tmdmotorhomes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toondahjobs.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top-seminaire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "total-deco.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tracxn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trade-foods.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tradeandindustrydev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transangelsnetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transharder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trashy-gypsy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tridentdiagnostics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "triple1.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tum.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tur17.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turtleteam.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tutamon.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tutoriel-arduino.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvos.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tweetadder.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twistedoakonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "typosphere.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "u12buy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ucretleri.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uisd.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ukforum.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ukraflora.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uku.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ulconnect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ulprospector.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unbonavocat.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unf.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ungedient.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ungovernable.men", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unikimages.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unitop.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unitycardiology.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utusan.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uvesco.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vague-normande.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vaninsure247.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vente-voiture.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ventes-privees-flash.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verasoie.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verhoog.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viafoura.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viedecelibataire.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viega.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vietfes.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vigl.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vilgain.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vilgain.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinehall.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vision-du-net.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitalpraxis-lietz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vnanet.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volkswagensaigon.com.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voyagesvoyages.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voyance-direct.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vrh.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vue-sur-mer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wapsychiatry.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waterpurificationsupplies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wbldc.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-one.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webcargonet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webnestify.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webstreamworld.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webstreamworld.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wedatasolution.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wensenboomaltrecht.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whong.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiltonsandstonequarry.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "windjetboats.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wineandcheeseplace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wirelesslogicnordic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wirkaufen.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wmtools.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldwideradiosummit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpmatik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wwilogistics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xmnr.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn----jtbiihtkil8b4e.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80a5ai3dd.xn--d1at.xn--90a3ac", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--e1afggpjhk3b1e.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--rdiger-barney-wob.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--stubbfrsning-uppsala-hzb.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.social", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xyl.cool", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yaoyorozu.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ybr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yifansun.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yogaanswered.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yoshimura-seimenjo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zakreconysloik.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zazemleno.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ze-mag.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zenmassageusa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zero-stress.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ztable.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2-faktor-betaling.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2mp.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7203.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "740cashbuyers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "achireland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acorespro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acse.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acupuncturefoundation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acupuncturefoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ads-kuwait.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affect3d.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affinityplus.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aikoly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airconservicingcapetown.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ajop.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akode.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aleksac.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alex-wohl.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "am-yu.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amagroup.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ambrosia.cafe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angleline.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anol.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aova.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arasozgun.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arcticpolitics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ariensfamilyfoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ary.photography", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asianshop.com.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aspjvm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atmetalwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aurabasketball.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autohaus-brueggemann.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bambergerdatenschutz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bammatta.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bar-rique.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bbbb.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bceaf.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bebr.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belarusmemorials.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bencheetham.me.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betwinner.com.gh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigblockmotors.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "binnen-buten.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biotraxx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "birebirvilla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blids.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluescape.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boelsen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bogolyandras.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonkotsua.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brwn.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caboleisurerealestate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canyou.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartooncollections.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartoonstock.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casaoggidomani.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cccc.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdf.fyi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charuga.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheeth.am", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheetham.me.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chillybin.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chinen-hs41.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chiniiki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cjcanarias.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudcastles.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coggle.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "combidarlehen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "concept4photography.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conferencemanager.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyber.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cybermaretique.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyvault.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dachlaeufer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darrenflemingphotography.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daxo.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dbautoservice.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dddd.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deasserstadsloop.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "debesiukas.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "debraj.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dein.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desinsectisation-punaise-de-lit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dghyp.ag", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dictionarybook.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "didc.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitale-ausleihe.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dild.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discordjs-japan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disruptglobal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doorsystemsweden.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dotprime.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drandrewlofman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dv-project.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-frontier.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-lexia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ect-cpg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eeeb.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggel.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emedpractice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emojikeyboard.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "empoweringdifferences.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eov2.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erito.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esilverstone.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everycorneroftheworld.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evidentiauniversity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expertowears.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ezyfitdoors.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fasab-portcenter.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "festfabriken.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flagma.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flickingercenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flothow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fob-china.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fob-india.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fob-iran.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forgottenho.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frandroid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frontconcept.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ftlparksprojects.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fudgeapps.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fudgeapps.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fullhotfilm.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furtodo.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futacockinside.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "g0nz0.me.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gablesvets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galton.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galtonbrands.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galtonbrands.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garethbowker.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gehrdencarre.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gggg.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glorycambodia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gmo-cybersecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goethe-gymnasium-stolberg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gost-energo.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greenislandgroupny.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grfinefoods.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gule.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gwinteriors.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harmreductionwa.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heidinousiainen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helpout.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herniaclinic.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hisscentralen.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hornbach-holding.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "horntec.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "horsellscouts.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "horsellscoutsandguides.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hosentaschenblog.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotel-leda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hrcigroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hydrolifehottubs.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icsti.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ifrabb.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igdb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iiii.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "incognito.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "informalflowers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "informatique-13.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "innosysdelft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "innsaimonitor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ishadow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "islcustomsbrokers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itk.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jameswhite.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jdjamescorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jinjafx.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jjjj.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jmob.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joelkoen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joshbyrne.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jouw-job.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jura-versicherungen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justcall.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karakafa.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keks.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kirche-bamberg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kitchenkettle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kkkkk.click", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klaukegear.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knowbook.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koffiekompaan.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kokk.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kokomoislandfiji.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kozbox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kroldata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kstdlvr.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kstservice.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ksuu.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kxc.inc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kyoto-sowa.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "labyrinthinetool.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lamaisondufort.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "larigami.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lgbtqtherapyspace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifestylefoodies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightstands.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lion-log.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lions.gr.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lollysmalls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lomond.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luppa.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madinatech360.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madmoizelle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magieshop.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maroochydorecitycentre.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mashrmail.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matthiaswillemsen.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattwill.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meffrepatrimoine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metalgie.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mgcs.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mhi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mingyannet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mira.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mob-tok-shop.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "momtits.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monsterlinkmarketing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motum.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motumblekinge.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motumport.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motumskane.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muddy-bugs.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musterionsec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mydlonline.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myhelo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myserviceportal.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n15.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakajima-kawara.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nalwin.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nbc.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nestlanddesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nettikasino.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netzpolitik.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nexiodev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nexiodevopslocal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nexiopaydevopslocal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nnnn.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nnnnn.click", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nodepoet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nordiskhiss.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nordiskhissvarmland.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ntdf.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nullvoid.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "numerama.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nynadynasir.my.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ohmymalware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okis.win", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oleg.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onefestivaltower.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onehealthbehaviors.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onsweb.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oooo.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optimization-online.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ordinals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ortahisarsigorta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ortiatuttogas.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oumlaut.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peleti.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perevod-tekst-pesni.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perigon.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pfandbriefbank.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pff.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phonebook.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phyi.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinnacletrailers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinyonpass.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinyonpass.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piped.video", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pisk.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plov.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poopa.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ppppp.click", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "preussner-grafik-design.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prikaznoparty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "principalam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prizkod.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "propertysex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proscore-vr2005-1plc.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "provide-vr2003-1plc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "provide-vr2004-1plc.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "provide-vr2006-1plc.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prpr.icu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prudenceandthecrow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ptrdata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qimingbu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quantum.gl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raleighboneandjoint.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raleighmedicalgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raleighpsych.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rangeforce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rangeforce.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ravenrepublic.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rebaltica.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recetasdelospaises.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redfox-media.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redkite.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "renegadeexploration.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reportband.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revolution-mining.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ricassiocosta.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ridgidgear.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riscoscommunity.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rmbs.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roquesevilla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosehishop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royalchess100.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rusa.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sageseeds.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scejournals.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schmiedecorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "school-korfbal.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scopeglass.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendflowers.pk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "senibongcove.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "senibonggolfclub.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shadowsocks.click", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shimmo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shipgoldchandler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shoppyad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "signuponline.events", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silvu.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skattebo.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skipr.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skipr.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slamtradingcards.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slideproducts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slushat-tekst-pesni.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smart-broker.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smitsdesigncenter.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smudge.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sofortindenurlaub.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soso.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spbelect.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spribe.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sreb.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sssss.click", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "standard-wohnungsbaukredit.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "standardwohnungsbaukredit.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "standardwohnungsbaukredit.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stefanini.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stellexshop.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steuerimgriff.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strauss-advisor.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strefarysunku.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studiozes.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "summitcustomsbrokers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunflyer.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superfans.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sus.zone", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svin.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svn-yokaiispirit.ddns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svtl.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "symbiote.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "t.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tdk.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thediamondapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "themassageguy.capetown", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thepioneersgame.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timelettings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timochan.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinylotta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tklm.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tln.lib.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "todaysparent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomdapice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tooadalsauda.kz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toolsa.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toondah.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top-super-60.ag", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toricafe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "treasuremountainmining.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trigirlpainting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trueamateurs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsutaya-ai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ullrich-group.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "umtactivation.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unlocktoolactivation.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "us.nl.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uuuu.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vanilla-official.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vanya.click", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "venzeo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vingahiss.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virgulazero.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virtuallanding.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visaxplorer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vnya.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voileux.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "von-haselberg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vova.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vps.auction", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vps.chat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vrg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vrimmoinvest.ag", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vvpn.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vvvvvv.click", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "walkerfoundation.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wamia.wa.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "watchurdiet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waterloo-abba-show.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webdrops.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weefriendskids.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "werkenbijjunis.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westminsternational.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wicstunvetgroup.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wilburyvets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "willowchild.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiseitguys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wmmi.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldsage.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wsparcie.gov.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wundertraining.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wwwwww.click", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xavy.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--d1acmf9g.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--das-anhngerzentrum-rtb.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xreverseporn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xxvv.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yakupyilmazboru.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yapdentalsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ylivemusic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yokaiispirit.ddns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zenfires.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zlpa.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zomatree.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zzcc.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zzzzz.click", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "02n.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0xheuts.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "123storage.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "13411-111.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "15-montorgueil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "15montorgueil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "15ruemontorgueil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "24k.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2chi1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2class.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "60d.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "60i.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "76o.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "808gutterking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aarisings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abileneef.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abre.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accesoriiutilaje.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accio.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accretech.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ace-uk.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acendas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "activehealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adorkable.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agdsenice.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agentprovocateur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airvida.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akasa.red", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "albufeira-car-hire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexadamsddns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alfred-g-fischer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alfromuez.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "algarve-1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "algarve-carhire.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "algarve-transfers.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alge.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alingroove.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allerzeiten.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aloomic.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alt-wien.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ames-fzco.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amnathrig.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amogus.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "analyser-mon-site.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrewglucas.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "annelisetouya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anova.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ap-bg.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appartementhaus-am-uke.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aquahill.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arcticfoxes.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arekkusu.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "areteortho.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "argo-vision.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "argo-vision.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "argo.vision", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "argus01.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armsco.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arounddeal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arset.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arzua.gal", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlasrealestates.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "austincosmetic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auto-albrecht.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auto-delchev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "az-raven.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baccredomatic.voyage", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barke-schaltanlagen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bas.bio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bas.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "batista.g12.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baxx.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bbp.ng", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bcarpentrypro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bccx.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "be.st", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beard.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beerbruhs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benbenben.loan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benoit.jp.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beregite-zdorovje.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berndtgen.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berriainfo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestchoicehomeinspections.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestgolftrips.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestsolution.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betstop.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betterviewrentals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bezpaliuk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bhameshwarigraphics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bilderload.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bioseguridad.gob.pa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bippassistant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bjargradakerfi.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bjerregaard.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bjugard.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blessingtransportbromoijen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluetape.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blurbhack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bnpl.kz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bo.ke", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boatandsailboat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boatyardx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boctok.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bomanufacture.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonfire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonwari.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bookitlive.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bostonfast.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brainps.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "britannia-jewellery.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bucapositano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bureau-store.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bureauzelfstandigenfryslan.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burger.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burgerking.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burina.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burnus.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cactusplumbingandair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cafebab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caffeineandconcrete.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cagrierdogdu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canondrivers.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "car-hire-lisbon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caricatureavenue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caringkitsforkids.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carvoeiro-car-hire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casasbandeirantes.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catphysics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ceenic.ltd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centralisgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centrodavida.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cerammind.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "certifiedbb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "changeupinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chillplanet.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chiropractorlongmontgpa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christtheshepherdvineland.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cibernicola.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ciceksohbet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cinnamon.bot", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cjri.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "climaventa.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudbytesconnect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "club-no4.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubzap.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cnews.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coastalsignsplus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codingame.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codingame.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comicborgs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comitedal974.re", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "communityparentsinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conorjwryan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coolagent-dokumenty.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corn.az", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cornips.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corride.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cosmeticosprofissionais.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coursesidekick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crashgambler.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crazytunaaz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crunchr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryne.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "curiouscast.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cuubconsultancy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daddysfranchising.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "damsafety.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dashipping.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidebaraglia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidn.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dbfopraga-pn.waw.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demobiliteitfinancier.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denverfootballofficials.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "depolauncher.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dermatologistmumbai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dghyp-kiel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dghyp.net.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diefotogruppe.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digital-park.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disisto.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dler.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "do.ne", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "docugatetest.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doineedanmdm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dominicinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domino.com.ge", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dontwastethewood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dotker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dowina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dp7.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "draagmerriecentrale.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dremble.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dths.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dunbarmoving.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dw-connect.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dw6.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dxcv.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dzhyp.ag", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e02.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eahea.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easyrpg.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebics.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebics.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebics.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eccoilmenu.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecity.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "efeel.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elbiahosting.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elektiriklidireksiyontamiri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ellingworth.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enefitconnect.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "english.events", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "entasyonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epm-bg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eprimego.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "equestrianvaulting.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "equil.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erinias.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estrategiasfm.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurohell-design.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurohell-design.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exampaperarchive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabarm.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faimmobiliare.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faro-car-hire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fassiportugal.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fastfast.click", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fdworlds.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fedistatus.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fedistatus.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fedistatus.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fediver.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fediver.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fedivercity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fedivercity.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fedivercity.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "femme.fitness", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferienwohnung-wilmersdorf.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferrumformat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fieryaura.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filipn.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "findjeen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finst.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fjnuacm.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flatmail.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flexforcemonkey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flyforpoints.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fomobremen.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "formalistgallery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fougereettralala.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fraai.agency", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "francishouserecovery.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freak-waves.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frenger.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futunk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futunk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fvg.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galecommercial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gallerywestframeplant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garcia-leplus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garcialeplus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gastrosfera.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gatewaytrust.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geoscout.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geotextil.ec", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "germancoding.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getcyber.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giakki.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giftpoint.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gilbert-schmalriede.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "github.partners", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globeprotocol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gloria-mundi.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gluglu.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "go.ne", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goteamproclean.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grunttoziemia.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guenstiger-it-support.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gust.org.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "h07.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "halfmba.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hanan.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hapfox.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hasas-automatizari.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hasas-cnc.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hazlocheaters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "he-sb.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hearty.gift", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heat-press.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heathersnotes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helpwise.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "highperfection.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "himawari-shika.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hippolini-herold.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hissgruppen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiyuki2578.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hkamran.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hokko.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "horneytownbrewing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "host-heberg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "host24.com.pk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostmore.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelponcowinatan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hqy2000.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "human-centricity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hungarianeducationagency.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icasnetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idawallen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idev.games", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iemail.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "induehorse.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infotv.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infrapedia.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inmoveskates.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intellicyb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iolabs.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipl.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iskaz.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "istec.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-wars.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itcompanies.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itx.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itxnorge.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itxuc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "j05.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "j3.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "j365.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jambapp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janulkowedomki.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jasminum.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jellybeanpress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jenniferjoos.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jetsetretiree.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jevalide.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jimwhitesell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jliu.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jogosfutebolhoje.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joyouscare.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jp404.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justbraces.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaamosmail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kanali.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ke.ke", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kelderro.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kerdry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keskraamatukogu.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ki.ki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kik-textilien.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kik.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kik.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kik.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kik.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kik.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kik.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kik.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kik.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kik.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kik.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kik.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kik.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kingandmcgaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinoks.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kk-bs.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konyadireksiyonservisi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konyadireksiyontamiri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kryptosekken.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "l.td", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "l.tt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laa.gov.ly", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladyboyreports.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lagos-car-hire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lain.la", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lamborghi.ni", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "languagekeyboard.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "larchmontbuzz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lavkafreida.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "layxw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lazytapir.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lea.pet", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leee.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lem0n.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lemoncloud.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lemonsoftware.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lepat.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leplus.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leplus.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lfc.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lianka.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightningcollectors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "link.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linksecure.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lisabel.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lithiumhosting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "littlebig.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liveflooring.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ljskatt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lois-bullion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lorenzoprinci.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovetablecloths.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lowell85.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lukem.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lyftservice.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madebyesmel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magic-fly.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magnetic-ink.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mahavirmandirpatna.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manofmanythings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mapa-airsoft-akci.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcahm.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "media-street.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "memoriaacademy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metalcon.az", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metrobank.com.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metromark.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meuemby.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "microdot.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirri.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "misskey.art", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mitranlogistik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mittilmeld.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miweb.ec", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mjf.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modapharma.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mogyuchi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monsalvat.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moraxyc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motum.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moviemadness.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myabakus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mygeek911.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mypetsvetsltd.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mystiko.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myswooop.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nativitychurchnj.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natviehealthcare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nelswong.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netnl.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "networld.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netzwerk-kvp.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neukoppel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newannual.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsteadccc.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ngmx.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ngmx.social", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niiucapital.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nitro.az", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nogema.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "norcconcrete.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northshorevisitor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nrc.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nullroute.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okiram.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okrodrigo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olemon.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oliverhough.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ongelukvandaag.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optionskredit.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orelferm.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osrsmap.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paintpaina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pakistanichatzone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pandamo.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pandorrah.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paolomarzano.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paolomoriggia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pausado.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paypac.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcmscientific.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "performancetillagebolt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perusal.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perusal.social", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pfgl.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philipmorrisdirect.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philippwinterberg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phoneswiz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pilbaraports.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinnacleholdings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plexopedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pliroforikikoufopoulou.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portugal-car-hire.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "post.how", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "post.kim", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pqforce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "preferredservice.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pregnantorcrazy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privateboat.amsterdam", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "procursus.social", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "profilmedecin.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proi.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prooffice.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychpsyo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "publicdelivery.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purrpley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purrrpley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purrrrpley.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pwneytelecom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pws.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quashed.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "queerspirit.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rabbitdns.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rabbitsearch.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radioilusion.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rainbowsushi.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rambus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdm.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdmc.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reactive-load.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rebecamode.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rebuild96.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redteam.coach", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reishikitchen.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reishikitchen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reishiplantkitchen.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reishiplantkitchen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rekursion.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "releve-analyser.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "renovalar.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rescuenode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revol.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rheincargo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richiebartlett.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rim-kardzhali.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rim-kardzhali.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rinabhabra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robkaper.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roslagenshiss.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rpts.edu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rssproject.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rstadler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruageek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rydercragie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ryfma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ryoch.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s.td", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s.tt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safensoundstoragegroton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safleo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salesforceliveagent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salonboothuren.amsterdam", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanne-content.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sante.akita.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sassyporkchop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sbcbatangas.edu.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scdn.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scentiche.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schanksysteme.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schlouk-map.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schooltransport.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scottech.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seavision-group.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seavision.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seistrup.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "selfiestick.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sempersolaris.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "senat.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shapers-production.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siepomaga.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simac.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplerezo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simulus.training", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirenequestrianvaulting.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirenequestrianvaulting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirenvaulting.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirenvaulting.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirenvaulting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirenvaulting.group", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sky-driver.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slashorg.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slaveykov.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sociality.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solarscan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solidray.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sorrentoparking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soulshare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soulshare.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soundersmusic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sova.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spacesedu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spainemotions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spireat.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "splconsulenza.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sport-attitude.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spowtr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sprocktech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "staffsocial.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "standard-wohnungsbaukredit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starter.social", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steak-kojiro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stonkslab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studybeans.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stunningbikecotours.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "styletyx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "summaryexecution.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "summaryexecution.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "summaryexecution.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "super-60.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "super60.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swaglookbook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sweetheartvideo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syndika.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "szabadpingvin.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "szamlarobot.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tamracapital.sa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tanknology.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technikoma.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technikoma.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technocracy.works", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tekpon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tele-teen.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teleteen.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terapower.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teremopt.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teverzamelen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teyyib.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thatchhealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebus.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefriendlyplant.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thelangfords.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thelangfords.id.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "therap-up.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theseotool.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thomas-leplus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thomasleplus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ticketfan.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "till.fyi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinh.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinytwitter.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tleplus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tntbooks.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tominysun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topmaxstore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trakmd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transsensual.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelthing.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trimill.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tripozo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tropicalstandard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsg0o0.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsgbcs.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsico.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ttunda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tu-muenchen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuinmeubelkorting.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvkaista.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "u05.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unifiedwellness.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unit-linked.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uwdigitaleboekhouder.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valleysupply.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vanwa.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vdrei.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vema-bg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vendorful.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vera-1.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vertragsfix.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vhosting-it.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vibromax.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vibromax.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vibromax.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "video-lab.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vilamoura-car-hire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vkgroup.az", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voidhacker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vukhoidecor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "w03.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "w398.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waldorf-harduf.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wangcun.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warengroup.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "watchthis-svp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waterlandtuinen.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "watto29.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wayaberolodge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-direct.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webhostingmagic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weirdork.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weirdork.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weirdork.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weirdorks.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weirdorks.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weis.duckdns.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wholegrace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whyteryan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "willkie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wineexperience.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "withamscouts.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wohnungsbaukredit.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wohnungsbaukredit.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workoutdigital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wotlo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wp-rebuild.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wrecky.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "x61.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xhamiadituria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn----itbanmp3ae.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn----mtbckubhv.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--bjugrd-lua.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--e1aajkmzd.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--g1abhqbgs.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--h1aaakmzd.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xnop.yt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yatax.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ydt.am", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yksolutions.ma", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yuanbiji.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zapier.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zdravec-bg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeeg.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zenit505.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1337.ax", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "167clan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2vnews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "379737.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3vensen.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "486662.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "766788.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7gr.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abolitionist-movement.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acachau.synology.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acaltair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aceofheartsgiftbaskets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "actionsecuritycameras.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adiguezel-bau-gmbh.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advancedaquaticservice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advinans.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advinans.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aedus-design.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aether.industries", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affibody.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agenciacoder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ai.moda", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aimoda.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aine.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "algorithms.guide", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aliakpoyraz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allabouthtml.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alnoorintl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpenschmarrn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpensternderl.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alphakites.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "althi.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amazing-maids.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ambulanzaprivata.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ametinsurance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amianto.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amiciperibambini.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "analfistula.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anchorbvfs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrian.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angablade.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animatedtimes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antinatalism.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aofusa.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aorhan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apostillelondon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apple-droid.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appointible.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apsreview.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aquila.earth", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "areawidepainting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arhivpalanka.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ariensco.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arienscompany.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arienscompanydealer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ariensconordiccenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arienscorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ariensmuseum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ariensnordiccenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arienssnotek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ariensstore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artesaniafenix.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artformcollective.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aserver.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asmgroup.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "assetinvesting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astur.school", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlan.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlasbus.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlasdev.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "attendhealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atwey.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aubcon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aussiebum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autoofficina.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axisunderwriting.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axolotagencia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "b4ifund.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babia.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babuccu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bajajplasticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ballmusikband.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basisvaardigheden.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bayliss.aero", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bayliss.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bayliss.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bdrmedia.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beatachoroszynska.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "behealthoncologia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benia.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berlin-starlight-orchestra.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berriabot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestnursingdegree.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biblicaudio.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biblicom.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biblinfo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bieresamanger.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biljettmonster.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitehazard.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackbyrne.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blutopia.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bmr.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boardlinks.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bocusedormauritius.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boomshine.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouwma.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "br.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brambleski.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bridgetmcauliffe.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "btool.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bultdatabasen.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "business-institute.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c19hcq.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c19ivermectin.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cakesoverseas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canastasderegalointernacionales.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cap21-lrc.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carrozzeria.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cas-ebbers.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caseform.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casepariurionline.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cashconverters.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cashconverters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cashconverters.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "castelli-media.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cejky.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centrodemediacionconcepcion.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cernko.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "certusquartz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cestasdepresente.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cfdtrading.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cfst.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chocolate.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrisbrowntherapies.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ciallo.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cisi.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cistoaracnoide.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citycarremovals.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cizz.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clickseek.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "closingthegap.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudbees.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubcompetition.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cluin.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cn2euportugal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cocaine.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codereduction.promo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "concordance.bible", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coralenergy.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cosmeagardens.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cosmictourist.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "covenco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "covermusik-band.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cozinharaz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cristalid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crobeauty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crocheteursdefrance.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptoscope.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cuo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberfla.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cysecure.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "d9and10sports.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daili.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielroelsontwerp.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dbmnet.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "debt-consolidation-reviews.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "decentrala.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deineagentur.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delartouducocon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dentdelion-plugin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "detska-boticka.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dibo-ambasador.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disostruzioni.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djmania.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dob46.mazowsze.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doblejewel.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dogtoetreads.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domainedemanville.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doublespeak.chat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "douglassimons.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dpinse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drakia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drinkablegifts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drupalfr.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drwoods.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dt-privacyportal-ui.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-petition-petitions.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eberharter-steine.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecoresina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edgemasterspaint.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "efektfoto.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eitbtaldea.eus", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elkovplus.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elodees.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elog.tokyo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eltec.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "empatify.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "endean.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "errror.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esideshop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esnlpr.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "espen.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essaychat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essaycoupons.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eugenesia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eugenics.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evalcom.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exactverify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exalthost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exerph.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exousiamg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fainlogistics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "falconieri.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fapplejuice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fareuntrasloco.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "farodegracia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fediver.city", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fediver.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fediver.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fedivercity.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferrikomm.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ffc-gerlingen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fh-chn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhglobal-zh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhglobal-zhs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhjtglobal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "financeforafrica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flacsoandes.edu.ec", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "floristavirtual.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flowers2moscow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flowerstoukraine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foi.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "formue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "francescocozza.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frenger.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "friedbergdirectfx.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fromageriedepeisey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ftfgroup.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuhui-zhs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuhuicorporate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funandlearning.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "functori.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuse.com.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fxcm-chn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galabands.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galamusik-band.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galamusikband.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galinkltd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gazeta-n1.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gbkom.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geschenkkoerbeversand.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giftbasketsoverseas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giti.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glennwilson.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalfuhui.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glz.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goodchoiceflowers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graduatewriter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gravelylawn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gravelymower.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greatamericanuk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "growth.design", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gruenhagenlaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grupoeitb.eus", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gshoes.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guillembosch.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "h0stb3rry.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haegele.consulting", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "halatik.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "halifaxsailingclub.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hanmandalu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hanmanxia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdaccess.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "health-ecore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthful.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hedonistai.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herbarex.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hermetas.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hfa3.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hhank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hillenbrand.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "himnosycanticos.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hipstermamaproductions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hnojik.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hospitaldelaconcepcion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hriveralaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "human-dev.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humanize.security", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humanshiftpaper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huynhviet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hypocretins.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idvchile.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igniteenergy.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ihr-finanzcockpit.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilpuntosano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imatraelekter.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indigenous.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insaneair.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inspireplanner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "institutoliderar.edu.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intercom-language.training", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intracellulartherapies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "invisionary.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipcim.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "islatortuga.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isolation-exterieure-thermique.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "israelflorist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isrib.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itscalculator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivfausland.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jakpost.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jasperhugo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeremiebt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jiri-vincour.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joannekemarchal.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobscan.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobsconnected.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johnabraham.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johnnyofans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johnthenerd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jonipuhakka.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joomag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jppc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katherineandkegan.love", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinnerfisch.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klassenfahrt-tirol.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klaus-pforte.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klausfischer.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klauspforte.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krugson.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ksst.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "l-ink.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laba.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lak.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lancertactical.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "larche.org.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "larryandprisca.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lasttootinaws.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "learnoutlive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leecountync.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legislationupdateservice.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lentesbrasil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesmills-redirect-test.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesschwab-privacyportal-ui.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "letvikar.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "levelx.team", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liberalartsedu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lindung.pp.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linxtter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lixis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locketurf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locustvalleyvet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logowik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loteriasdominicana.com.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lrq.icu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ltn.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lysethcreation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magnetoai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mahatmarice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mamanzaris.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marcdietschi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "march-consulting.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mariealber.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markt8asten.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martinhal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maryleemacdonald.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "massages-du-monde-charente.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mastersinesl.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattslack.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medicalbillingcodingworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megadimensao.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megasunsunglasses.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "merabsurviladze.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "merenbach.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meritcb.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meritsol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mescaline.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metabound.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meteopievedicampo.ddns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mhadegree.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "micharts.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "midam.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "millhousen.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mini-zoo.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mitchell.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miyazakian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "montala.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mossplants.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mostbetr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motorsport-passion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "movimentoterra.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mpadegree.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mphprogramslist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msgtrust.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mymartinhalresidences.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mysexpedition.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nafilia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naidoc.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nailartstudio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakada-shika.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nationalmower.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "negozimoda.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newmex.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsquare.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nexiopaydev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nft.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ngmx.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niaa.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nipponkousei.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nixpare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nnet.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "no-nat.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nomo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northbranch-md.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nothingbundtcakes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novumclinic.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nsv.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nurseslabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obpr.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ocean-sun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "odesigning.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onemoonmedia.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinembapage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onoweb.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onul.works", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osservatorionessuno.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osservatorionessuno.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "otipax.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oxytocin.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pacificbags.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "packwire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "page.lgbt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panierscadeauxinternationaux.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parishoftheholycross.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkersweeper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkweiher.koeln", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parolededieu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parquettisti.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parsi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partymusikband.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patrogers.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paycore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "payeasy.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paynexpay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peninsula360.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peregrinus.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pescans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peteschmidt.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peyote.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phagyo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phrenology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "platinumjubilee.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "player701.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playreal.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plintusof.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plusgrandevilledefrance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "po.ne", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "podrozwmilczeniu.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polatsemih.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poloniainfo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pombas.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poolvilla-margarita.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "popravilam.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "popravilam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "potadvisor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "potterish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powerling.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pradeepagrawal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "premiumshop24.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "presta-div-airs.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prettysimplemom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "priceactionhelp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "primeexecutiveoffices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privacyguides.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privateinvestigatoredu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pronikoho.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prosurf.com.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "provide-vr2005-1plc.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proxaccess.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychische-systeme.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychologydegreeguide.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pvgvethospital.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qrplanet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rad.plus", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiadoressoares.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radioiman.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rafalkukla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "railgun.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rapid-care.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rassistem.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rededecuidadores.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redhead.id.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redstarwholesale.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remo.health", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rendezvous-cafe.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rent.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retroterminal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rexuy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rincat.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rippling.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rland.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rml-liege.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rmrcapitalinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robertodivirgilio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robinmurez.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosangar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosedenellandudno.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royoy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "russianflora.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rust.yokohama", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rxphoto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rydercragie.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rydercragie.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ryderstatus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s2n.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sainthelenaparish.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saiputra.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salunganogroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samy.rip", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sante-actu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarto.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saturnus.consulting", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sbm.org.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schinkelplatz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schoolshow.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scpower.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seavision-latam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seavision-lixis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secure-graphic.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "segurosbantrab.com.gt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sfdchub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shamesofhungary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shamil.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ship-safely.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sibi.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simonewebdesign.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simpleavenue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simpleprivacy.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplesummerreading.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simrail.express", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simsmotorshop.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirram.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sitedynamix.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skybrary.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slyarts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smallchanges.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartmail.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartshousekeeper.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sns-beta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solechuva.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soundar.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sourcehut.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportcompactwarehouse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spribe.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spurstark.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "srto.win", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stage-privacyportal-ui.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "standardwohnungsbaukredit.ag", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "standardwohnungsbaukredit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starrealtypm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stay4all.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sthreemarketing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stjohnbjc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stockspy.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strati.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strikeone.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strokesurvivor.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "super-60.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "super60.ag", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superpaczka24.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "surreycyclingclub.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sweetcoraline.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swissaquashop.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tag-insights.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "takumikougyou.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talengo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tanomimaster.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tanuki.army", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tardishomelab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taylorfrancis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technikoma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technikoma.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technikplanet.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techno-utopia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teedinsiam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teleassistance-telealarme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teraren.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "territoriesredress.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terroinsect.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "test-privacyportal-ui.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebedfordcitizen.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecompliancepeople.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thenobullshit.coach", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thepokerpeople.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thepyrographytool.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thinkittech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thomasrichter.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tianle.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tjxcanada.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tklist.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tnt-21.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toledohydraulic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomasa.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tommybrown.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topoptics.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toppstugansundbyberg.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "totuus.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tradebuilders.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transvault.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trapichelaesperanza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "treeliss.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ttshapn.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tumpicon.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turnkeycybersecurityandprivacysolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ukmerges-vaikyste.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unikrn.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uniqopter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unix.family", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valach.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vancubers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "varianteespiritual.gal", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verified.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vesseldove.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vetuni.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "victorc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vilawatt.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villasupport.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vincour.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virtuaal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vwp.su", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webastra.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webizer.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weirdork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weirdorks.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wfigueiredo.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whapn.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wheretotravel.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whypowerbrush.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wigger.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikicuida.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wildlifeforafrica.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wilshirelawfirm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wisemans.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wisereducacao.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wisr.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wohnungsbaukredit.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wouterpetri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpckraft.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wreckeroo.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wushka.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wyriverton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xmessy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn----otbabmp3ae.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--mbius-jua.band", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yapper.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yayginegitim.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yfh.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yodelmobile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yorcar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourdailylocal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourdata.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourmaki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yukigroup.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zerodoubtclub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zovoscitvfu.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ztctarrin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zukunftswege.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zypernreisen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0066.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1037thefoxrocks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1650thefan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "186588.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1bk.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1zwolle.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "24hrbrandbash.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2manydits.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "360degreecloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "369bin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "375realty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niu010.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niu353.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niu699.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niu885.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3tiers.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4chairs.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4hourmini.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7dies.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "935themix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "9412220.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "951thebull.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "987kisscountry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aahhbali.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abcideabased.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abdulraheem.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abdulraheemalick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "absolutepackaging.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abstractive.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acacia-education.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accessauto.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acht-pfade.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "achtpfade.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acidtool.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acnenaturalhealing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acraftedpassion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "act-web-sa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adacomputerscience.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adaeze-wolf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adventuretoursbend.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affordableasphaltcompany.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agurskie-vodopadi.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ak-wohnen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akashi-kiharu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akashiya-b.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akemisp.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "algbra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alliedartistswv.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "almarin.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alp-eastlink-portal-model.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alp-samsungca-portal-model.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alp-spectrum-portal-model.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altenagala.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "americanwalkincoolers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ampflower.gay", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amz-tas.ba", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andobil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angstakademie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anshlag.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apaesthetics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apix.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apixmessaging.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aplusz.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "app-alp-cp-boost-model.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apthesys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "archion.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arcolasecurities.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "argxentakato.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ariensfoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armateursderhum.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "art-athens.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artisanhd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artsmagazine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arturkraak.duckdns.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "as200351.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astleyplumbing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atproducts.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atticlightstudio.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autantic.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autoambulanza.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autorabit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avalonartstudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azure-informatique.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "b1031.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "b11p.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baang.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babamamatermek.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "backslash-n.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baithuti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balogkrisztian.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bandolino-bewind.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bandtcollections.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bangsparks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barhan-sarykum.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barreiroappraisals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bclserver.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bconcept.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bcs-talk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bcsnygroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bdasites.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bdeducator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bealeslandscaping.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beargorilla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beeming.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beeportfolio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bentcreekfarm.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestvape.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biancavandenberg.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biggive.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigudi.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "binnacle.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bio-dolt-aveyron.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biologymusicvideos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biotorrents.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biserica-antiohia.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitga.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitkiselreyonum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackbirdsigns.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blistertrackandtrace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blockstream.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blueprintsdogstudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blueridgemachinery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bnssigns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boesckens.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bointon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bootsy.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boraarat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boutique-pcland.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bovileva.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boxofficefunding.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bramstonbeach.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "branchchristianschool.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bregmanfance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brewcentralny.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brightmovers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brocos.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bruyerre.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bs09.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buddobot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buenosairesconnect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bustepaga.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buzzclub.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buzzeditora.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cagalogluhamami.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "callum.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "callummoore.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caluette.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calumcrawford.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cambiata.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "campuscom.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canae.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cankutahya.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canvaspersonalized.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cardmates.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carecm.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdt.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cec.org.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cellnatsci.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cerbos.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "certificationacademy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "certiquali.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cfvbfbtlotto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chasalin.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chatcontrol.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chatgptwith.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chessustron.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chiesanuova.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christinasattler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christthegoodshepherd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cinet.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clear-eyes.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clickapro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coastalmotorcoach.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cochranwriting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cod4mw.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codeprotocols.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coffeechi.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colchesterglobal.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colchesterglobal.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colonialfilings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "com.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "commuty.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "completecomps.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "completeonlinepharmacy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consejoescolardecanarias.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consultaveiculopelaplaca.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coor.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "courstoujours.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "couteauxsurvie.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cpme-industrial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "craftmenu.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cratitadelicioasa.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creativeground.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creatuasociacion.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "criaraposta.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crimewatchus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryosite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crystalprinting.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csc-muenchen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cscholz.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cubistmediagroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "curiousduck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberresilience.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dacgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daer.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dagestan-guide.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daisydollyandme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dajaskincare.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dallincooper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dan-saba.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darkbit.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daviddesberg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davinciwaldorfschool.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daycomtech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daynightdrugs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dcmeventmanagement.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dcustody.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deanvending.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "decompressneuroma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "def-pos.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delphij.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deltawolf.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deshalb.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dexon.ws", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dg-komm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diagnostics.stream", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diankpi.ws", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diggerlandusa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digimortals.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digital-vorwaerts.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "directadmin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "directions.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dm-0.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnevnichok.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doclures.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "docugate.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dogsport.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donedeal.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "downthebayoucharters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drinksontap.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "driventheatre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drtragency.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dtdi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dubaiaward.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dvd.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dvds.casa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dyma.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-networks.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-petition-support-us.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-petition.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e4mc.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "earthvoice.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eastleigh.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ece-inc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "echovintage.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "echt.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edudip-next.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "effectiveconsulting.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "egitimpusulam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ekranoplan-lun.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elcient.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elektromosev.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elektron-elektrotechnik.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elephant-orchestra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elitedns.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elitewealth.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ellevate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elliotlewisms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elsassdestination.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eminencepools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "empatify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emurom.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enattendantpauline.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "entruempelung-berlin.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epicawesomemods.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "equans-kaelte.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ersei.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "escriva.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estetica-bilbao.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estradatech.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurotechme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evdenevenakliyatistanbul.gen.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everride.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exabike.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exceptionalfirm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exodus-net.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expressivee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ezekia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ezoterizm.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faces4watch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "factorchave.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fatih-catering.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fedifeed.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fedistatus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feelgoodcasino.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feikuai.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fencethisyard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferhatsurer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fezbet.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fh-jituan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fileport.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstlegal.group", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fisio-clinics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fisioterapia-online.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fjkl.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fleetlinkatlascopco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flosuretechnologies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flowerstopetersburg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "floyt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "focusti.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "followpharma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forgetfulmomma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forixcommerce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "formation.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foro.trading", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forsvarsmakten.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foutras.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foxholehq.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foxus.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frankmungoattorney.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fredtalk.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freenft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freight-news.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frogeducation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "froginfra.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "froglms.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frogos.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frogplay.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frogtest.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "full-hd.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fundex.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futureimmigration.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fxcm-online.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fxcmaffiliates.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fyrebox.guru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "g15ubezpieczenia.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "g5yss.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gabskent.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galia.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gametainment.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garage042.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gardurialuminiuiasi.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geekelectronico.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gitelermitage.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gloryhealthcarellc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "going.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goodearth.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gpstrackersaustralia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gracealexwatch.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graphicinfo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graphicps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gravely-dealers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greatdanemowers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greenfunder.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greymuzzlemanor.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grillboxtaxi.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grovefinancialgroup.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "growitsecure.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grupolegalsgf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guardianangelportraits.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ha34.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "halterner-tc.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hastingsapplianceservice.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hasx.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hatakekaigi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hausresidential.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hayalgucu.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hayvid.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdrip.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "headwall-hosting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hedonisticimperative.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hekatija.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helena-loos.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helia.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "her123.win", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heshamelsawah.clinic", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hey.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "higsegeirl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiiumeretuulepark.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hinatayamagolf.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holzbau-lepski.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homedizz.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hondaindiafoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hsbuild.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hydrozen.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iamlearning.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "identity.aero", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ihersua.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ikara.social", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iksworld.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ila.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imosthailand.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imperiodeleones.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inboxxme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "independent-photo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inferencium.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infiniteserieslabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "influentsolutions.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "innovativetrials.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inputdriven.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "instantinsightinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "int-refer.nhs.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internationaldesigncomp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intosec.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iowacorncountry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irbot.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irlpack.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irweb.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ishtamar.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isowebtech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "italianettepizza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iternova.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itradeit.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jagsttalschule.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jamestilburg.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "japico.or.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jatekjatek.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeepspares.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jesen.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johannabest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joshcaluette.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jotoma.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jsn.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justbydesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "k-amenix.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "k29.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kampanyaradar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kassa24.kz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kcfiradio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kchanews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kemian.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kensingtonsqca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kijkmeaanwanneerik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "killeenhardware.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinamedia.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinderchirurgie-muenchen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klempin.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kmch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kmhesaplama.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kondi-flex.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kondi-flex.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kondiflex.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kondiflex.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koppbilling.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kopsinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kotydomowe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kozmetikatrend.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kutyamacskashop.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladislav-antos.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lakecity-obgyn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lanconstruct.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lansdell.family", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lasalle.org.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laslo-hauschild.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lathamwatkinsplatform.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "layt.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lazynap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lbbw-markets.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lear.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leasing.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leblogdumineur.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lekasedgar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leptitbaltar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lerks.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leskei.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesparqueteurs.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesrivesdegaronne.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lestudiopecot.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "letyro.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lexeri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lgelectric.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifelinespublishing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liquidcorp.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liteanalytics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "littlegianttraveler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livingislands.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lkmt.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lobbster.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lockdownfm.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lockemower.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lojasvirtuaisesites.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "londonwomensclinic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "losangelescarpetcleaning.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lospadillas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovelandelec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loveuno.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lqy.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luxinfine.su", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lvkasz.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madetosave.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maitum.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maltarugs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manab-it.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marilynandsarah.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matchmove.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matreon.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matsson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mbr.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mccarthyprestige.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mdangels.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medicimaging.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medlink.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medycznyangielski.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meetcleo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "merisia.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mesquitelandscapeservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metacred.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meusucesso.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mf.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mhastey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "midesa.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "midesa.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "midwestragdolls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijndiad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau-amsterdam.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "min2.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mindmynature.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "missourivalleyhomes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miyohiro.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkbofficeshop.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mlclaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobilci.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moin.solar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moonproject.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motorparts-online.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motostyle.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mountainspiritinn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mpfront.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mpi-sws.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msn.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mt1130.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mudrex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mulchexpressusa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mundofriki.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muonmarketing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mustangapparel.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mvpzd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-darkon.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-pharmacie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mybro.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myowntutor.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mysticalroseschoolofcaloocan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naturallyuncommon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natureshealthandbody.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nbapc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nbios.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nccny.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netcake.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netco-group.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netco-system.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neuca.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ngbilling.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nhacthanhcavietnam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nickmazuk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicolelaby.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicolettapallotta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niro.bio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "norcalworkcomp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nuraling.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nutra.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ocbc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oddsseeker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oemparcacim.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olivier-verbois.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olofly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oneclick.accountant", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onefocusapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ongoal.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "online-concepts.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "open-greenenergy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "open-procurement.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openagenda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opensecurity.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opioids.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optigear.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optykgill.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "origent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outofthefog.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outworking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ozero-kardyvach.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pacem.global", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pacificstates.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pack1537.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pagespeedwizard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pancake-world.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pantonshire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paragliding-lessons.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paridurable.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partigoldendoodle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partsandscore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pauljamesblinds.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pc-pharma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pelinca.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pennylane.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pensierolaterale.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pfandbriefe.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phonex.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phormulagroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phqsoft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "physicalmedicineandrehab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "physio-nrj.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pianopronto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piifunding.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinedahair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pittsburghhiresveterans.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixelpaper.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plantepakken.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plumsail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pochikikaku.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pollock.gallery", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portcomputingsolutions.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portofsubs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pourali.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "power-plugins.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "power-recovery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powerfulcom.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powerhouse.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pozaapteczny.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pracovita.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prauxilium.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "praxisamziegetsberg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "press.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prio.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privacydev.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proamis-moodle.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "procountor.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "procountor.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "professionalfinance.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "profor.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "progres.construction", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "project-alice.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "project-trans.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prologicabg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psaho.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychotropical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pujcky.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pulsus.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qeddi.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raassembly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rabbithash.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rabbitserverlist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radicaltransformationproject.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radio.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ran-ran.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "randomforestweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rawballs.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rayonbricolage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rc-refer.nhs.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rcelectronica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reehomes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reel360.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reelchicago.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reflab.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reja.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reliablecanadianpharmacy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reliablepi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rette-ein-kinderleben.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revechat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reverce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rhyswebbmassage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ricelasvegas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rickmanlegal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ridho.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rightstartcapital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rightstartent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rightstartinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rjclegeplads.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rmbnsw.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rodpenroseracing.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rogerfages-peinture.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rogplus.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roguetech.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "romana.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosevillekindy.nsw.edu.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roverkob.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rpgfan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rtebensoc.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rubonnek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "russpuss.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rustdesk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rzsmt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s-zwrm.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saaral.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saboresdamontanha.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintgabrielparish.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintjamestheapostle.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sakirdak.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salesdock.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salesdock.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salesdock.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salva.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "same.lol", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sammich.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sampath.lk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samroelants.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanche.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarahbowling.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sareena.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sba7a.loans", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schaumburg-dachundwand.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scheidegger-kaesealpe.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schipholwatch.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sclasupplychain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scottsfreightshipping.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seaif.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sellerwiz.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seoptimize.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seresco.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seventymania.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sextw.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sgnation.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shan.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shanwong.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sharaf.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiftfrequency.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shochufes.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shoppsb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shutts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shw-bw.dyndns.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shw-nc.dyndns.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shw-rz.dyndns.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sideofburritos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sideofburritos.social", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplifyingcollege.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simply-bob.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simply-pdf.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skachat-filmi.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skiptontownhall.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimentocalcinacci.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartphone.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartzonemikulov.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smereka.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smrtgeekdevs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sno-tek.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snotekbyariens.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "socious.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solifi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "somevideotapes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sorellinteriors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spanglishls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sparkeddigital.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speedwell.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spiritualpsychologyofacting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sq0z.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squid-board.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squiresinsurance.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "srmllc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "srmstatic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "staceygillinphotography.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stahlzart-moebel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stahlzart.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "standardwohnungsbaukredit.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "standardwohnungsbaukredit.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stefaanoyen.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steingergreeneandfeiner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storepaperoomates.co.bw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storepaperoomates.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storepaperoomates.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stratuscloud.group", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "streetwitnessing.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sulakskii-canyon.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "summit-research.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sumtotal.host", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunnysideinc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunsparksolar.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suomentilitoimistot.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "super-60.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "super60plus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superuser.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swiss-watch.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "synapsemedical.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syscap.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syscap.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syscapassetfinance.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syscaponline.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tabulartools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tanzaniauk.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taura.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tc-solutions.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tcddtrensaatleri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tchak.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tcholet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teachernewsbd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tecnicainnovacion.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tedulearning.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terrasandcookingoutdoor.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theanimalskingdom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebuttonpost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theestateplanninggroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theeyewearshop.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theredhouse.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thibautdecherit.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thomaswicklaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thoughtleadersnetwork.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "threefisheswebdesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tidal.zone", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiendamagia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiete.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tilitoimistopaiva.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinastouchmassage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "titularizadora.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tkafinearts.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tkhsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tldata.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topluxitalia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torontolife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toughcoding.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traccxs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transanglo.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traslochiinternazionali.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trucockpit.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trucockpit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsbraz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsbraz.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tt.gt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tudoxwallprinter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tueri.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "u7ae.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ueliexpress.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ufar-ntds.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uizard.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ulbr.dnshome.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ulnesshealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ulrikethiele.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unhub.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unidata.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uniqclothing.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uniquest.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upforshare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upwardflourish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usgovernmentnews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uspory.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utageno.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vapehousebh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vapotank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "var.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vat-funding.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vendor-finance.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vendorleasing.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veren-group.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verticalstructure.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vertichost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vigilanza.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vilgain.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vilgain.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ville-nesle.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virkhost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visapro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visapro.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visaprolaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visitbinghamton.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visitsights.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitaminegeszseg.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voxfa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vpn-sverige.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vrimmoinvest.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vrimmoworld.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vrrebank.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vsoflavors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vypij.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vyrubka-derevya.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wa-m-web-alpcustomer-portal-caixabank.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wa-m-web-alpcustomer-portal-timfin.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wafflehacks.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wakeupeire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webappperformance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webcarebox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webdock.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webowell.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wenducation.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wichtel-umzuege.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wifi.com.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winpic.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiseup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wohnungsaufloesung-berlin.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wohnungsmarktbeobachtung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "womenagainstviolence.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woodstar.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "words-are-pictures.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workshop-assets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldpool.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wrhomedecor.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wydmy.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wynajmijkontener.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xkwy2018.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--h-1ga.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yaazhtech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yamunaexpresswayplot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yatserver.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yellowball.fm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "you-working.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yoursupportline.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youston.agency", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youthsadda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yozucreative.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yrityksen-perustaminen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaba.training", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeynabacademy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zollo-hauswartung.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1001cachimbas.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "12.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "125m125.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1vs2.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a2zplumbing.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aaaplumbers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aaogaragedoorrepairaustin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abraofilho.blog.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abstract27.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accreditedbuildingservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "actaflytt.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "actionglasshouston.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "admglass.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "administraitor.video", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adrianspeyer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advanqi.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affordableautoglass.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agenciatecben.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agenciatraffic.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agenziefunebri.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aggtechconcrete.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ainameals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akumarjain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "al-craft.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alabamafurs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alamancetv.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": "alimahmood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "all.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allianceborderservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aloeveralisboa.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amanydesignstudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amicare.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amightyoakbedandbreakfast.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amongusmerch.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anaxvip-sp.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anster.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "answerconnect.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apdtalents.org.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appleglasscompany.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appperformance.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aquato.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "argosrisk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armatura.kiev.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artofstonegardening.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "as198768.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asennemedia.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asersagua.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "assistouest.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "assoft.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atisoftbarkodetiket.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aviandirectory.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axist.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balt.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barexam.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basis-online.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bbg.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beechwoodindustrial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beesnoosa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beeweighed.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beira.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bellamy.md", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bendwebs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benicee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berntmuurling.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestcanvaswallart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestincservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biblesearch.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biddulphinbloom.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigtstexasbbq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biocentricinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bizopia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blauwereigercoaching.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bleatingsheep.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluemodus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bmak.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bmelecevolution.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boerderijspel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "botanical.house", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bourrelier.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bragis.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brainboxai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brankor.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brankor.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brendasartstudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brighttomorrowproductions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brownacres.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buniq.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burlesonconstructioninc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "business808.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "butcherboymarket.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "butorvasarlas.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buttertrick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyorsellcampers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyselldonothing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bvng.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caesar.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cajaregionalserrana.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calculatorspace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camppisos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casa-carla.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccnda.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cec.org.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celestialdental.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "center-mts.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centrumkulturyslowianskiej.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checkurinsurance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chichi-cats.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": "chinadream404.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christopherjferguson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cisopoland.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "claraanalytics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clarachampbell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "classicnova.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "classicnovaandperformance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clautopieces.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clemdesign.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudhero.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudsecurityalliance.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cna-ecuador.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codeninja.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coderme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colafoodcritic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colinqi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collar.place", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colombiajobstoday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comet-pct.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comet.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "commanderone.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comprofacil.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conformat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "connectedmind.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "connectika.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consumer.org.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "continuousinksupplysystem.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "controlit.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corelationinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cosmv.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crazilyeverafter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creactivatecomfandi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cts-companies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ctspcallao.org.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cuesplus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "curatednow.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberpro.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielnet.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dashwebconsulting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datavitec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidorsot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ddhlawyers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dealsinaz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deboekaniers.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "debruns.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deinhardt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demenagement-chalon.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demenagement-sfd.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dentisalut.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derattizzazioni.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derkbarten.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "detailedimage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diagnost-auto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dialadigger.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitese.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dignilog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dipuma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "directnic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discoverthetech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dmhoteles.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnshelper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnsnox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donedeal.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dramaqueer.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drinks.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drsamkelojiyana.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-uteplitel.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebpc.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecargo.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edeka-peper.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edgar.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edgeimpulse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ein-itin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electmikewaters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elektrolety.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elitepumps.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elki-musik.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elvonet.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emenaspa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enby.army", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "energylocals.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "entheo-worldeyes.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "entityfiling.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eoa.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epikchat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eraiescrow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erosmowy.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esenaskincare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eshotsaatleri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esteticka-chirurgie-nohy.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estudionale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eunicetan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurovision.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eusv.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eveandi.health", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everand.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faaq.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabulous.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fadaex.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fallout-tattoo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fang-den-sommer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "farlitesolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "femboys.pics", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferngas.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhope.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finanztime.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "findings.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finesio.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fintracker.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forixseo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "formation-commissaire-justice.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fortigate.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freetranslations.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "froicorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuhui-web.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funchal.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futurenode.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "g7liveseafood.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galhristova.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamelarix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamezsmack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garrettmotion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gayonly.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "generatorcountry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geret.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getback.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getdoc.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getidee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getidee.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giftbit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giftsenda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glesbymarks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalseostrategy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gmc-roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gomeya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gpwatimes.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gra-gcc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greatoceanroadbrewhouse.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "green-gardens.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gregmilton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gridgroup.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "halloweencostumesideas101.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hamsternetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happybabyhappymama.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happycustomer360.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hcfeye.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "health-toolbox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helloheadsup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hemrin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hendrix.com.ng", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hevenerfeld.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hgb.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hillsboroughchristian.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hireshield.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hix.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holly.lgbt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hooperlabs.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hopeandhealing.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hscomposites.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huny.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hvac-distributing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hvac-distributing.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hydrosaat.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ichbinhuebi.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igamingdirectory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ignite-reading.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iltis.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "industryskillsaustralia.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ingenuitycloudservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inmotionmktg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "instant-hack.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intellective.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irelandstats.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ixoso.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jab-graphics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jackdanielssauces.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jacksonchen666.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jacobspctuneup.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jaguar-network.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jakumammy.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jason.red", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeda.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jedayoshi.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jemputan-karyawan.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jennysbakery.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jessihod.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jonssheds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joseflegal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jouons-aux-echecs.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jsre-kinki.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juliankraemer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justacrazygirl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juventusnews24.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kadinisci.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalmservices.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kcsconstructioncompany.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kelamb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kenny.technology", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "key4.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kokoronomori.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koncertit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kp-opt.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kretschmann.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kroati.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuralink.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kyledgoodwin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laettnercamps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laksa.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lastminutehealthcare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leekimball.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lentusaudio.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linkindex.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lis-na-plasty.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lordlink.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lowtempind.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lty.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ludovicozitelli.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luisjosesaldana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luxure.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "made2coach.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magicvoordeel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "managedserver.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manhack.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manhattan.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manyo.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "master.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matej-oliva.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matthewhaeck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mayslandingcornholeleague.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mchel.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcsrvstat.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mctools.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mea-vota-uitvaart.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mebelipetrov.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medienhelden.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medyahabertv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meinezuckerbaeckerei.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melaniefaucher.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "memberplushq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metalnivrati-iasenko.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "methode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meusextosentido.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mgaroz.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "micatalogo.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "microcosm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miih-kiosk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milkacat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miraizu-recruit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mk-builder.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mmoe.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moksha-movement.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mon-match.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monitz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mooremillerinvestmentgroup.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moth.monster", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motorparts-images.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "movingservice-houston.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrcool.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrcooldiy.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrcooldiy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrcoolfranchise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrcoolfranchising.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrcooluniversal.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrcooluniversal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrsejf.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "munkeeboi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musikholics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mussonsppe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-coordinates.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myfinance.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myfinx.bh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mymediabox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n1mp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naheulcraft.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "namabank.com.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "namestudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "namestudioapi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naturalprobiotica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naturschutz-holderbank.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "navegantesdelcosmos.ec", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neenan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nehmer.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neontemple.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netfiles.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nfs.pub", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicwortel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ningwei.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nja.id.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noah-witt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noleggiovetture.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nordmark-pharma.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "npass.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzsafetyblackwoods.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oasis-info.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obss.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obss.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ochutnejitalii.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oettig.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "office2s.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ohcanvas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ohglowup.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olddragon.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omroepvenray.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oncentive.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "operahedeland.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orangeappalam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oursweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oursweb.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oursweb.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "overlevingsmessen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ownsport.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pa-w.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "papillegustative.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pareshukuk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "particleslam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passwordsapp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paysbuy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pensionchien.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peopleskills4u.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perf-b2b.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ph89.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pharmacie-matignon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phsa.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phyxion.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixel-ninjas.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pjc.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pmconsulting.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pobierz.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powerplan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powerswitch.org.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pplusp.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pravex.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prestigehealth.services", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prg.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "printa.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privylabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proaudiogc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "procarmanuals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proficio.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proficiodigital.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "projectvault.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prpr.rip", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ps194.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psdmarket.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pssbau.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychotherapie-lichterfelde.berlin", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puntacanapizza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qlock.mywire.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quillenmarketing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quiltmc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "r2cdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rabbitcare.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ragsnprints.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rayj.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "razvan.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reallight.ge", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redsift.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redsift.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reenio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reenio.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reenio.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reframeituk.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resch-verlag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "restoclub.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "return.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revolucioncharango.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rhinosf1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rhyno.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rhysg.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rime.red", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ristorantedabeni.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rollinsdogtraining.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rouwcentrumterheide.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rustup.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sabris.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sacfreightlines.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salge.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samuelphotos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sandbox.i.ng", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarbarhetsskanning.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "satismeter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "savcurv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scfssp.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seerainer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sega73.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seinolab.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "semtelco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "senat.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seo-sem.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servelink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serviceforge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seuntaylor.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shadesofgray.law", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shadowmas.ddns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shipengliang.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shopdiy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "showerdoorco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silverscopedesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silverwolf.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simone.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skirwin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slbbiromaru.sch.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snekul.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sofasthousebuyers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solgar.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sollah.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sollahlibrary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solutys-btp-logistic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soluzionefightlist.altervista.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "southernvalve.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "southsidebuildingcenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spanishenglish.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportcucc.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stateserv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stephanielacroix.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stopever.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strawberry.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strawberry.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strawberryhotels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stroymex.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuccokingsfl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studentrobotics.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "survivalgearideas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suvisioninc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suzansalem.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swissquawk.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swy.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "szemuvegtrend.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taiwanbible.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "te-an.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tech-dempaz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techmeout.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "templeoverheaddoors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terumoindiaskilllab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "texasconcretereadymix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "texfunding.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thegamecave.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thegreenlawreport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "themindcollection.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thephoenixdg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thesaltsanctuaryfl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thewaterfrontpoole.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thomasvanlaere.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thorntonshvacservice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thriveondev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tifa-233.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timelycare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinonawall.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tmn.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tommys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tools-services.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top-super-60.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top-super-60.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topitalianscientists.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trabajoreal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trainingflow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trainingscatalogus.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "translab.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "translatedict.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ts-farm.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ttm.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tunisieconcours.tn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turismomagdalena.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turitzadr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turkceingilizce.gen.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turquoisetassel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tylerharcourt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "udenrigspolitik.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ug.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ugarte-zestoa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ultimatef1experience.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "umamibites.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "umbrellamediagroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "umeligence.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unej.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unitedvalve.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upgintl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upperglass.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utahphotogs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uuin.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uwefreund.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "v2.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vegasconcepts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veldhovenactief.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "versaillestourisme.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vhiweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "videomaker.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vielfalt.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villaboavida.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vip-it.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vippclub.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vistapaket.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visu.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vommu.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vonfurstenrechtstables.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vr-immoexpress.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vxlabs.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waibit.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wasys.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waterjetsale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wavenetwork.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wearecrew.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weavile.art", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webtematica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wei-mao.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wellreceived.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wendkom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whistleblowers.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiingy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wilhelmhansenfonden.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "williamle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wilsonfire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "windsorelectricalservice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "windsorrslsubbranch.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winter.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wirken.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wolsing.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wombatpass.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woodlineds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpexplainer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wplicious.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wylark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--1985-43d6eta0a4g2a.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--frderer-n2a.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--srbarhetsskanning-8qb.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xorion.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xr5.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yliarb.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yomeuno.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yumi2.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yxlon.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yxlon.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yxlon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yxlon.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhz.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "znjc.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zzz-diary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0ut3r.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1x4.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2dns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2logical.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "360primeview.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3sd.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4444.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4dstyle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "721010.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7x7cajalosandes.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "91bbr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "91quanji.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "99music.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a1cookingequipment.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abbaye-chaise-dieu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abfluss.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "about-it.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "absoluteup.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acct-affiliate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acquirebpo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adiph.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adiph.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "admstudio.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "admus.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adoropets.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adrianbrad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advantagetowing.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aeperocovilha.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aeperodacovilha.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aerospeceng.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agencestaff.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agent4fl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agilextra.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airburners.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aixlab.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akademiawellbeing.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akblasch.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akrochem.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aliamakeup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aliasbox.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alinneata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "all-eu-recruitment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allabouteyesvet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allboxes.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpencams.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alphadetroit.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpinatours.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altitudeco.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amadera.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amaxa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ambitionbox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ammsystems.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "and-tax.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "androidplanet.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andyconcreting.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anti-akw-ac.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antiquario.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antonioso.ng", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apac-fxcm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aphorismen-archiv.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appledroid.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aquasplash.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armiantichesanmarino.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arno-klein.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arnoklein.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artistiqueweddingphotography.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "as205794.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asia-fuhui.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asistentecx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "assentis.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "assentis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "assentis.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "assentis.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlacademy.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlantclinical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlastravelvic.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atuallemoveis.ind.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auronfencing.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ausbrightfacilities.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "austcm.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autodeal.com.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axenhus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axiomecpa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axon.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baas-sabiogroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badudeal.lk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basetherm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "batca.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "batterymax.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baumansound.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "becallgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beiqilai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bellezon-shop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beyondinfinite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bflw.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigspark.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bikesupermarket.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitnovo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bjcw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bjxx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackarts.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackstonetubrefinishers.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blc.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blueflow.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bm-academy.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brazzersvod.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bremsscheiben.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bridesforacause.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bridgecon.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brlcontracting.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brucemines.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buildingresiliency.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bulliontradingllc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bus2talent.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caiyou.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cal-pacpainting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calcionews24.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calcioweb.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camview.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canadianbusiness.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canadianlandscapeart.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cannabytes.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "capitalindustrygroup.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "capitalontap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carespot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carrumhealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carterkosturos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartesfrance.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "case4you.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catalyseurs-territoriaux.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catcatnya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catedralsantodomingo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdcflix.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ceidf-vie-cooperative.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centrofotostudija.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charismadesign.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chatelaine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chipsfuck.fish", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christiangaro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "churnfree.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cleanerstool.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clevermemo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clinlife.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clinlife.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clinstatdevice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "co-construisonsdemain.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colincogle.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comet-xray.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "complianceinsight.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "complyadvantage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "condignum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consumer.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coolleader.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coopcoa.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "copperart.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corthouts.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cpost.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crafters-room.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crawdadrepublic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crcncc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crewresourcesinternational.group", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crisp.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crowleybrynn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csgbusiness.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "custompainted.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "d-mind.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daft.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "damades.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daxoptimizer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ddkdoradztwo.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denbar.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "depotaraf.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desertbloomskincare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "designhoheit.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dev-lab.net.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dietherapie.tirol", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalprojects.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalzenworks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitecno.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "directb2b.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.modena.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "divas.joburg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dividendosfiis.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dizhome.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnb.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnb.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doctorkaraca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "docutayho.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dogadostuambalaj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domycoding.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dotlaw.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drechsel.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drsimonematousek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drspiro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drugfreeworkplaces.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dugehstonline.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duredo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dx-revision.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dyedurhamterrain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-ops.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-scraper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "east-westlogistics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easybaufi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easyhome.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebdaa-business.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecco-verde.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecco-verde.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecolelacime.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eeyo.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eglantier.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eiko-dch.ac.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ekwador.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electrastart.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elefanten-cup.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ellyscakes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "em-racing.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "embellishop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emojiterra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emporium-italy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ence.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "engelk.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enmowe.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "entretien-roche.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eoperth.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "equmeniakyrkanhallunda.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eromanga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essentialsource.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethiack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eticket.cr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "euchance.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eudiakok.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eujobsgmbh.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eujobshrgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eujobshrgroup.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "euromuseumcoins.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eusalesman.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eventlista.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eveonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evercheck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evetdermisin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evl.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evropaedu.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "executivoshotel.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exodus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exodus.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "external-share.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "extremebaking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabledsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "falconinsurance.com.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashionmagazine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fastvanya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "federacaofutebolmesa.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "federacaomatraquilhos.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "federacaoportuguesafutebolmesa.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fh-apac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fh-chinese.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fh-wechat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fh-zh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhasiacorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhasiacorporate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhfuhui.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhglobalcn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhgroup-chn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhgroup-cn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhgroup-zh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhgroup-zhs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhgroupcn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhgroupzhs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhjituan-cn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhjituan-zh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhjituan-zhs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhjituancn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhjituanzhs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhjt-apac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhjt-zh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhjtapac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhjtchn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhjtcn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhjtzh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhmarkets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhstation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhstatus-chinese.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhwechat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhzhs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fidgetbox.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "financial-standby.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finanzasydinero.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "findyourstores.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finnhjelpemidler.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "first-hyp.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fischerfutureheat.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fitch.group", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fixplusflex.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flameport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flemberg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flexhyp.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flextudo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flexundfix.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flowgate.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "folkweb.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fondationdesterritoires.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forklifttire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forksales.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forwardkredit.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fosseseptique.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fragolabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freitasbastos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frontiernav.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frugalmatic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuhui-apac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuhui-baike.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuhui-chinese.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuhui-chn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuhui-global.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuhui-status.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuhuiapps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuhuigupiao.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuhuihub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuhuijt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuhuilab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuhuimobile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuhuionline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuhuiso.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuhuistocks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuhuitoutiao.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuhuitouzi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuhuitrade.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuhuitrading.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuhuiwechat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuhuizh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuhuizhihu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fundacionminutodigital.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furgetmeknot.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furgetmeknot.org.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fusionespeluqueria.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fxcm.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fxcm.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fxcmapps-asia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fxcmbullion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fxcmchn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fxcmglobal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fxcmhub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fxcmidn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fxcmportal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fxcmzh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fxstatus-chinese.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gag101.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galapagosbig15.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gametilt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamezero.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garnix-openair.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gasesdelaguajira.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geisten.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genejournal.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geniuszone.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genohypo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geotec-weilrod.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gertrudentor.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gezginsolar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gigaone.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gimmickbots.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glaston.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glemtpassord.dep.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "global-fh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glyphosat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goalup.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldencoil.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldround.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gomoon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gonz0.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goo4it.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graniteedvance.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gregmarziomedia.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gridvis.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grtmmail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grupofarmavip.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gtld.fyi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guardianerm.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guitare-rumba-congolaise-school.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gulllakeview.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gunarchive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guttertex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guypearce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gynaeovariancyst.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gypsybloom.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haixihui.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hakurei.win", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hallanalysis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hamiltone.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hansinternational.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harmim.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hasandurmus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hbl-stahl.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "headlight.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hellosmoove.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heloisamarra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiatoconteudodigital.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hidashin.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "higginsroofing.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hit.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoffmanig.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homeinformationpackages.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "honbin.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostingphp.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelplazataranto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotshotsleeves.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "houston-building-maintenance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hqy.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hudsonsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huoyou.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hybrd.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hypo-fix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hypofixweb.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ihmc.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ihmmarketing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "illusionsix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imobiliariaprofit.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "improvingsleepnaturally.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "influencemobile.services", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "innerspace.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inorden.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inosek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inscripcionessena.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "instytutwellsense.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intergraphix.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internet-department.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internews24.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internewscast.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "invitarte.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iphoned.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iservicio.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ismailtoraman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ist-toll.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "istudio.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itscc.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iwiki.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jalgut.group", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janoshida.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jaylewis.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jetzhang.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jhj.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jkfasham.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joeysglassbaytown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johnhenderson-god.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "josephcz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jtl-software.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jtl-software.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "julditec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jwroberts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaddex.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kapilarya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaplanprofessional.edu.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karloluiten.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kastrupvinduet.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kasynoanalyzer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kavshipping.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "key.sa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kickzy.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinichi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kleinlich.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klimakomplekt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kodes.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kombikredit.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kondi-flex.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "korttipeli.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kryolansaudi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ksstille.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kubern.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kunugi-inc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kwnet.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kybalion.info.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lagencerie.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lajessaofrancisco.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lakesideweb.design", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lamula.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "larsm.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laughlinfss.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laycock.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "layer.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lazionews24.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legrub.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lehnc.ddns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lerameau.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leros.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lf-space.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lgsystems.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightsouts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linkriver.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linu.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liveeventartist.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livepainter.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lixinnovations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lnsk.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logopedickyden.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lojaapi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lrbm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lucidlabs.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m2dleadership.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "machinerysafety101.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maersktankers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maidalawfirm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maidens.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailplus.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maisonpourtous.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maki-it.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malkingroup.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mammothpublishing.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "managefuhui.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manelbenlloch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martesanamilano.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marwadionline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mastips.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mastodon.cr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mathechor.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matozone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattbray.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matzoos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxbuelk.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxpoint.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mazouttank.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mbcom.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mbsunu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcubedigital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mdmhukuk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mebtall.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "media-journalism.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediaprint-eco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediassistindia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medpost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mein-betriebsrat.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mein-restaurant.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meine-mav.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melino.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meta48.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "micxel.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mielehybla.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miguelangeljulvez.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "millionmark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miranza.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "misskappababy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mito-meishi.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mlpk.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobilehydraulics.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moodsta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moped-versichern.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moreoptimal.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mosdot.org.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motodeal.com.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrstuudio.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtncoi-coe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multimedia.or.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mushing.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mvbstyling.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mx310.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-carrent.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-fuhui.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mycarecrew.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myfuhui.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naehenfuerwahrekleinehelden.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nag.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nandi.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natbomusic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natty.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ncmc.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neighborsunitedwilmington.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nekomoe.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nen-ga.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsfinale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nextdayoff.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nigelpentland.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nilslandscaping.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noderunners.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nokton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noktron.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notby.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nuestraboda.ec", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nw-glass.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "observatoire-des-partenariats.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ocapiarquitetura.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ocsnet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "odd17.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okinext.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olgapankova.art", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omniaaerospace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onedevonshireplace.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oneest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onsoppad.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optic-street.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optimakers.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "os33.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ostimyedekparca.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ostravskypediatrickyden.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "otticait.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "overhead.com.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ownhost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ownsky.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pagodart.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "painteddesertfrenchies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panchajanyafashions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pangea.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pansys.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panszelescik.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parasgroupindia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkstonegp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partsdost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patientys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pauloboer.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paw.net.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pawsitiv.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pedicurepraktijkvelserbroek.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perfect-blog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pgp.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piapia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinceau-peinture.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pittandmoore.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pivio.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planetun.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plaqueimmat.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plasticflash.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plateformecapitalisation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pmc-maisons-bois.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pokon548.ink", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poly.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polyna.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ponabana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pools.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "popphoto.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powerlp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powerpilot.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ppmlocal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "praxisgroup.services", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prestaandsons.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pretty-smile.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prettyskin.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "primapak.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "principalcomputers.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "priv.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proficio.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prokey-marburg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "provinstyper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prowi.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prowise.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pruijn-overheidsadvies.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ptsf.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purenhd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pw.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qnap.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qnap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qnap.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qnap.com.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qnap.com.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qnap.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qnap.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qnap.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qnap.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qrsa.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quillandquire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quivedo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rabbitcare.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radio.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radio.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raisingresilientreaders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ralaoui.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rasaja.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ratingostar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rc.cruises", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdmc.vision", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recroommasters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redcode-web.design", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regenwaterput.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "relyon-plasma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rentaciudadana.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reptilepoint.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resiliencebox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ressourceportal.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reusorecicla.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ricedust.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rmcinsuranceservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rokales.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rolamar.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "romadprojects.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royalcaribbeanentertainment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roycestars.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruanbiao.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rusty44.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sa-stu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sabrinajoias.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salariominimo.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salernonotizie.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salonmarjon.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sandiegolifechanging.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sandres.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sandssteelservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanlitun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "satvasolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "savvydevelopment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sayehsazan.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schellenberg-web.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schellenberg.ac", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schuim.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scottbroad.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scrot.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scservis.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sekundadosetki.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sementesquati.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seminovostoyota.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sergelapointe.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serkozh.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shawlumber.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shenandoahrealestate.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiningservices.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shpfy-manager.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sibs-dance-diamonds.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sieplo.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silvermama.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simartik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "singaporeconventionweek.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sisms.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siterapidowp.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sizeofvoid.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skintillation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skorzew.ski", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyfibertech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sloterplas-management.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slovenskekasina.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solsticecam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "somnus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sourceforge.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "specialplasticparts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spicandspanroofrestoration.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportspeople.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "staffsante.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "standard-wohnungsbaukredit.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "standard-wohnungsbaukredit.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "standardwohnungsbaukredit.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starship.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stayinbusiness.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steinbach.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steolo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stevin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stimula.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stop-tihange.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stop-tihange.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strawberry.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strawberry.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studiowildverband.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "super-60.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "super-60.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "super60.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "super60.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "super60.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superhyp.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sybersense.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sylwiaspychala.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "synonym24.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "systems-thinking.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tabular.tools", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tambre.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taubin.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tayho24h.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tbkwatch.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tbkwatch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tbkwatch.org.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tcapws-dev.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tcapws-prod.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tchouktchouk-baroum.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tci-style.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tciit.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teaterbristol.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techhh.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techmayhem.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tecnikan.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telestepina.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telohagopor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teriva.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testvision.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theangelushouse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecolorbarph.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thelosangelesconservative.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theprimegroup.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theultimateshave.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thinkoffer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiindia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiktokdownloader.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tipydokasina.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "titanyumkaplama.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tjplabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tm-sydney.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "token.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top-b.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top-super-60.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top-super-60.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top-super-60.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top-super-60.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topbright.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topsuper60.ag", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toptenwebhostingsites.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tordo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toursaindia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "towerdefen.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trackdays4fun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trackinsight.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trade.mn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transco.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "treier.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trimn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truckdeal.com.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trudicollus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tube8vip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tunix-openair.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turcan.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turnaroundinsights.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuttoandroid.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ultrapedic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uncut.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "universodelasaludanimal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uniword.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urbanovich.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usoog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uvb.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "va.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valtio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vanderbeek.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "variatkowo.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vaultdoma.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veramark.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verbundkredit.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verbundkredit.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verbundkredit.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verloja.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vila11.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vilgain.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vindelicum.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinelli.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visunext.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volksbaufi.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voyage2africa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vps-green.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vtm.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wangji.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warszawska285.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "washub.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "watchcom.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "watchcom.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "watchcom.org.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waterfordstoves.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webcertificate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webdesignsyourway.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webisoder.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webpcstudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weddingartist.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wehaa-server2.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westburyfestival.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westreet-store.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whining.blue", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wl-bank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wl-bank.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wl-bank.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wlbank.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wloch.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wlpc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wohnungsbaukredit.ag", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wojciechteichert.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wxw.guru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wxw.ooo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wyofitness.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xanalys.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xinrui.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xmzq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--4brt03c.xn--fiqs8s", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--vihrekeino-u5a.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xr5.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yloti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yubico.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yuchun.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ywamphilippines.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zabe.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zajebancija.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zerolime.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhangmenglong.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zoidberg.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zpapieru.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zphmetalus.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "071615.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "078895.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "12vpx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "142710.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1682019.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "19770620.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1atelie.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1mgt.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1tomplumber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "203700.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "225950.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "253007.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "293685.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "326243.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "35wsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "365renovations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3ct.group", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3dall.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3pro.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4creative.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "52pojie.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "52share.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "589174.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5elementostudio.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5startrucksales.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "636051.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "740660.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "757409.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "763361.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "799713.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "817615.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "819323.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "825148.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "88acesmaritime.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "894324.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "910635.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "916294.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a1cdrinks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aapifund.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aarestation.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aaronchiangmd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abdullahavci.org.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abracadabramagicas.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abrody.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "academie-angoumois.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acb.com.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accedia.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accentsduterroir.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accesskeycloning.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accomexico.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "account.gov.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acdc-tech.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acdc-tech.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "achmea.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acierto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acornmetal.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acousticandfire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acreinfoco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acroaccounting.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "actifyleads.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "activpilot.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ad.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adata-c.kz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adcoglazing.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "add-in-express.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "addy.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "admin.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adr-stock.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aduro.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adventureprovisionco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aegcl.co.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aeis-api-stg.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aeis-api.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afd-bedburg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afd-elsdorf.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afd-frechen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afd-huerth.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afd-kerpen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afd-pulheim.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afdpulheim.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afdrhein-erft.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "africanbiblesafari.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agroinsider.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agrosvit.kz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agvins.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aidenoliver.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aisp.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aitanaedu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akeroh.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aking.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aktransmission.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alaoui.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alitv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alkame.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alluel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "almeva.swiss", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "almujadilah.qa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alopezlawfirm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpine3v.notaires.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alrahman.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altabg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altavoces.guru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altstadt-it.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alvinalvelino.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amanitae.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amefrec.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amenhotep.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amie.so", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amoliogames.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amorph.aero", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amorphsys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amr.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amvisor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andorrana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aneirin.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anewperspectiveconstruction.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ankanetworks.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anthai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aotopo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apa-canal.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apixplatform.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aplaceforpops.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aponkral.dev", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appgrowing.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appgrowing.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appian-cdn-gov.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aqua-academy.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aquababy.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aqualogis.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aret.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "argotplan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armaselektronik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arpsel.ws", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artslife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artsygrl.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aruanaseguradora.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "as207960.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asfalteros.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asko-nabytek.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asko-nabytok.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asmr-100.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asmr-200.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asmr-300.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asmr.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aspernallee.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asterhu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astorship.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astrosofa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asyadexpress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atallo.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlassignsandplaques.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auksi.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auroracloud.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "automastercastlerock.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auxmode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avenir-now.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avenir-now.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avenir-now.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aves.asso.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axeltheune.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axesslab.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axiniteguitars.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axiniteguitars.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axiosint.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axisinteriors.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "b2music.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babelfish.money", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bacanaskincare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bad-influence.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bajiotec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baklavabg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bakupka.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balancingbird.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "banch.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "banda-car-service.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bangandscrew.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bannerbangbang.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bantchev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bantchev.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bargfeldt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bartbania.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bartg95.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bassislandline.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "battlemedialab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baummer.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bb-aroundtheworld.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bbrmonza.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bealcreative.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beatrice-nightscout.herokuapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beautyoverture.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bedreinnovation.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bedrijfs-feesten.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bedrijfswasmachine.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "behealthandrehab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bempensadoconsul.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best10resumewriters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betterhelp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betterhelp.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betterhelporg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betterhelpteens.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beudelbingers.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bhcarroll.edu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bhiglu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bia.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biblebrainhealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bie.edu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigblue.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bingoblue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bioatrium.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biometservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "birthlight-austria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "birtles.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitdelta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackbox.earth", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackchrome.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackidfound.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackpooltransport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blindenfreizeiten.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blinq.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bloggyaani.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blueinc.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boatsforveterans.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bobet.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boilingpoint.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bolha.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bookwormstory.social", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boomingnewtech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boostertonbusiness.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "borygoai.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "botanicoved.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brainstache.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bretonstripe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bridgeitsolutions.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bright-s.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brightthink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "britanicasalud.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brodahose.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brokfolio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buddy-locator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "budget.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buentaller.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buildersdiscount.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bukn.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bulldogmarketinggroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burhan-autosattlerei.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burz.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burz.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buypal.com.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cabvertising.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cacnverslavingszorg.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cadonau.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calavos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cambiamenti-climatici.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camdenhistory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "campaign.gov.scot", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canaldeintegridade.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "candybygrant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cankado.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cannature.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cap-study.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "capitone.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carbonaphta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carohq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carportus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartoonlists.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caryl.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carymedicalgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cavalassur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cbl.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centropagina.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centurystudios.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cercle-duclos.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "certo-escrow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ch225.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chaingpt.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chapelhillobgyn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chat-edu.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chatacademies.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chatedit.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chatloupe.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chifeng.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chimaeraconsulting.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chinaseminar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "choruscall.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrismurray.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christian-laubender.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cima-alfa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cinsels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cjclarketimber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cjswoodworking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ck-energy.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cleaningwarehouse.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cleanmycurtains.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cleanmyfloor.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cleanmymattress.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cleanmyupholstery.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clearmatics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clementavenue.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clementlodge.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clirnet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloud1.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cnlongtex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cocina.guru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cocogolfcarts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codezeno.com.au", "policy": "