// 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": "addvocate.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "azprep.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "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": "cryptopartyatx.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cybershambles.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ed.gs", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "forewordreviews.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "giacomopelagatti.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "helichat.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hostinginnederland.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isitchristmas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "konklone.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koop-bremen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kura.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "markusueberallassetmanagement.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mikewest.org", "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": "oversight.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "picksin.club", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pressfreedomfoundation.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "projektzentrisch.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rippleunion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robteix.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "s-c.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "security-carpet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sherbers.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomfisher.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wunderlist.com", "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": "auf-feindgebiet.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": "bedeta.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benjamins.com", "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": "blocksatz-medien.de", "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": "cube.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datenkeks.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "derhil.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freeshell.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greensolid.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hasilocke.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hausverbrauch.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "helpium.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hex2013.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "honeytracks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ihrlotto.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jonas-keidel.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": "k-dev.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lavalite.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loenshotel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loftboard.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mondwandler.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "movlib.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "musicgamegalaxy.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mynigma.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netzbit.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pdf.yt", "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": "promecon-gmbh.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prowhisky.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pubkey.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qetesh.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "riccy.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scrambl.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tageau.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ukrainians.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "viennan.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "winhistory-forum.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "y-o-w.com", "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": "baer.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bayrisch-fuer-anfaenger.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beastowner.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beastowner.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "best-wedding-quotes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitfactory.ws", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buddhistische-weisheiten.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cartouche24.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cartucce24.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clapping-rhymes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "die-besten-weisheiten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edyou.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "forodeespanol.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gemeinfreie-lieder.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getdigitized.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "globuli-info.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guphi.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guthabenkarten-billiger.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haufschild.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hoerbuecher-und-hoerspiele.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iban.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "irische-segenswuensche.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "it-schwerin.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "janus-engineering.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "julian-kipka.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kardize24.pl", "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": "kinderbuecher-kostenlos.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kitsta.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "klatschreime.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kleidertauschpartys.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koordinate.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lasst-uns-beten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lb-toner.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mandala-ausmalbilder.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "npw.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "otakuworld.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pajonzeck.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rad-route.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "redports.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reserve-online.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "riesenmagnete.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": "siammedia.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simplystudio.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sprueche-zum-valentinstag.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sprueche-zur-geburt.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sprueche-zur-hochzeit.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sprueche-zur-konfirmation.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "studydrive.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "supplies24.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "supplies24.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tatort-fanpage.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tektoria.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "texte-zur-taufe.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tinte24.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tintenfix.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tipps-fuer-den-haushalt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toner24.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toner24.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toner24.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toner24.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toner24.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toner24.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toner24.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonerdepot.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonerjet.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonerjet.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonerklick.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonerkurier.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonermaus.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonermonster.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonex.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonex.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trauertexte.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webandmore.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "welches-kinderfahrrad.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apadvantage.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apn-einstellungen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "barcodeberlin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "certible.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "data-abundance.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dedimax.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hostix.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "janoberst.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jelmer.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "munich-rage.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "posteo.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thepaymentscompany.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xps2pdf.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ansdell.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ethitter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firemail.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gmantra.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mach-politik.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "malnex.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mutantmonkey.sexy", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ng-security.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "palava.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reedloden.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": "sdsl-speedtest.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tunebitfm.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "websenat.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zeropush.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ludwig.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bedreid.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cotonea.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "everhome.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fixingdns.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "insouciant.org", "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": "osterkraenzchen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "parent5446.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "patt.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "room-checkin24.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "securify.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shaaaaaaaaaaaaa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shopontarget.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "siraweb.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spdysync.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sysctl.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tauchkater.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theshadestore.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomvote.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toshnix.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "warrencreative.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zeplin.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cdnb.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "github.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "id-co.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ideaweb.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "man3s.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meinebo.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nmctest.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "partyvan.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "partyvan.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "partyvan.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "partyvan.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "suite73.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wubthecaptain.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1a-diamantscheiben.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1a-vermessung.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1a-werkstattgeraete.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "annahmeschluss.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bautied.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": "encryptallthethings.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "futos.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jonnybarnes.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miasarafina.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prefontaine.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schachburg.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schreiber-netzwerk.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "syss.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "terrax.berlin", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tresorit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vaddder.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xtream-hosting.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xtream-hosting.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xtream-hosting.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xtreamhosting.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amigogeek.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aprz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arlen.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitfarm-archiv.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitfarm-archiv.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bulktrade.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buzzconcert.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chulado.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cimballa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daylightcompany.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "denh.am", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "evstatus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "filedir.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gplintegratedit.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": "ilikerainbows.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ilmconpm.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inleaked.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "klaxn.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "labina.com.tr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liebel.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luxus-russen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minikneet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minikneet.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mkcert.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "msc-seereisen.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mykreuzfahrt.de", "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": "reishunger.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "samizdat.cz", "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": "temehu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobias-kluge.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vortexhobbies.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": "aiticon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aiticon.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anetaben.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "annevankesteren.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "annevankesteren.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "annevankesteren.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "barslecht.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blessnet.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudstoragemaus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comdurav.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digitaldaddy.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elnutricionista.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "limpid.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minez-nightswatch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pisidia.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quuz.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sale4ru.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shipard.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sro.center", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "standardssuck.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "testsuite.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weggeweest.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whatwg.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "when-release.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--maraa-rta.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "otakurepublic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mqas.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "debtkit.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "decibelios.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diamante.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domaris.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enorekcah.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fedorapeople.org", "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": "hack.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hexony.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "horosho.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "howsmyssl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "howsmytls.com", "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": "jwilsson.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "khmath.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "knowledgehook.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "md5file.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": "orbograph-hrcm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "password.codes", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prakharprasad.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ravchat.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": "shiinko.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thorncreek.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tno.io", "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": "zixiao.wang", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ahoyconference.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "balcan-underground.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "baldwinkoo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bigbrownpromotions.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bodo-wolff.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "call.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chrisjean.com", "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": "esec.rs", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "floobits.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freenetproject.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fundingempire.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heid.ws", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ironfistdesign.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ljs.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lovelycorral.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "megashur.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minnesotadata.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "newstarnootropics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onedot.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "powerplannerapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ru-sprachstudio.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "southside-crew.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tickopa.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wieninternational.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fleximus.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "animurecs.com", "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": "buttercoin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chainmonitor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coinapult.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comssa.org.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coursella.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crowdjuris.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": "cyanogenmod.xxx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "czbix.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dealcruiser.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dzlibs.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "easysimplecrm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "glossopnorthendafc.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gtraxapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hansvaneijsden.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "horseboners.xxx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "horza.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iamcarrico.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kartonmodellbau.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keycdn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kryptera.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lukonet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "megaxchange.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": "myplaceonline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nectarleaf.com", "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": "phoenixlogan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roland.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "servergno.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "siriad.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smartcoin.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spartantheatre.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spencerbaer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stretchmyan.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "taxsquirrel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techhipster.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timtaubert.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tribut.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": "twentymilliseconds.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ukdefencejournal.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ukhas.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vpnzoom.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "watsonhall.uk", "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": "alexyang.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beamitapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bonigo.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "certly.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chontalpa.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cktennis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clintwilson.technology", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cspbuilder.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "destinationbijoux.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dinamoelektrik.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ethack.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fabianfischer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fastcomcorp.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itshost.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jmedved.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leonardcamacho.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mdfnet.se", "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": "oakslighting.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onsitemassageco.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "propagandism.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slevomat.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sour.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spongepowered.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tls.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vhost.co.id", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webandwords.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webtiles.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yoursecondphone.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zlavomat.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alainwolf.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arguggi.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "azabani.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitmon.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bjornjohansen.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bookingapp.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "caremad.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clerkendweller.uk", "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": "finn.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fm83.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grandmascookieblog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "khanovaskola.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ki-on.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kingmanhall.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kpebetka.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myvirtualserver.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neftaly.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nu3.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nu3.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ruudkoot.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seomobo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seowarp.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "souvik.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "topodin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yahvehyireh.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anadoluefessporkulubu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ankarakart.com.tr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bgneuesheim.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bhatia.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitmex.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": "blubbablasen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chahub.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cor-ser.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "electronic-ignition-system.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fabhub.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fant.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "henriknoerr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imaginary.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inb4.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kosho.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lighting-centres.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marshut.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myni.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nameid.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nginxnudes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nouvelle-vague-saint-cast.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pestici.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "savetheinternet.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shortdiary.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simplia.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tadigitalstore.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tapka.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tegelsensanitaironline.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "typingrevolution.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unison.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uptrends.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vrobert.fr", "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": "alecvannoten.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atavio.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atavio.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atavio.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "balikonos.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "camolist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chatbot.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coffeeetc.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dee.pe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ecdn.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ef.gy", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "exiahost.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freethought.org.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hrackydomino.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hsmr.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "instasex.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jakub-boucek.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koenvdheuvel.me", "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": "mirrorx.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": "r3s1stanc3.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "residentsinsurance.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rlalique.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scribe.systems", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "securesuisse.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slack.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smartlend.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yetii.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "302.nyc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biathloncup.ru", "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": "fewo-thueringer-wald.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "food4health.guide", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "johners.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kupschke.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "manicode.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ouvirmusica.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pharmaboard.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pieperhome.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "raspass.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "romans-place.me.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rudloff.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seyahatsagliksigortalari.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smartcleaningcenter.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "snakehosting.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "srevilak.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "strasweb.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webassadors.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wundi.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2048game.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adorai.tk", "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": "atte.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bizon.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cordial-restaurant.com", "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": "egfl.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firefart.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firstlook.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fonetiq.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gw2treasures.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heartlandrentals.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hemlockhillscabinrentals.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hstsfail.appspot.com", "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": "innophate-security.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "innophate-security.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iranianlawschool.com", "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": "les-corsaires.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linux-admin-california.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "makeitdynamic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minecraftvoter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mkw.st", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mujadin.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netztest.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "null-sec.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nutsandboltsmedia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ooonja.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "personaldatabasen.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phurl.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "privategiant.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "progressiveplanning.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "puac.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rafaelcz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reliable-mail.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "romulusapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "samba.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "savvytime.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sitesten.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skogsbruket.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skogskultur.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sorz.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spawn.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spreed.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "studienportal.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tc-bonito.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tid.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonywebster.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tucuxi.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firebaseio-demo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adlershop.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ahwatukeefoothillsmontessori.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "authentication.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brainfork.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brainvation.de", "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": "chm.vn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clan-ww.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dixmag.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eduroam.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "egit.co", "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": "gavick.com", "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": "id-conf.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ikkatsu-satei.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jira.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": "kuppingercole.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maff.scot", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mpreserver.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mvno.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "namepros.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neko.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netera.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nieselregen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pauladamsmith.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pwd.ovh", "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": "shellsec.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "suzukikenichi.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": "the-sky-of-valkyries.com", "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": "uonstaffhub.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whd-guide.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whocalld.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wootton95.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "airlea.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benjamin.pe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptobin.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "csuw.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dreadbyte.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dylanscott.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "e-kontakti.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ecfs.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "expatads.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": "getable.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gpsfix.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "happylifestyle.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heppler.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "httpswatch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "izdiwho.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": "jonathan.ir", "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": "klingeletest.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lancejames.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leonklingele.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "magneticanvil.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mobilcom-debitel-empfehlen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "morethanadream.lv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "narodniki.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netrider.net.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "niloxy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nowhere.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "perfectionis.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phryanjr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "polymathematician.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sysdb.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tallshoe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thetomharling.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tracktivity.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "twitteroauth.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vitrado.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wevahoo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zentralwolke.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zhovner.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agrimap.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ajouin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atishchenko.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bentertain.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bit.voyage", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bzv-fr.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cyprus-company-service.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darkpony.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darom.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "e-aut.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ecg.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "exon.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "extendwings.com", "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": "freesounding.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freesounding.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getfedora.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getfittedstore.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hatoko.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hda.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "helpadmin.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iniiter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ionas-law.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keepa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "knip.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "laf.in.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "livej.am", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "m0wef.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mahamed91.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "massivum.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "megaplan.cz", "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": "mineover.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mokote.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mr-hosting.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": "mutamatic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nymphetomania.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "offshore-firma.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "openacademies.com", "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": "pmg-purchase.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pmg-purchase.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "polypho.nyc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "puiterwijk.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "redletter.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reg.ru", "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": "rika.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scrambler.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sjoorm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "survivalmonkey.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sychov.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "terrty.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thebimhub.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tmtopup.com", "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": "wherephoto.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": "wondershift.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xplore-dna.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xuntier.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yanovich.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "8ack.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "9point6.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andere-gedanken.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andymartin.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "auto4trade.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bagelsbakery.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beercandle.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "billigssl.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bonitabrazilian.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brandbuilderwebsites.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "breeswish.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "calories.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chartstoffarm.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chrisirwin.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "classdojo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cybozulive.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datasnitch.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dn42.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dnsman.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dreamsforabetterworld.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ectora.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elliquiy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "florian-lillpopp.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "florianlillpopp.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geekandi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heute-kaufen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hushfile.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "interasistmen.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kintone.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koenrouwhorst.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lillpopp.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lnx.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "madeitwor.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miconcinemas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mtau.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myprintcard.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nationalpriorities.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nodari.com.ar", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nuvini.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nwa.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paulschreiber.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "philosopherswool.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "proofwiki.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rawstorieslondon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reaconverter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robinadr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rodosto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rssr.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rubendv.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scoutdb.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "setuid.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shadex.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sockeye.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soulogic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teamnorthgermany.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "terraelectronica.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vijos.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webeau.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wifirst.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "56ct.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "5apps.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abmahnhelfer.de", "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": "al-shami.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alanrickmanflipstable.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ankakaak.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apps-for-fishing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "athenelive.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "auraredeye.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "auraredshield.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "autoledky.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitchan.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinx.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blackberrycentral.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bloemendal.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "boypoint.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bran.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "burtrum.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "casa-su.casa", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cbhq.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coinbase.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "commencepayments.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "courtlistener.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptopush.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danskoferie.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daylightpirates.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deliverance.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dubrovskiy.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dyeager.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edix.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erotische-aanbiedingen.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eva.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "evalesc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "froggstack.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fx5.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gc.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gnetwork.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gudini.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gugga.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "herbert.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imgg.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ipmimagazine.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isogram.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jbn.mx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jeremyness.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jkb.pics", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jkbuster.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": "kaufberatung.community", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kollawat.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lavval.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ledhouse.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lichtspot.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mall.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mall.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mall.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mall.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "malwre.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "markayapilandirma.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": "mehmetince.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mh-bloemen.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mimovrste.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mittenhacks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "munuc.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mustika.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mvsecurity.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nan.zone", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nbl.org.tw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nctx.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nemovement.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "newkaliningrad.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "noemax.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nsboutique.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ohling.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "orcahq.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pasta-factory.co.il", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "plzenskybarcamp.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ponythread.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ptn.moscow", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "richiemail.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ricochet.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roman-pavlik.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "royalacademy.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rubecodeberg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sabahattin-gucukoglu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sagerus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sageth.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": "secretserveronline.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": "sigterm.sh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sleio.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "speedcounter.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stesti.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stevegrav.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stillyarts.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "svager.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tdrs.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teachforcanada.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techllage.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techloaner.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theescapistswiki.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "therapyportal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "titties.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomharling.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomharling.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toptexture.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tox.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "traas.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trashnothing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ucfirst.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unitedadmins.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unknownphenomena.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uptrends.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "utilityapi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "welpy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wesleyharris.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2600hq.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "301.website", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alza.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "armytricka.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bradkovach.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crypto.graphics", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptography.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danielalvarez.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danonsecurity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darknode.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davidmcevoy.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diedrich.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emptypath.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eromixx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fa-works.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getmango.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gokmenguresci.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gotspot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gra2.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hledejpravnika.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ilikerainbows.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "indiecert.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "johnmichel.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keeleysam.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lapetition.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maartenvandekamp.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mcard.vn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mcnext.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "micropple.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "munki.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netbox.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "olivierlemoal.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "petplum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pirateproxy.sx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "proxybay.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "red-t-shirt.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skeeley.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soia.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "suos.io", "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": "twofactorauth.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vox.vg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "widememory.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "withustrading.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wvr-law.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wzyboy.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xenesisziarovky.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yksityisyydensuoja.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yokeepo.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": "acuica.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "advanced-online.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arbitrary.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bidon.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "boiseonlinemall.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cdlcenter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coding.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "covenantoftheriver.org", "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": "digital1st.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dragons-of-highlands.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enskat.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enskatson-sippe.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eveshamglass.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firebirdrangecookers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fitkram.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gambit.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gambitnash.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ge3k.net", "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": "jamesdoylephoto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jpbike.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kaneo-gmbh.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kedarastudios.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "livekaarten.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "medallia.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mijn-email.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mindcoding.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mironet.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miss-inventory.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nayahe.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nicolaw.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nopex.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "passphrase.today", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pollpodium.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rid-wan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rusadmin.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scotthel.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smith.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sneezry.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "subeesu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tempus-aquilae.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "terraweb.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theamp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theunitedstates.io", "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": "tuxplace.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vechkasov.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "walnutgaming.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yafuoku.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "youdowell.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "188trafalgar.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aeyoun.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "afp548.tk", "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": "buiko.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cdt.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cheesetart.my", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "costablancavoorjou.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cracker.in.th", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dohosting.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "donmez.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ecake.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ego4u.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ego4u.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fish-hook.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fniephaus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "forgix.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": "gameserver-sponsor.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "genuxtsg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "globalittech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gregorytlee.me", "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": "guru-naradi.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gwijaya.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "identitylabs.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ieval.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "influxus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iostips.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jwnotifier.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "karaoketonight.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keeley.gq", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keeley.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keybase.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kinganywhere.eu", "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": "leakedminecraft.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leonax.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linorman1997.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minora.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "musi.cx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mykontool.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nostraforma.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "orhideous.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ramsor-gaming.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": "robinsonyu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scrap.tf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slack-files.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slse.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "starapple.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stirling.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stormhub.org", "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": "technotonic.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thca.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thouni.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timotrans.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timotrans.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tom.horse", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tradingcentre.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ts3.consulting", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tuamoronline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wownmedia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xtrim.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yenniferallulli.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yenniferallulli.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yenniferallulli.moda", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yenniferallulli.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "akachanikuji.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amaforums.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amdouglas.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anadoluefessk.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "axka.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoin.de", "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": "blablacar.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "canhazip.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "collinmbarrett.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coloradocomputernetworking.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "copperhead.co", "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": "eatsleeprepeat.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ethercalc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ethercalc.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "initrd.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "integromat.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lookyman.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lore.azurewebsites.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "medovea.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ohnemusik.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "patriksimek.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pcel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "postfinance.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "raymii.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "research.md", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rubyshop.nl", "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": "sh-network.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sufix.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tallr.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thehiddenbay.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tinkertry.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vserver-preis-vergleich.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whitestagforge.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "x.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zalan.do", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zarooba.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1000minds.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1a-jva.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "300651.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "3do3dont.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "4g-server.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexgaynor.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "allinonecyprus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alphabit-secure.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apple-watch-zubehoer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "baff.lu", "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": "bitnet.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buildkite.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cklie.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ckliemann.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ckliemann.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "console.support", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crute.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dash-board.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dekasan.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doridian.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "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": "doridian.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drtroyhendrickson.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edelsteincosmetic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ellegaard.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enigmail.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ezimoeko.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eztv.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "festember.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fidelapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "floweslawncare.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getcolor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getsello.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gheorghesarcov.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goldendata.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "golfscape.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gothamlimo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grandcapital.id", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grandcapital.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gurusupe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hash-list.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heavystresser.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hicn.gq", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hobbyspeed.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "holymoly.lu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imagr.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "j-lsolutions.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jacobparry.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jacuzziprozone.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jahliveradio.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jh-media.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jondevin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "julianmeyer.de", "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": "kliemann.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kredite24.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "labaia.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "laukstein.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leanclub.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lence.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lmmtfy.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mafamane.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mercuryamericas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mobilux.lv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "musmann.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nanderson.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nerven.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netrelay.email", "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": "northernmuscle.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ownmovies.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pactf.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pap.la", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phil.tw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pi-supply.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pijuice.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "piratedb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "piratedot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prontolight.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "proxybay.club", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "proxybay.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quebecmailbox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rischard.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robtex.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rotunneling.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rpy.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sello.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sellocdn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slever.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stereo.lu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sticklerjs.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "storedsafe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stuartbaxter.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "t23m-navi.jp", "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": "terrax.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "terrax.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thefrozenfire.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thepiratebay.al", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thumbtack.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timmy.ws", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tipsyk.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "topshelfguild.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tpbproxy.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "twolinepassbrewing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unbanthe.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uow.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "upitnik.rs", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uscntalk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "venicerealdeal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vomitb.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vyplnto.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webmaniabr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wettertoertchen.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": "zifb.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "4sqsu.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abecodes.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abiapp.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aes256.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "akselimedia.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alaninkenya.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alethearose.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anakros.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andrewimeson.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apachehaus.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apibot.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aranycsillag.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arrayify.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "auszeit.bio", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "av.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "azirevpn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beach-inspector.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biddl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bigdinosaur.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bownty.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brks.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bygningsregistrering.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cardoni.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carlosalves.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "catnapstudios.com", "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": "clevisto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudpebble.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coindam.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "completionist.audio", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cpvmatch.eu", "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": "darkengine.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dbgamestudio.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "desmaakvanplanten.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "devklog.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": "dropboxer.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drumbandesperanto.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "electromc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erisrenee.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "expoundite.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "f2f.cash", "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": "ffbans.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fiftyshadesofluca.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flushstudios.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foodwise.marketing", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foreignexchangeresource.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fretscha.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fruchthof24.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frusky.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frusky.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fteproxy.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "g2g.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gambitprint.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "genuxation.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getnikola.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "github.party", "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": "gopay.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goshop.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grigalanzsoftware.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "h2check.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haircrazy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "happyteamlabs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haveibeenpwned.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heftkaufen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "herzbotschaft.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hs-group.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "impex.com.bd", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "informnapalm.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ix8.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamesbywater.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamesbywater.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamesbywater.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamesbywater.uk", "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": "justlikethat.hosting", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kalevlamps.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "korinar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kpdyer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kredite.sale", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "legoutdesplantes.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lellyboi.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leninalbertop.com.ve", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "libfte.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linguaquote.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luxwatch.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": "mammaw.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "martijnvhoof.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maximelouet.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "me.net.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mebio.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "medtehnika.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meetingmanage.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meetings2.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meritz.rocks", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mertcangokgoz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mim.properties", "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": "modeldimension.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moriz.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mp3juices.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mthode.org", "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": "ndarville.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nella-project.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nellacms.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nellacms.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nellafw.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nmd.so", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "null.tips", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ocrami.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oguya.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "patechmasters.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "payments-reference.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pbprint.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "poedgirl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "posttigo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "presidentials2016.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "projectascension.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prospo.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "purewebmasters.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "railgun.ac", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "raydobe.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "redlink.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "report-uri.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rmmanfredi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roeper.party", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roosterpgplus.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roquecenter.org", "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": "sarahlicity.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schreibnacht.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shanewadleigh.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shasso.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shoprose.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sitesko.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sizzle.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slope.haus", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "snailing.org", "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": "soccergif.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soci.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "solihullcarnival.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "solihulllionsclub.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soulfulglamour.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spyroszarzonis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stablelib.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stereochro.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stewartremodelingadvantage.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "streamingmagazin.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "talideon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tdelmas.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techhub.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thecoffeehouse.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theweilai.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonytan.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "totem-eshop.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tribaldos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tzappa.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uega.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ulabox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "univz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ust.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vzk.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wearvr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webogram.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webswitch.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wesecom.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "when-release.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "williamsapiens.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "worldcubeassociation.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wurzelzwerg.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xcoop.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xho.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xiaolvmu.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yello.website", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yunzhu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zeitpunkt-kulturmagazin.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zentraler-kreditausschuss.de", "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": "acorns.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "access-sofia.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ada.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adviespuntklokkenluiders.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abiturma.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alocato.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "3473-wiki.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andreasolsson.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2bis10.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abioniere.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "4eyes.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adblockextreme.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "auditmatrix.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alex-ross.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "akclinics.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aktiv-naturheilmittel.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "belairsewvac.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ball.holdings", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "artegusto.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "backschues.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brianmwaters.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aktiv-naturheilmittel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aktiv-naturheilmittel.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitvigor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "augustian-life.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atlex.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "animesharp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bochs.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atop.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "betaworx.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "betaworx.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bjornhelmersson.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "canyonshoa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cargobay.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "centralvacsunlimited.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chiralsoftware.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": "chrisupjohn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "claimconnect.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ccsys.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ass.org.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bluetenmeer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codepult.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cesal.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudimag.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dealbanana.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": "cloudflareonazure.com", "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": "dealbanana.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cydia-search.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dotsiam.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clevertarget.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "derp.army", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "craftbeerbarn.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ebaymotorssucks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dymersion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "discoveringdocker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dedeo.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diablotine.rocks", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eckel.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "disorderboutique.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cesidianroot.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "exceltobarcode.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elvidence.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fightr.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eqorg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elitegameservers.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dorianmuthig.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ecrimex.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fotiu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "core.mx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fidanza.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getspire.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gtmetrix.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hashplex.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "footballmapped.com", "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": "furkancaliskan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dynamicsnetwork.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "humblefinances.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heh.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "friendica.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imbrian.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hoshinplan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heart.ge", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grandlinecsk.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ijsclubtilburg.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "homa.website", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "internetbugbounty.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iispeed.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "initq.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "immoverkauf24.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "immoverkauf24.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "glasgestaltung.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "icq-project.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jakenbake.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": "jamesbywater.me.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "johnguant.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "interviewpipeline.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gaptek.id", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ipv6-handbuch.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "intim-uslugi-kazan.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kingant.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jeff393.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jurriaan.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamiemagee.co.uk", "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": "junqtion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "affinitysync.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kickass.al", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kantorosobisty.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kdm-online.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "korobi.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gipsamsfashion.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": "konsertoversikt.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kbit.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "locktheirphone.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kschv-rdeck.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": "manage.cm", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mesvt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mhx.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liverewrite.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leerliga.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mc-venture.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lukasztkacz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meta-db.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mblankhorst.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "modmountain.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mark-semmler.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "new-black-order.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mp3gratuiti.com", "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": "mojapraca.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minkondom.nu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nicky.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "okonetwork.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nuos.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onewpst.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pirxpilot.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "organic-superfood.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pirlitu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "parsemail.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ontimestamp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "playkh.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "patterson.mp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pothe.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robertglastra.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "progg.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pothe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qixxit.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robtex.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "richardwarrender.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "retroarms.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rugirlfriend.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rigolitch.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rxbusiness.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": "scotthelme.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ronvandordt.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "radtke.bayern", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "securityheaders.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seele.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schorel.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schorelweb.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schoop.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schlarp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "socialspirit.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rohlik.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shft.cl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "socialrank.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slicketl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "searchbrothers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "manfredimatteo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sneakynote.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stemsims.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liquorsanthe.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seminariruum.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "syncappate.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sonafe.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "system.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stolkschepen.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "themarshallproject.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tbarter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "syso.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonytan.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "throwpass.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thom4s.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thorgames.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tpbcdn.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": "vanhoutte.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "varden.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wikidata.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vigo-krankenversicherung.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xavierbarroso.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wachter.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vbulletin-russia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vbulletinrussia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webstudio-n.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wonderhost.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "winsec.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xgclan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yetcore.io", "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": "xn--u9jv84l7ea468b.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zcarrot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zcarot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ztan.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asm-x.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ccblog.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": "student.andover.edu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agilebits.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alenan.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amisharingstuff.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amunoz.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "appuro.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "askfit.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "axado.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bebesurdoue.com", "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": "chrisbrown.id.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chromebooksforwork.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudmigrator365.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudpagesforwork.com", "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": "cmc-versand.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cnlic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "colorlib.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "corruption-mc.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "corruption-rsps.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "corruption-server.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cthulhuden.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dateno1.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "democracy.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "democracychronicles.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "demuzere.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deviltracks.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dietrich.cx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dissimulo.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dlscomputers.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dogoodbehappyllc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dreid.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "e-deca2.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": "entrepreneur.or.id", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eol34.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eucl3d.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firmapi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gamenected.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gamenected.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getsport.mobi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gmdu.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grafitec.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greatfire.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greenroach.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hablemosdetecnologia.com.ve", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hardh.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haveeruexaminer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "helloacm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "idndx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "im-c-shop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inbitcoin.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inspiroinc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "instant-hack.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iraqidinar.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itsagadget.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ivancacic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "j0s.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joshstroup.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "justyy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kawaii.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kazandaemon.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kbcequitas.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lehighmathcircle.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lenzw.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leon-jaekel.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": "lognot.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maclemon.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maternalsafety.org", "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": "mdek.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meddelare.com", "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": "mypagella.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "necesitodinero.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "obermeiers.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ollning.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "omacostudio.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ourbank.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paysera.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "petersmark.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pmnts.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qingxuan.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "raah.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "recon-networks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "renlong.org", "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": "roberthurlbut.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shadowkitsune.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shaundanielz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shellvatore.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simplexsupport.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slainvet.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smartlocksmith.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sparklingsparklers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sportifik.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tanzhijun.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tcao.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teamblueridge.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tecart-cloud.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tecartcrm.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techandtux.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tehrabbitt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thehiddenbay.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ticketmates.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tinyvpn.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tinyvpn.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tls1914.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "topnewstoday.org", "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": "toxme.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tumutanzi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tuzaijidi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ubicv.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "un-zero-un.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unionstationapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "utonia.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vokeapp.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": "worcesterfestival.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "x64architecture.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--datenrettung-mnchen-jbc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--hfk-allgu-schwaben-stb.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--mgbbh2a9fub.xn--ngbc5azd", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zeno-system.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "track.plus", "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": "clubmini.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codingforspeed.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cradlepointecm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dobet.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domainexpress.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ediscomp.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edissecurity.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ewe2.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fluxent.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fruitusers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gpsvideocanada.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": "inksupply.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jhburton.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "odin.xxx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pagure.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pagure.org", "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": "sunnyfruit.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tosecure.link", "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": "agonswim.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "appharbor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "armory.consulting", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "armory.supplies", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "b2and.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bryanquigley.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cfcnexus.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clipped4u.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cvsoftub.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dailyenglishchallenge.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "derreichesack.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "devnsec.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": "elenag.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emailhunter.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "expressvpn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "factorygw.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flamingkeys.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "granth.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "happyfabric.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "happygadget.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "illorenese.fr", "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": "mamaison.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mca2017.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mnd.sc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "modemagazines.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "panoti.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "philosophyguides.org", "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": "rc4.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rot47.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rusl.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "satmep.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simod.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simplycharlottemason.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skoda-clever-lead.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skoda-im-dialog.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skoda-nurdiebesten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slix.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "speed-mailer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "steelephys.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stick2bike.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "swift-devedge.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "syntaxnightmare.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tbrss.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tokke.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unapp.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "valopv.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "videomail.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "welovemail.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whispeer.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": "zx6rninja.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alt.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "badcronjob.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bankin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "boris.one", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brakstad.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "campus-finance.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cao.la", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cashlink.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloud-project.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coore.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crackingking.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davidgrudl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davisroi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "didacte.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dotadata.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dronepit.dk", "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": "eleicoes2016.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "engelundlicht.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "etaes.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ethicaldata.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "floskelwolke.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geekcast.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gmta.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "govtrack.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guilde-vindicta.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hisbrucker.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hledejlevne.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hookandloom.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hranicka.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hsts.date", "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": "iqboxy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ivk.website", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jacekowski.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "latrine.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lmddgtfy.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lmsptfy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "madrants.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marktboten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "melf.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meteosky.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mirtes.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mitchellrenouf.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "munzee.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "musikkfondene.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myraytech.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nethackwiki.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nette.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "only-roses.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "openkvk.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phpfashion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "recommended.reviews", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "remoteutilities.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rj.gg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rtcx.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rusl.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sellme.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shopapi.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skimming.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skoleniphp.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smb445.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sobabox.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soply.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thedreamtravelgroup.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thehotfix.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tiffnix.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomli.me", "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": "z0rro.net", "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": "1017scribes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anfsanchezo.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bcvps.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beautykat.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bouncyballs.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cafe-scientifique.org.ec", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "caveclan.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": "changetip.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ciscodude.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crysadm.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": "de-spil.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dolphin-cloud.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dolphin-hosting.com", "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": "enquos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gravity-net.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gtanda.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hdc.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "instacart.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "intarweb.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kirkpatrickdavis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maarten.nyc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mantor.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "motocyklovedily.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "parasitologyclub.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phongmay24h.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pilgermaske.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pol.in.th", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "puyblanc.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rantanda.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "redd.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "respice.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rr.in.th", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "salserototal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "section.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "secureradio.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simplelearner.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tlo.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tlo.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "typewolf.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vorlif.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xellos.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--4dbjwf8c.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--4dbjwf8c.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--4dbjwf8c.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--4dbjwf8c.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--lgb3a8bcpn.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--lgb3a8bcpn.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--lgb3a8bcpn.gq", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--lgb3a8bcpn.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--ls8hi7a.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yyyy.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "368mibn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aevpn.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andreigec.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beneffy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brrr.fr", "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": "comiteshopping.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coreless-stretchfilm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crudysql.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "csgokings.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dank.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "demuzere.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "demuzere.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "demuzere.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "docucopies.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elmermx.ch", "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": "greenvines.com.tw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hollowrap.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "immunicity.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kahopoon.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "khetzal.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koerperimpuls.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lostinsecurity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mailinabox.email", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "newodesign.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nicolaelmer.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ochsundjunior.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onixcco.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pctonic.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "photoblogverona.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prefis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prepandgo-euro.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "raconconsulting.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rangde.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "remotestance.com", "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": "sanhei.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scaling.solutions", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sifls.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smkn1lengkong.sch.id", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ssldecoder.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sx3.no", "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": "tncnanet.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomo.gr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "utilia.tools", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "viewmyrecords.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vmrdev.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vulnerability.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xiaolan.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xiaoxiao.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "3chit.cf", "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.fr", "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": "adhs-chaoten.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alpca.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amoory.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "appmobile.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aussiecable.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "avarty.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aylak.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bexit.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitminter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blognone.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "borchers-media.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bqtoolbox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "burningcrash.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "capriccio.to", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clycat.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cogumelosmagicos.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "connect.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "csfs.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cspvalidator.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cubewano.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deepcovelabs.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deliciisanatoase.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dienstplan.one", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drbethanybarnes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eddmixpanel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ehipaa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ehipaadev.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": "envygeeks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "envygeeks.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fayolle.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flirchi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fuglede.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gcs-ventures.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gerencianet.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gyboche.science", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hackenturet.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "harmoney.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "istheapplestoredown.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jayblock.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": "kpvpn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "labrador-retrievers.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "logement-saisonnier.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mareklecian.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maximilian-greger.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mb-is.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mobile.eti.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mosstier.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "namorico.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nekomimi.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "numericacu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oshayr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ourevents.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pantsu.cat", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paylike.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pennylane.me.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pirati.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "plirt.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qgustavor.tk", "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": "rideworks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "riesenweber.id.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robi-net.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rootservice.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sanasport.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simplednscrypt.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smartmessages.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smksi2.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "snapappointments.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "southernutahinfluencers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "staack.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stackptr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stinkytrashhound.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stugb.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "swapadoodle.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "syncer.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thinklikeanentrepreneur.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ulabox.cat", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ulabox.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "umgardi.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "upay.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "upstats.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "usgande.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vat-eu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "viemeister.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wait.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wohnsitz-ausland.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wolfemg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wrldevelopment.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xiaody.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--t8j4aa4nyhxa7duezbl49aqg5546e264d.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xtremegaming.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xunn.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zdrojak.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zera.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0xfc.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abrilect.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adduono.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ahmerjamilkhan.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "akombakom.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alainwolf.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beier.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bentrask.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cavac.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coolaj86.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coralproject.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crosscom.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "curroapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daplie.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darknebula.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datapun.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datsound.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ellsinger.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "excessamerica.com", "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": "felixrr.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "filippo.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flowlo.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flukethoughts.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fraye.net", "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": "goaltree.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goldenhillsoftware.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greenpeace-magazin.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guineapigmustach.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "htaccessbook.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kaloix.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kiano.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "krypsys.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lainchan.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lelongbank.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lexway.pk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "libertyrp.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lustrumxi.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maderwin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mypagella.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mypagella.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mysecretrewards.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nettopower.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nicestresser.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nsboston.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onet.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oopsmycase.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "opennippon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "opennippon.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "perishablepress.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "planboardapp.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": "qionglu.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "redb.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rootforum.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sambeso.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sarasturdivant.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scourt.org.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "secure-games.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "selecadm.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sirenslove.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smm.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stephenandburns.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sway-cdn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sway.com", "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": "typing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ufotable.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "up1.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vermontcareergateway.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "virtualsanity.com", "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": "yoloprod.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zzsec.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "33-km.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "42ms.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adamradocz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aladdin.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alarmsystemreviews.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "allthingswild.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andreypopp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ankaraprofesyonelnakliyat.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aojf.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apachelounge.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apstudynotes.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "areatrend.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atgseed.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atgseed.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "authint.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "basnoslovno.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bettrlifeapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "billninja.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bionicspirit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blechschmidt.saarland", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bugginslab.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bwcscorecard.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cesobaly.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "checktype.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chloe.re", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chrst.ph", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comarkinstruments.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "consciousandglamorous.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crl-autos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crossfitblackwater.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "csgodicegame.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cvmu.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "de-medici.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "decoder.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "depixion.agency", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "devopps.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dhautefeuille.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "droidwiki.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dubrovskiy.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edakoe.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edgereinvent.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elsitar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "espgg.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "etherpad.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "evomon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "expresshosting.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fig.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "finkelstein.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flow.su", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fr33d0m.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getbox.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ggp2.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gigacloud.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "globalexpert.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hawkeyeinsight.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hencagon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hilahdih.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hroschyk.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ichronos.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "idaspis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ifleurs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iggprivate.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iggsoft.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iggsoftware.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ihsbsd.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "illjinx.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "institutolancaster.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "integrationinc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ipv6cloud.club", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joelj.org", "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": "knygos.lt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koukni.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kpinvest.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kristofferkoch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lagoza.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "latenitefilms.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lentri.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "litespeed.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loancompare.co.za", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lsky.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "makerstuff.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marie-curie.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "markusehrlicher.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marumagic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mcrn.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meetscompany.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meta.sc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mnium.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moparcraft.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moparcraft.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moparcraft.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moparisthebest.biz", "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.info", "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": "moparscape.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "my-pawnshop.com.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mygov.scot", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nagb.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "najedlo.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "newmediaone.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nodetemple.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "noworrywp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "o6asan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "perfektesgewicht.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "perfektesgewicht.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "perplex.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "please-deny.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pm13.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "postbox.life", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "postscheduler.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "potbar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "potbox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "privacy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "privacyinternational.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "publicsuffix.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "punchr-kamikazee.rhcloud.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robtex.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roomhub.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rsajeey.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rubi-ka.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schnell-gold.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silver-heart.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slamix.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smartpolicingplatform.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "splikity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "square.gs", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ssl.rip", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stellenticket.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "subdimension.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "syezd.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tafoma.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "takkaaaaa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techcentric.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thebreakroom.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thehackerblog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theitsage.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "topnovini.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trendberry.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ulrik.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vanetv.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vistb.me", "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": "webyazilimankara.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whyworldhot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "witae.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "withinsecurity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wordsmart.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yoloboatrentals.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yoloseo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andreas-kluge.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andreaskluge.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matrip.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1co-jp.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ad-notam.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adblock.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "admsel.ec", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alphassl.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "altedirect.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "altestore.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ankaraprofesyonelnakliyat.com.tr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ankaraprofesyonelwebtasarim.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anzeiger.ag", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apnakliyat.com", "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": "bcsytv.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beholdthehurricane.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beranovi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "borysek.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "broadsheet.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "broersma.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brownfieldstsc.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bulmafox.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": "callsigns.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chimeratool.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "classicspublishing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clickandgo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "colognegaming.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "compucorner.mx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "concentrade.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crepererum.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptoparty.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "devdoodle.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diasp.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dime-staging.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "docket.news", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elephpant.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elimdengelen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "entersynapse.com", "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": "evdenevenakliyatankara.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "exfiles.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "expxkcd.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fandomservices.com", "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": "findmybottleshop.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flamewall.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freelance.boutique", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freifunk-luenen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "g-m-w.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gamingzoneservers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "garbage-juice.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getbutterfly.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "glws.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gmw-ingenieurbuero.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gsm-map.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gyboche.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "harristony.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "harvester.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haselsteiner.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "helgakristoffer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "helgakristoffer.wedding", "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": "imoni-blog.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "insideaudit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "instela.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "interisaudit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "intxt.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itsg-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": "jakubboucek.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jennedebleser.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jhalderm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jirav.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "josefjanosec.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "klasfauseweh.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linux.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linuxgeek.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liquid.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lukasunger.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mac-torrents.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "melted.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "missdream.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moreapp.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "murraycoin.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nakliyatsirketi.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nbb.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nder.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netwarc.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nikao-tech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nikobradshaw.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nikolasbradshaw.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nomial.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "npmcdn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "opsbears.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "otchecker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pgmann.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pier28.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "piligrimname.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "poleartschool.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "posterspy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "postn.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "proos.nl", "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": "psw.academy", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "psw.consulting", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "psw.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "realcapoeira.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ricki-z.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "right-to-love.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robandjanine.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robspc.repair", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rodolfo.gs", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "safematix.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sanderdorigo.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sdrobs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "securedevelop.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shopbakersnook.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simonkjellberg.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": "snapappts.com", "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": "soporte.cc", "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": "sslzilla.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": "teampoint.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "threelions.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tm-solutions.eu", "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": "trinitycore.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "twaka.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "twist.party", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vallis.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "viva-french.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vyberodhadce.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webtasarim.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "welldrake.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "werdeeintimo.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wo2forum.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wrara.org", "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": "zgrep.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zortium.report", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0x90.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexwardweb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atolm.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "berst.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bigbluedoor.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "binaryevolved.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinhk.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blackdragoninc.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cabarave.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cannyfoxx.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clmde.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codeux.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "conversiones.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "converter.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "couragewhispers.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danpiel.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darioturchetti.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datasharesystem.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "david.kitchen", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dden.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deviltraxxx.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diversityflags.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dnscrypt.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "docloh.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dolphincorp.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domodedovo.travel", "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": "elitefishtank.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "englerts.de", "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": "eydesignguidelines.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fedrtc.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fiilr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frillip.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gfwsb.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "giftservices.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grace-wan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hackcraft.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "helix.am", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "herpaderp.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hlavacek.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hobby-gamerz-community.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hochhaus.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "holisticon.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hopewellproperties.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hostinghelp.guru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ikk.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "indybay.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itinsight.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jaroslavtrsek.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jav-collective.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jlkhosting.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "juniwalk.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kiebel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kynaston.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "larrysalibra.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lemp.io", "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": "librelamp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "libsodium.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "livedemo.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lukasberan.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lukasunger.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "macker.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maco.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "makowitz.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "melcher.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mercamaris.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "micro-rain-systems.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mlpepilepsy.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mnetworkingsolutions.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mortgagecentersmo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "muguayuan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mybudget.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myg21.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nagoya-kyuyo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nametiles.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netbrief.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nevadafiber.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onespiritinc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "orderswift.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "otoy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "override.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pacoda.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paratlan.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pcloud.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peytonfarrar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phpdorset.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pimpmymac.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pirateproxy.la", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pirateproxy.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "piwko.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "polis.to", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "poon.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "poon.tech", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pressrush.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "proxybay.la", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qlrace.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qualityedgarsolutions.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ramon-c.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "realmofespionage.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ringh.am", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rngmeme.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roeckx.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roombase.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ryanteck.uk", "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": "selfici.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shiroki-k.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skipfault.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": "ss.lv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stirlingpoon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stirlingpoon.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stomt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "talado.gr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "taskulu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tazemama.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "the-paddies.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thepartywarehouse.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tidycustoms.net", "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": "ultros.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unpr.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "utdsgda.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "valordolarblue.com.ar", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vm0.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vnvisa.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "watersb.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "westerhoud.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whatsapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whey-protein.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "williamfeely.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "workray.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yobst.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yombo.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zking.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "secure.advancepayroll.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0x1337.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "206rc.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adimaja.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "akhilindurti.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": "alfredxing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "allcarepharmacy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amdouglas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aniplus.gq", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arnor.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arrakis.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "artofwhere.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asset-alive.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asset-alive.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "avacariu.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "badkamergigant.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "badlink.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bajic.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "besthost.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bets.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bigclassaction.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blackpayment.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blaise.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bonobo.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "borrelioz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brightstarkids.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bsidessf.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "burtrum.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buzzconf.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bytejail.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "caesreon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "calaborlawnews.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carsforbackpackers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cecipu.gob.cl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chcemvediet.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "christiaanconover.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "christianbro.gq", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cidbot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cidr.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cirope.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clearviewwealthprojector.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clickclickphish.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clintonbloodworth.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloud.wtf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudily.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comparejewelleryprices.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "compucorner.com.mx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cormilu.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cortexitrecruitment.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cqchome.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crazydomains.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crow.tw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptopartyutah.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptoseb.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ctoforhire.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daemon.xin", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daniel-steuer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dario.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dark-x.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dataretention.solutions", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datatekniikka.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dbmteam.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": "detector.exposed", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dgeex.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dime.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dinkum.online", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dise-online.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dmxledlights.com", "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": "dopost.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dot.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dyrenesverden.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eagleyecs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eduvance.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elementalrobotics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enteente.com", "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": "essoduke.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "expressfinance.co.za", "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": "fatlossguide.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fbox.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firefall.rocks", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flamingcow.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fliexer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "floort.net", "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": "fordbydesign.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fotofaerie.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foxdev.io", "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": "fsfi.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "genshiken.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geschwinder.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gha.st", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gilly.berlin", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "globalcomix.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "globalperspectivescanada.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gotocloud.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gpfclan.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gregmilton.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gs-net.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hack.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hardfalcon.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "healtheffectsofasbestos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hejsupport.se", "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": "henrock.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hoodoo.tech", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hoton.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ideation-inc.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "idvl.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iec.pe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ifcfg.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ifoss.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imagescostumes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imrejonk.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inboxen.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "infinitusgaming.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "instant.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ipcfg.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ipswitch.com.tw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iready.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "istorrent.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itfh.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itpol.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "j-navi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jaba.hosting", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jackfahnestock.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamonsilva.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jonathandowning.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joshi.su", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jrvar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kaplatz.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kbjorklu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kindof.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kinnon.enterprises", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kleppe.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "konijntjes.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kraft.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "labs.directory", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lambda-complex.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leppis-it.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liceserv.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "limpido.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lmintlcx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "locomore.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lusis.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "macgeneral.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "machbach.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mailgarant.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "management-companie.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "masa.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mathiasgarbe.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mavensecurity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maximeferon.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mchristopher.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "media-courses.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "megasslstore.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "melitopol.co.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meozcraft.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mfcatalin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michalborka.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mijnkredietpaspoort.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "monitman.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "monitman.solutions", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mpintaamalabanna.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myiocc.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "n2x.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nanogeneinc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "naval.tf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neel.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "niho.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nodebrewery.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nope.website", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nystart.no", "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": "onlinelegalmarketing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onlinelegalmedia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onlinewetten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onlyshopstation.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "open-mesh.org", "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": "ossbinaries.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ourcloud.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "owncloud.help", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paku.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "palationtrade.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "papayapythons.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "parkingplus.co.il", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "partirkyoto.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peissen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peterdavehello.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phunehehe.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "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": "pokemori.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "post4me.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "practicallabs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prayerrequest.com", "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": "pro-bike.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "profundr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "proxybay.al", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "purplemoon.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quotehex.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "redshield.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "responsibledisclosure.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rewrite3.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rootrelativity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rsi.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "safemovescheme.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sandor.wtf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sb-group.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scanpay.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scooshonline.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seo.consulting", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sequencing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "serized.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seyr.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shaitan.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sheilasdrivingschool.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silkebaekken.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skoda-service-team-cup.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sobie.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "square-gaming.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sqzryang.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "srrr.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sslpoint.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stalkerhispano.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "star-citizen.wiki", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "storycollective.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stricted.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "strugee.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sumoscout.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sweetstreats.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tacticalsquare.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tazj.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tdelmas.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "technosavvyport.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "telekollektiv.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teleogistic.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "telescam.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "textualapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theater.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thehistory.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thorbiswebsitedesign.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tlo.network", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "torprojects.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": "totalchecklist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tpe-edu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trollme.me", "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": "ttz.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tvtubeflix.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "twopif.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unblocked-networks.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uni-games.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unila.edu.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unitel2000.de", "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": "vincentcox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "walkeryoung.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wartorngalaxy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wealthprojector.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wealthprojector.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weathermyway.rocks", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "web4all.fr", "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": "wettbuero.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wetttipps.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wetttipps.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whatsupgold.com.tw", "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": "wrwg.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xatr0z.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xng.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yplanapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zacarias.com.ar", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ze3kr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zirtue.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zoneminder.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "6969.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aaeblog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anitube-nocookie.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anitube.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "appartementhaus-badria.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "appson.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arjandejong.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aunali1.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "avantmfg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "b3orion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bandrcrafts.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bettween.com", "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": "bildermachr.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bizcms.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blmiller.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "boxintense.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brightstarkids.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brightstarkids.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brightstarkids.sg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bsklabels.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "btsoft.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "budgetalk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "burningflipside.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": "chic-leather.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chijiokeindustries.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chun.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "citiagent.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cmdline.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cojo.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "concord-group.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "culinae.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "decafu.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dergeilstestammderwelt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dibiphp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "disruptivelabs.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "disruptivelabs.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dovetailnow.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": "eurostrategy.vn.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eveseat.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": "fastcomcorp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "felisslovakia.sk", "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": "fhcdn.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "filoo.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": "florian-schlachter.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fortress.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freeutopia.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gosuland.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guguke.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hacker.one", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hdm.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hds-lan.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "henriksen.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hiddenmail.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hohm.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "holifestival-freyung.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "huaxueba.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ideadozz.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ikvts.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "interaffairs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isitamor.pm", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kanna.cf", "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": "kotonehoko.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kropkait.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kryx.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "laserfuchs.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lawformt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "levinus.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lightme.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "limeyeti.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lottosonline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "macleod.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "masa-yoga.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mathhire.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mattwb65.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mavenclinic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meditek-dv.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "micro-dv.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mind-moves.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minecraft-forum.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minecraft-forum.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minecraft-forum.gq", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minecraft-forum.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minecraft-forums.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minecraft-forums.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minecraft-forums.gq", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minecraftforum.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minecraftforums.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minecraftforums.gq", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minecraftforums.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mittelunsachlich.de", "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": "nettefoundation.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "network-notes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neveta.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "niftiestsoftware.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nullpoint.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "open-bs.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paulproell.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peerherrmann.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pixelcode.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "planet-work.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "posobota.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ppmoon.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": "privacyrup.net", "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": "purplemoon.mobi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "purplestar.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "purplestar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "purplestar.mobi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pushapp.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pyplo.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rentcarassist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rmstudio.tw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roave.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rotzonline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "samaritansnet.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sandbagexpress.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "selfici.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slovakiana.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "solsystems.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soondy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spacefish.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stjohnmiami.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "streampanel.net", "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": "sveneckelmann.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "texy.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "the-construct.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thebrotherswarde.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thelocals.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thomas-grobelny.de", "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": "tomcort.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonburi.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "totch.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "untoldstory.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unun.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "valmagus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vansieleghem.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vfdworld.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "viperdns.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": "wiseloan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wje-online.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wxcafe.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xellos.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xett.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yecl.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yolobert.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ys-shop.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zooparadies.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0paste.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2nerds1bit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acr.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adevel.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adrl.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aishnair.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "altesses.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "altonblom.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amishsecurity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andreasfeusi.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anedot.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aniplus.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anshuman-chatterjee.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asandu.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aspires.co.jp", "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": "avalon-island.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "avec-ou-sans-ordonnance.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aviacao.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "babarkata.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "babyfotograf-schweiz.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bacchanallia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "balkonien.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bananabandy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "baofengtech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "baud.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beachi.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bentley.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bfw-online.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biou.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinworld.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blauwwit.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bluemosh.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bonifacius.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "boringsecurity.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bougeret.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bowling.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brasalcosmetics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cadoth.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "caffeinatedcode.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cais.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": "canadasmotorcycle.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "car-navi.ph", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carck.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cardrecovery.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cativa.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ccayearbook.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cctech.ph", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cementscience.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "centralync.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cevrimici.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chaoschemnitz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chch.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "choosemypc.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chriswells.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clintonbloodworth.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudcy.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clouddesktop.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cmci.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "co50.com", "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": "cyph.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cyph.video", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cysec.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "d3xt3r01.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daimadi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datorb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "decomplify.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deepserve.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dentaldomain.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dentaldomain.ph", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dereferenced.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "devh.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "devolution.ws", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diegelernten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dmlogic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dmwall.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dutchrank.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dzimejl.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eagletechz.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "echomanchester.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ecnetworker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "efficienthealth.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": "endlesstone.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eriix.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "expo-designers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ezmod.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": "faesser.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "faizan.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "faizan.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "federicomigliavacca.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "findtutorsnearme.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flawlesscowboy.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flowersandclouds.com", "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": "franzt.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fukushima-web.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fzn.io", "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": "geeky.software", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "genslerwisp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "genxnotes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getvdownloader.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "glidingshop.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gracesofgrief.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grantedby.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grazetech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grcnode.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gtmasterclub.it", "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": "handmadetutorials.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "harbor-light.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hduin.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "homads.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hoodoo.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hoshisato.com", "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": "imququ.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imreh.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "indust.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inksay.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "institutoflordelavida.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "interfug.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iocheck.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isaacman.tech", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isondo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jcraft.us", "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": "jonathan-apps.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jonathancarter.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jonfor.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jorgemesa.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joyofcookingandbaking.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": "kanotijd.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "katka.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kd-plus.pp.ua", "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": "kengilmour.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kikuzuki.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kinderwagen-test24.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kitsostech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "klif1.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kodokushi.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kokenmetaanbiedingen.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kreavis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "latus.xyz", "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": "lewisjuggins.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "limalama.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "listafirmelor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ltn-tom-morel.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luehne.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lunakit.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "m3-gmbh.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "manoirdecontres.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marktcontact.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maxwell-english.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mazz-tech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mcc.re", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mcpart.land", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "medirich.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "medo64.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meizufans.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michaelcullen.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michaelleibundgut.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michal-kral.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "microme.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "midonet.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "misskey.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mizd.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "monnyonle.hu", "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": "mtasa.com", "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": "myonline.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myzina.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nabytko.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nakedalarmclock.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nanogi.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "narach.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nb.zone", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nbg-ha.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neko-life.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netfs.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netfxharmonics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "newcitygas.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nyffo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "obdolbacca.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "obscuredfiles.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "okane.love", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "omifind.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ondrej.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onlinedemo.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "optmos.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oszri.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "otya.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "overclockers.ge", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pan.digital", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "per-pedes.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "performaterm.ro", "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": "phparcade.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pierre-denoblens.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "playnation.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "plogable.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pretty.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "principaltoolbox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "profi-durchgangsmelder.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "profpay.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ptgoldensun.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quantenteranik.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quantumcourse.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "r811.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "racermaster.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rcpcbd.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "relisten.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "retcor.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rhdigital.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ronwo.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rootwpn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "russmarshall.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saveyour.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scienceathome.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "screenresolution.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "secpatrol.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "serbanpaun.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "serverstuff.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seryo.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seryovpn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shtorku.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "siebens.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sightcure.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silverpvp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sinoscandinavia.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skia.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skyminds.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slightfuture.click", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slightfuture.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smares.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sms1.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "socomponents.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sosecu.red", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soved.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spark.team", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spicymatch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sritest.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sstewartgallus.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": "stbennett.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "steakovercooked.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stkbn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stopwoodfin.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stressfreehousehold.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "student-scientist.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "studentresearcher.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "styles.pm", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sulek.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "susanbpilates.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "susanbpilates.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": "taskstats.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tcl.ath.cx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teamzeus.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techelements.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techpivot.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teddy.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tetsumaki.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "textracer.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thedark1337.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "themicrocapital.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theojones.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tls.builders", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tmaward.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tmpsantos.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobiasmathes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobiasmathes.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tommyads.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "touhou.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "treebaglia.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trophee-discount.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tryoneday.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trywesayyes.com", "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": "undone.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unionplat.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uripura.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "use.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vapordepot.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "varghese.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vgatest.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vikashkumar.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vimeo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "volcrado.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vpnhot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "w4xzr.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wallingford.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "warandpeace.xyz", "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": "wasema.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webseitendesigner.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "westeros.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wiimotion.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "winclient.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "winmodels.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "winmodels.ru", "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": "wolfsden.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wolfwings.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "woodbury.io", "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": "wpfortify.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wpvulndb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xdd.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xiangweiqing.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xkviz.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xwaretech.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "y-s.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "youcontrol.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "youyoulemon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yuyu.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yvesx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zhanghao.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zorz.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0au.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "692b8c32.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abury.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adam-kostecki.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adjagu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "akostecki.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alkami.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "angristan.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "approlys.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aquilaguild.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arabdigitalexpression.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "assdecoeur.org", "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": "bastianstalder.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bbnx.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bettercrypto.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bienici.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biosignalanalytics.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": "calculator-imt.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": "cloudstorm.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "convert.zone", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cowboyim.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crizk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptoparty.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "csohack.tk", "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": "darkdestiny.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davidgow.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ddatsh.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dicgaming.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digitkon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dinube.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dislocated.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domfee.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drupal.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dutchrank.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elpo.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "embracethedarkness.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "europop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fallenangeldrinks.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fallenangeldrinks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fallenangeldrinks.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fallenangelspirits.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fallenangelspirits.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fallenangelspirits.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fallenspirits.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "faspirits.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "faspirits.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feezmodo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "florismouwen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fotostudio-schweiz.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freiwurst.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "genxbeats.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gm-assicurazioni.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goggs.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gurom.lv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haozi.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "havelland-obstler.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hotchillibox.co.za", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hotchillibox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "icusignature.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "internethering.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inusasha.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "invictusmc.uk", "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": "jagerman.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jean-remy.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jonlabelle.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jrmd.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kassa.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keganthorrez.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kjarrval.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kurehun.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lafkor.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loacg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marcoececilia.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marie.club", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "markusweimar.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mctherealm.net", "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": "mobilemedics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myvpl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nedcdata.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nusatrip-api.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": "one---line.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "online-bouwmaterialen.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oprechtgezegd.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pariga.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paul.reviews", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "piconepress.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pirateproxy.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pmponline.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prediksisydney.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "press-anime-nenkan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "privytime.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "queercinema.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "realmic.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rene-schwarz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rhinelander.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "romainmuller.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "royalpalacenogent.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scs-simulatoren.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sdcardrecovery.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seiko-dojo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "selent.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shukatsu-note.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "singul4rity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "speedtest-russia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "taxbench.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": "the-gist.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thegoldregister.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thejserver.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tlo.hosting", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "treeby.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "truckstop-magazin.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ttcf.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tuningblog.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tuntitili.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "umwandeln-online.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "w4nvu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wanban.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wdbgroup.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webm.to", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wenjs.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "winter.engineering", "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": "wrightdoumawedding.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ww2onlineshop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yellowcar.website", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "youcancraft.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yunity.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "a-plus.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "achenar.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adelevie.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andrewsun.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anedot.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": "astengox.com", "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": "autokovrik-diskont.ru", "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": "bodyblog.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bpastudies.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ceopedia.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cfetengineering.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cinefilzonen.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cirfi.com", "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": "codabix.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "creditkarma.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptify.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cwagner.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cyberpunk.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dadons-laserdiscs.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": "dequehablamos.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "discofitta.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dragonisles.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eligible.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "esclear.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firevap.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gintenreiter-photography.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "graphire.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grossmann.gr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gurochan.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hastherebeenamassshooting.today", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heartsucker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hmm.nyc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iamokay.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "infilock.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iseulde.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "klauwd.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": "krypteia.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kybi.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "levert.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "libreboot.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linuxlounge.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "litvideoserver.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liud.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lugbb.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mailer-dot.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "make-pizza.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mammothmail.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mammothmail.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mammothmail.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": "mbweir.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mfiles.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mintrak2.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mobiletraff.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moneromerchant.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "monitzer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nearby.in.th", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netsystems.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neuralgic.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nolberg.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "openxmpp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "optenhoefel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oversight.garden", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "plfgr.eu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "politic.org.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "potlytics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ppy3.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ptbx.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "purplebricks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quchao.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "raidstone.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rawoil.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "remodela.com.ve", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rightcapital.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rolemaster.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "room208.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ruanmi.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saikarra.com", "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": "seatbeltpledge.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shv25.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stmbgr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "streams.dyndns.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "syncserve.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomatenaufdenaugen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vitkausk.as", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wander.al", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wapjt.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webdevops.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "winpack.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "winpack.eu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wittcher.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wss.com.ve", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wsscompany.com.ve", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ycc.wtf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zefu.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zonglovani.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zooom.azurewebsites.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zzw.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0p.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adams.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anderslind.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chiru.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dealpass.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "driving-lessons.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elbetech.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ernesto.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "esquonic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "falkp.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "furry.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gautvedt.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gorilla-gym.site", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "graph.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gravitation.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grsecurity.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": "heyguevara.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hostgarou.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jobbkk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kakao-karten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kitakemon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leinir.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luom.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lyx.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "martinp.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minpingvin.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "omniti.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "open-bs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "perfect.in.th", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "postal.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "puryearlaw.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "revolt.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ruborr.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sbssoft.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schrodinger.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "serfdom.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seryo.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sscd.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tinylan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "travisf.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tresorsecurity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "urphp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "v0tti.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wegner.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wilddog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wlzhiyin.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wondermags.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zqhong.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": "jhburton.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0x52.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0x90.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0xee.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1011100.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1464424382.rsc.cdn77.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1972969867.rsc.cdn77.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1whw.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2brokegirls.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "808.lv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "911911.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "99511.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abilymp06.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abury.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acabadosboston.com", "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": "adblockextreme.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adboos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adopteunsiteflash.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aether.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "afuh.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agalaxyfarfaraway.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agevio.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aiesecarad.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aivd.lol", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "akhras.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "albertopimienta.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "albion2.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alecpap.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alessandro.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexhd.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexismeza.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexn.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "allbenjoy.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "am3.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ambiente.one", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ancientkarma.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andrewmichaud.beer", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andrewmichaud.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anitaalbersen.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "annuaire-photographe.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anonboards.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anthenor.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anyprime.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aopedeure.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aperturesciencelabs.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apolloyl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "appart.ninja", "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": "aradulconteaza.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arbu.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "argh.io", "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": "aristocrates.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "armingrodon.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "articaexports.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arzaroth.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asasuou.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asc16.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aserver.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "askmagicconch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atbeckett.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "attimidesigns.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aucubin.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "auverbox.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "axrec.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "baalsworld.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "backscattering.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "baer.one", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "baiker.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ballotapi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bananium.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "barbu.family", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "barrut.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bartel.ws", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bartlamboo.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bashcode.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "basnieuwenhuizen.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beanjuice.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beardydave.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beinad.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bendemaree.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bendingtheending.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benk.press", "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": "berr.yt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "betaclean.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "betulashop.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bezorg.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bieberium.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bildschirmflackern.de", "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": "biosphere.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "birdfeeder.online", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "birminghamsunset.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoin.asia", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoin.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoin.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoin.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoin.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoin.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinbitcoin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinprivacy.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blackphoenix.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blastersklan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bluescloud.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blurringexistence.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bluserv.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bnhlibrary.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bokeyy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bookofraonlinecasinos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bouncourseplanner.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bradbrockmeyer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bran.land", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bratteng.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brickoo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bridholm.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brunoramos.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bsalyzer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bsdtips.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bsquared.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buck.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "budskap.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buettgens.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bugtrack.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bund-von-theramore.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "businessfurs.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buyinginvestmentproperty.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bypro.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "c.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "c3b.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cabsites.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cacaolalina.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "calgoty.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "calibso.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "canarymod.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "candratech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "capper.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "captchatheprize.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carnildo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "casinostest.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "catsmagic.pp.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cavedroid.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ccja.ro", "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": "chaos.fail", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chatear.social", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chaz6.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chejianer.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chenapartment.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chireiden.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chocotough.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "christiaandruif.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cintdirect.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cirrus0.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ciscommerce.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clarkeaward.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "classicday.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cldly.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clsimplex.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clywedogmaths.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cocaine.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codeforce.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codelayer.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codewild.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "com.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comhack.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comicspines.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "compeuphoria.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "compiledworks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "completionist.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "consciousbrand.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "core4system.de", "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": "coughlan.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cozmaadrian.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "craftinginredlipstick.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cravelyrics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "critical.today", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "criticalaim.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptoisnotacrime.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "csokolade.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cssu.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cthomas.work", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cubeserver.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cubua.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cuibonobo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "curlyroots.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "custe.rs", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daduke.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dalingk.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dallmeier.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danaketh.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danielcowie.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danieldk.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danielverlaan.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darkhole.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darkside.re", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darksideof.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davidandersson.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davidreinhardt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dc585.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dedicatutiempo.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "degeberg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deinballon.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dementiapraecox.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "denniskoot.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dersoundhunter.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "derwolfe.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "detoxsinutritie.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deuxsolutions.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "devopsconnected.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dighans.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digitalnonplus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dipconsultants.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": "dj4et.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dkds.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dlemper.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doesmycodehavebugs.today", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dokuboard.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domhaase.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "donzelot.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dotbox.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doublefun.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dovecotadmin.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "downsouthweddings.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drdevil.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "driesjtuver.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drivenes.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drugagodba.si", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dumino.bg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dutchwanderers.nl", "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": "dvorupotocnych.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "easez.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eatlowcarb.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eb7.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "echopaper.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ecogen.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ecogen.net.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eduif.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "electricant.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elektropost.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "element-43.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elite12.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elliriehl.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elnan.do", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emilyhorsman.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eminovic.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emnitech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enterprisey.enterprises", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eoldb.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "epicwalnutcreek.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "epublibre.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eq8.net.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eressea.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "esko.bar", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "esocweb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ethanfaust.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eulerpi.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "euph.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "evilized.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "evossd.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eytosh.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fabienbaker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fableforge.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "faeriecakes.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "familjenfrodlund.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fashioncare.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fastopen.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fatox.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fdj.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fecik.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feel.aero", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feirlane.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feliwyn.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fenno.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fenteo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feragon.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fierman.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "figuurzagers.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fiksel.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fikt.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "finfev.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fischers.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flamingkeys.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flocktofedora.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flouartistique.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "francevpn.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frangor.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freqlabs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fridolinka.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fritzrepair.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frly.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frogatto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "furry.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "futuretechnologi.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gam3rs.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gamecollector.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gamegix.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gameink.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gamesurferapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gamishou.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gampenhof.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "garagegoossens.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "generic.cx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "genossen.ru", "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": "gereon.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gesiwista.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gethttpsforfree.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getinternet.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getmassage.com.ng", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getremembrall.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gfm.tech", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gigacog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gijsbertus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "glentakahashi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "go.ax", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goalsetup.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gofigure.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gorschenin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gps.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gravitechthai.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greedbutt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greenpeace.berlin", "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": "groth.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "groth.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guillaumeperrin.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guntbert.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guvernalternativa.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gwtest.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hackenkunjeleren.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hackerpoints.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hackest.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hadleighswimmingclub.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hadzic.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haitschi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haitschi.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haitschi.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haitschi.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hallmarkestates.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haman.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hardline.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "has.vision", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hazcod.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hbpowell.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hcie.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hdeaves.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heathmanners.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hec.global", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hejahanif.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "henok.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hhhdb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hhmmmm.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hiisukun.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hiphopconvention.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hittipps.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hodne.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hondart.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "honoo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hostelite.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hostingfj.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hrobert.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hscorp.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hupp.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "huskybutt.dog", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hydra.ws", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iactu.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iamveto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "icebat.dyndns.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ictinforensics.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "idiopolis.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ies.id.lv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ifconfig.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iflare.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "igforums.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "igrivi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "immaterium.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "informatik.zone", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "infosenior.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inios.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "insane.zone", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "internetcasinos.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inton.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "investorforms.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iodu.re", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ipconsulting.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "irazimina.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iridiumflare.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iskaron.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isreedyintheuk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "issuesofconcern.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itludens.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itsatrap.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iwalton.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iwizerunek.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jackdelik.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "james.je", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamesbradach.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamesdoell.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamiemagee.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "janario.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jaqen.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jasonamorrow.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jastoria.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jazzanet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jazzncheese.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jbradaric.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jctf.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jdubya.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jeffcasavant.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": "jhejderup.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jimas.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jka.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joakimalgroy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "johannes.wtf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "johnrom.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "johnverkerk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jonn.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jopsens.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jrgold.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jstore.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jugendsuenden.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jultube.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jump.wtf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "junaos.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "junkdrome.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jupp0r.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": "kantankye.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "karguine.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "katericke.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kausch.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kdata.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ke7tlf.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keaysmillwork.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ketosecology.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kevinapease.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kevinbusse.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kirara.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kirschbaum.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kirstin-peters.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "klausimas.lt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kolaykaydet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "konata.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koopjesnel.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koot.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kraiwan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kraiwon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kream.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kriegskindernothilfe.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kristikala.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kroetenfuchs.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kuwago.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "labordata.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "labs.moscow", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lacledeslan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lacledeslan.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lambdafive.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lamboo.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "laminine.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "langendries.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "langhun.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "larsklene.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lavine.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lbayer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lenn1.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leolana.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lerner.moscow", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lerp.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lgts.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lhalbert.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lightpaste.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lindberg.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linzgau.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "litchidova.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lithesalar.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "little.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liveforspeed.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "livnev.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loafbox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "localchum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loginseite.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loli.bz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loopstart.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lpm-uk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lubot.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lucielavickova.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luther.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luukklene.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lzzr.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "macchaberrycream.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maddin.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maelstrom.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mahefa.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "malfait.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "managemynetsuite.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "manowarus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marcelpreuss.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marcofinke.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marcohager.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marilsnijders.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matrix.ac", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matt.tf", "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": "maultrom.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mcatnnlo.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mcl.gg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meadowviewfarms.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "medusa.wtf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meghudson.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meifrench.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "merccorp.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mereckas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "merson.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "metapeen.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michaelfitzpatrickruth.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michasfahrschule.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miconware.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "midwestwomenworkers.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mikepair.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mikewillia.ms", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "milonga.tips", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mirodasilva.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mjec.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mmucha.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "modydev.club", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moen.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mojaknjiznica.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moonraptor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moov.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "morbatex.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "morenci.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mornings.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "morpork.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "morteruelo.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mozoa.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mplusm.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mremallin.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mrettich.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "msiegmund.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mvanmarketing.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mwavuli.co.ke", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mycoted.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mysoundtalks.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": "n0psled.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "naminam.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nathanmfarrugia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "navjobs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ncrmnt.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ne1home.dyndns.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neap.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nedraconsult.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nerdjokes.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nerdydev.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neris.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netherwind.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netsight.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nettools.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nex.sx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nexlab.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nextproject.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nickloose.de", "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": "nicolaeiotcu.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nightfirec.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nikomo.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nohup.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nojestorget.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nolaviz.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nomorebytes.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "noordsee.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nopol.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "norandom.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "norb.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "notadd.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ntbs.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nuxer.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "octav.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "octothorpe.club", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ollie.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "omgaanmetidealen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onaboat.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onewebdev.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onlinekasino.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onlinespielothek.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onthebriteside.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "openpriv.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "orbitcom.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oricejoc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oshell.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "osticketawesome.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "othercode.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "othermedia.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "otherstuff.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "otrsdemo.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "overseamusic.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": "p1984.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "p1c.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paginapolitica.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pakke.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paneu.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "papierniak.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paranoxer.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "partijtjevoordevrijheid.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "partyhaus.ovh", "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": "paulyang.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pekkapikkarainen.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pelanucto.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pengi.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pennergold.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "perlwork.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "persson.im", "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": "phoebe.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phperformances.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "picardiascr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pickr.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pippen.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pitfire.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pittonpreschool.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pixelbash.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "playmaker.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pocloud.homelinux.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "polynomapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "povitria.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "powerxequality.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "predoiu.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pridoc.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "progreso.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "promhadan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "proustmedia.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "puikheid.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pumpgames.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "puppydns.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pypt.lt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "q2.si", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qingpei.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qinxi1992.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qop.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quranserver.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qwilink.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "r10n.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "r15.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "raajheshkannaa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "radicaleducation.net", "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": "raydan.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reachr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reactivarte.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "readonly.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "regionale.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "regmyr.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reisyukaku.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rejo.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "renkenlaw.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "revello.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rgavmf.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rhering.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "richardhering.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ringingliberty.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": "robertkrueger.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rodehutskors.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rodney.id.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roelf.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rohedaten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rsf.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rubberfurs.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rubenschulz.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rudeotter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ruqu.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rwanderlust.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rxv.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "samifar.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sanglierhurlant.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sash.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "satrent.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saturne.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sc4le.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scandicom.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schlabbi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schnouki.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schumanandmonnet.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scrion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seattlefabrication.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "securiviera.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "selcusters.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "semyonov.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "septakkordeon.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seq.tf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "serverco.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sharepic.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shaunwheelhou.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shiona.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shortr.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "showsonar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sidnicio.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silentlink.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silentundo.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silverdragonart.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silverhome.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silverwind.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simonwessel.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simplefraud.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sin30.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skilletfood.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skullhouse.nyc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slaps.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slashdesign.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slashem.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sluitkampzeist.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slycurity.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smalldata.tech", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "snowcrestdesign.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sobotkama.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sofabedshop.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soju.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "solidus.systems", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "someshit.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soph.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sortaweird.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sown.dyndns.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spacedust.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sparsa.army", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spicydog.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "squatldf.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "srna.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stalder.work", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "standingmist.com", "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": "stoianlawfirm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "strobeto.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "studenttravel.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "studyhub.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stuntmen.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "suave.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sudo.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "superbabysitting.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "superbart.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "supermarx.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "suprlink.net", "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": "syam.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "synatra.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "synchrocube.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sysadmins.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "systemreboot.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "szaszm.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "szongott.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "t7e.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tahf.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tantalos.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tartaros.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "taskulu.ir", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "taxaroo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tazz.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techcavern.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techtalks.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tecture.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teemperor.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tehotuotanto.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "testbawks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tezcam.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "the-earth-yui.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thehonorguard.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theinvisibletrailer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theodorejones.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thescientists.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thesled.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thetradinghall.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thezero.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thibautcharles.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thinkcoding.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thisisforager.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thisserver.dontexist.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thkb.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thrx.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tianshili.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tiendavertigo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tikutiku.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tinastahlschmidt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tlach.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toccoig.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomaspialek.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomrei.com", "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": "topmarine.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tosteberg.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toucedo.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toutart.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "townhousedevelopments.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trik.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trollscave.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trustmeimfancy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tty.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tuvalie.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uat-activesg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ukrgadget.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unexpected.nu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unpossible.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uns.vn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "urban.melbourne", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "urbanmelbourne.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "usbcraft.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "valkohattu.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vangeluwedeberlaere.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vantru.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vespacascadia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vetinte.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vincentkooijman.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vincentkooijman.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vleij.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "voidi.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vop.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vpl.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vztekloun.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "warsentech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "warsh.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wasserspucker.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wassim.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webstory.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "welteneroberer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weltengilde.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weltenhueter.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weltmeisterschaft.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "werkplaatsoost.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "werkruimtebottendaal.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "westcountrystalking.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wetofu.top", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wetthost.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wifimask.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wiktoriaslife.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "withmy.beer", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "womosale.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wpmetadatastandardsproject.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wrgms.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": "x2w.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xandocs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xbt.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xichtsbuch.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xmppwocky.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xss.ht", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xwalck.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yakmade.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": "yanwh.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yaxim.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yhaupenthal.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ymarion.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yoramvandevelde.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "youkok2.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "youtous.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ypiresia.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "z1h.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "z4k.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zakmccrac.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zcon.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zdbl.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zebrababy.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "znation.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zocken.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zwerimex.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0513c.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0x.cx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1022996493.rsc.cdn77.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "14it.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "24ip.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "28spots.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2or3.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "35792.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "365.or.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "4project.co.il", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "6660111.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "7sons.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "7thheavenrestaurant.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aaronkimmig.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": "abou.to", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adayinthelifeof.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "advancedstudio.ro", "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": "aleax.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alela.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexandre.sh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "allinnote.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "allthethings.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alphalabs.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "altfire.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amri.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anagra.ms", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andisadhdspot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andrewmichaud.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andrewvoce.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "androoz.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andyuk.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anglictinatabor.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "angrapa.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aniplus.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anomaly.ws", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anyways.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": "art2web.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "artifex21.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "artmoney.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arvamus.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "as9178.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "assekuranzjobs.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "audisto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ausnah.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "azzag.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "azzorti.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "babybee.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "backeby.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "barcoderealty.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "barrelhead.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bcheng.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bedrijvenadministratie.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beinad.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "belics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "berlinleaks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "betonmoney.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "betplanning.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bfear.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blackdesertsp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blha303.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blindsexdate.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blogreen.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blutroyal.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "borisbesemer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bramvanaken.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "branchzero.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brandred.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "busold.ws", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "butchersworkshop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buybaby.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bwear4all.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bytesofcode.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "c1yd3i.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cajunuk.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "canadiangamblingchoice.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "canyoupwn.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "catinmay.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cerebelo.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chaulootz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chazay.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "christophheich.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cigarblogs.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cimalando.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clanthor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clockcaster.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudapi.vc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudbolin.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudstrike.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clvrwebdesign.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cmsbattle.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": "code67.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codyevanscomputer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coldfff.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comercialtrading.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "continuumgaming.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cool110.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "creep.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cruzr.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cyberoptic.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cygnius.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "czlx.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "d-designerin.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dachb0den.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dakrib.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danjesensky.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danrl.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darrenm.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dash.rocks", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dashboard.yt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "data.haus", "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": "davidscherzer.at", "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": "deight.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dewalch.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dfranke.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diddens.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "directme.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dittvertshus.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dizorg.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doeswindowssuckforeveryoneorjustme.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dominikkulaga.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dougferris.id.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drakeluce.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dramaticpeople.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "draw.uy", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drawesome.uy", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drobniuch.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dvwc.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "echosixmonkey.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edcphenix.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eelzak.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eery.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eidolonhost.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elars.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elearningpilot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elemenx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elgosblanc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eligrey.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elsamakhin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "end.pp.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enteente.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enveloppenopmaat.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "epanurse.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erotalia.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erp-band.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erp.band", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erpband.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "errolz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "esteam.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "euanbaines.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eulenleben.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "everylab.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ewie.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "expertmile.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ezrefurb.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fanvoice.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fawkex.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fierman.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fierman.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "finanzkontor.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "findyour.diet", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fionamcbride.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firstderm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flags.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flamme-von-anor.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fletchto99.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foodiebox.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "formazioneopen.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "formini.dz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fotowolfy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frankhaala.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freeboson.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freekdevries.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freezion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freshdns.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frob.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fromscratch.rocks", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "g-marketing.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gabber.scot", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gamajo.com", "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": "gatilagata.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gaussorgues.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gechr.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "genehome.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "get-asterisk.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "get-erp.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geterp.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getlolaccount.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getts.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gheorghesarcov.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goben.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gogenenglish.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goldpreisfinder.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gordonobrecht.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grafmurr.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gritte.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "groovydisk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guffr.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gussi.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "h-jo.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haktec.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "happytiger.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "happyukgo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hardertimes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hauntedfishtank.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haurumcraft.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hdwallpapers.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hexicurity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hogar123.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "holofono.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "homeseller.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "homeseller.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "housingstudents.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hpisavageforum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hsir.me", "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": "idolf.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ikwilguidobellen.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imim.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "in-depthoutdoors.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "infcof.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inflation.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "innovaptor.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "intel.li", "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": "ircmett.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isincheck.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isletech.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "its-gutachten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "its4living.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iwannarefill.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jagido.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamesmorrison.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "janokacer.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jaot.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jasperhammink.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "javalestari.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jayschulman.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jayscoaching.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jensenbanden.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jetsetcharge.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jetsieswerda.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jettlarue.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jie.dance", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joerss.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joostrijneveld.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jr5devdoug.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jr5devdouglas.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "juliamweber.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "justchunks.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jvoice.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kackscharf.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kaileymslusser.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kalender.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kamitech.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kana.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kapseli.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kawaiiku.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kawaiiku.de", "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": "kerksanders.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kg-rating.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kilianvalkhof.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kissart.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kjaermaxi.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kleinerarchitekturfuehrer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "klicktojob.de", "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": "krasota.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "krmela.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kumachan.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kumasanda.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kummerlaender.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lacasseroy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "land.nrw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "langatang.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "langenbach.rocks", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "largescaleforums.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lasercloud.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lask.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "laxatus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leedev.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lega-dental.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lesperlesdunet.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "letustravel.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lewis.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lfullerdesign.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liaillustr.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "libbitcoin.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lillepuu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linuxbabe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liris-beautywelt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lntu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "localbandz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lokaal.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lolpatrol.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lrhstsa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lukas.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lumiere.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lunix.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "madnetwork.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mailchuck.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mall.hr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marikafranke.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "martelange.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "martiert.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "massdrop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mattandreko.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mavisang.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mawe.red", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mce55.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mdscomp.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meap.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "melnikov.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mentax.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mesmoque.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "microvb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mijcorijneveld.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mintea-noua.ro", "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": "mlp.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mobidea.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mobilpass.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moelord.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mommel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mommelonline.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "monix.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moonloupe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "morningcalculation.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "msmails.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nabru.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ncc60205.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nemno.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nerd42.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "network23.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "newportpropertygroup.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ninchat.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nobly.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "noop.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "noxlogic.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nsweb.solutions", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nyyu.tk", "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": "oceandns.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ocotg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oftn.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oiepoie.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "okhrana.agency", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "okok-rent.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "okok.rent", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ols.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oneway.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onlinepollsph.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "opensrd.com", "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": "oscsdp.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ostendorf.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "p3in.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": "palatin.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pamplona.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "panni.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paradoxdesigns.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "parithy.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "payfreez.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pear2pear.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peervpn.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "perot.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "petchart.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "petravdbos.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pgmsource.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "philadelphiadancefoundation.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pindanutjes.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pinoyonlinetv.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pipenny.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pir9.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "placehold.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "port80.hamburg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pr2studio.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prekladysanca.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "privatepokertour.com", "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": "psxtr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pucssa.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pygarage.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": "qualityology.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quantumfurball.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "r40.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rainbowbarracuda.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "razlaw.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rbhighinc.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rcnitrotalk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "realmofespionage.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "recht-freundlich.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reddit2kindle.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "renderloop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reprolife.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "richsiciliano.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ring0.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rous.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rozalisbengal.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rubbereggs.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ruderverein-gelsenkirchen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ryanmcdonough.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "safejourney.education", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "safeme.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saleaks.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "salud.top", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "santing.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sarahbeckettharpist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schmitz.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schneids.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schwarzwaldcon.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scottstorey.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scrapings.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "screencaster.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "secandtech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sedoexpert.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sedoexperts.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sephr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "serveroffline.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sessionslogning.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shiftins.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shulan.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "siciliadigitale.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sideshowbarker.net", "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": "signere.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simbast.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sincron.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sinneserweiterung.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sisv.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sitehost.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sizingservers.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skatn.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skhoop.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slauber.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sliceone.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smartofficesandsmarthomes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smet.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smirkingwhorefromhighgarden.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smoothics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "socialgrowing.cl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "socialhams.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soldecom.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soumikghosh.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soundforsound.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sovereignshare.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spot-events.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": "srpdb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ssworld.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stationaryjourney.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stefanweiser.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stefany.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stigharder.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stnl.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "strobeltobias.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "studlan.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stumf.si", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stygium.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sundayfundayjapan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "swansdoor.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "swmd5c.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "swyn.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sxbk.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sylvan.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "systemintegra.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "t0dd.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tankski.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tappublisher.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "taranis.re", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techmatehq.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "technoparcepsilon.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teodio.cl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "testandroid.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "testnode.xyz", "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": "themeaudit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thenocman.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thestory.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theworldsend.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thezonders.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tmitchell.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonsit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonsit.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toptranslation.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "transitpoint.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "transverify.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "treeschat.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": "triple-mmm.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trzepak.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ts2.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ulmo.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "umidev.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "upboard.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ur-lauber.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "usbtypeccompliant.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "val-sec.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "valethound.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "valshamar.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vanestack.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vattulainen.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vdcomp.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vegalitarian.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vglimg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "viciousviscosity.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "videomuz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "visiontree-beta.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vogt.tech", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vonedelmann.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wangqiliang.xn--fiqs8s", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "warekon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weberjulia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webstore.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wer-kommt-her.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whisp.ly", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wikimilk.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "winecodeavocado.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wittydonut.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "womb.city", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "woording.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wphostingblog.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wql.zj.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xmr.to", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--3lqp21gwna.xn--fiqs8s", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--3lqt7ir4md4tzwa.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--3lqt7ir4md4tzwa.xn--fiqs8s", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--qckss0j.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xqin.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yamamo10.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yatesun.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yjsw.sh.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yusa.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "z33.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zelfstandigemakelaars.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zerocool.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zima.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zoomingin.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zulu7.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zvps.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "020wifi.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0xa.in", "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": "2programmers.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "420dongstorm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "4ourty2.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "960news.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agroline.by", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amazing-gaming.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andrewtebert.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arturkohut.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atg.soy", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "awg-mode.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "azuxul.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bankcardoffer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "barely.sexy", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bazarstupava.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benni1.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bexit-hosting.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bexit-security.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bexit-security.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bexithosting.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bible.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bibleonline.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biguixhe.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "binaryabstraction.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blackhelicopters.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bobiji.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bondskampeerder.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brossman.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brunix.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": "carey.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cfh.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ciubotaru.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clubmate.rocks", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cnam.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codeplay.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codewiththepros.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "compalytics.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": "coverduck.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crendontech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptearth.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daolerp.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datascience.cafe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dbx.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deeprecce.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "denisjean.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dick.red", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "distinctivephotography.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dnscurve.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dogespeed.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "duuu.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "earlybirdsnacks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eauclairecommerce.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eichornenterprises.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "einaros.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "electricant.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "empleostampico.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enteente.club", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enteente.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fakeletters.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "familie-sander.rocks", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fargtorget.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fierlafijn.net", "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": "fortnine.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "glittersjabloon.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gmw-hannover.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gonzalosanchez.mx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gripopgriep.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "groseb.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guevener.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haku.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hashru.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "healthfoam.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "herrsmith.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "highvelocitydesign.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hikariempire.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hipstercat.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hirake55.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "holmesian.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hx53.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ianix.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "idoc24.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "idontplaydarts.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imagefu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imjiangtao.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inchomatic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "intranetsec.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inzdr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isogen5.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itsadog.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itsecurityassurance.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jcaicedo.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jefftickle.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kakaravaara.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kantanmt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kesteren.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kesteren.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kjellvn.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kunstundunrat.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "laobox.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lemoine.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leonmahler.consulting", "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": "lesdouceursdeliyana.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "logopoeia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lvrsystems.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mariaolesen.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "markrego.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "markri.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "martinkus.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michaeltroger.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michalkral.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mikadoe.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moviedollars.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mpetroff.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mtamaki.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "muriburi.land", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mybeautyjobs.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "n4l.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nekosc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nerull7.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netulo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nnya.cat", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nottres.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ofcourselanguages.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "olmari.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "opentrack.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "opq.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "outetc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pbscreens.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pentagram.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "perdel.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "petsittersservices.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "poussinooz.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "professionalboundaries.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "projectblackbook.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "r0t.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rapidthunder.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "raulfraile.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reader.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "redicabo.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rezosup.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rezosup.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rheocube.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rhodri.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ride-up.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rijndael.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robinwinslow.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robohash.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rxprep.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scriptict.nl", "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": "setfix.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shannoneichorn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shome.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sighup.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skanvordoff.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skills2services.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slamdjapan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "snl.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sowncloud.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spielcasinos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spiet.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "starpeak.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "studer.su", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "subbing.work", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sublevel.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "supereight.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "svarovani.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "talktwincities.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tcdw.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tenyx.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tescoirelandpayslips.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "themostexpensiveworkofart.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thinkcoding.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thomasnet.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tictactux.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tiensnet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tigerchef.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timetab.org", "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": "uerdingen.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "utumno.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "valtoaho.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vipnettikasinoklubi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webdesigneauclaire.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webnosql.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whoclicks.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whoisapi.online", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wipply.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wolfesden.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wxukang.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yagihiro.tech", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zhendingresources.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": "7kovrikov.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adderall.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agwa.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alanlee.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atletika.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "auto-anleitung.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bakaweb.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "breitbild-beamer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bullbits.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cat-box.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cgtx.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chriskyrouac.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chuckame.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clawe.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clickforclever.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clickphish.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cmacacias.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cmlancy.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comodo.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "curveweb.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "debank.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dentistglasgow.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "denverprophit.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digitalehandtekeningen.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "docid.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dotbigbang.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edesseglabor.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edp-collaborative.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emilong.com", "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": "geekwu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "glasschmuck-millefiori.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goge.site", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "graavaapi.elasticbeanstalk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gz-architekten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "httpsecurityreport.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ibron.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "icewoman.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ifxor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "innovaptor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "interlun.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": "jobmob.co.il", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joretapo.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kamcvicit.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kintore.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lakhesis.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "langguth.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "latitude42technology.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linuxmonitoring.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mediawikicn.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mikeg.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nalao-company.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pekoe.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "php-tuning.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prytkov.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "s13d.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saorsat.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sazuz.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sectia22.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shiftplanning.com", "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": "strijkshop.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "synackr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "szagun.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techassist.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobiasofficial.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "traffixdevices.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trusteecar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "windscribe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wlaws.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xolphin.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zellari.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "123plons.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1cover.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1xcess.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2carpros.com", "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": "abilitynet.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": "acheconcursos.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acnpacific.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acuve.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "addaxpetroleum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adigitali.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adquisitio.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adquisitio.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adquisitio.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adquisitio.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adquisitio.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "affiliateroyale.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aficotroceni.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ahd.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "airsoft.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aldes.co.za", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexandra-schulze.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "all-subtitles.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "all4os.com", "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": "animesfusion.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "applez.xyz", "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": "babysaying.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bankersonline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "banqingdiao.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bbdos.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bcdonadio.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bedabox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "belcompany.nl", "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": "beryl.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "betcafearena.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "betpamm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bevinsco.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bfi.wien", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bhuntr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "billin.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biofam.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bip.gov.sa", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bismarck.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitshaker.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bittersweetcandybowl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blinkenlight.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bluechilli.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bookmein.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "boomerang.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brd.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cabusar.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cando.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "capitalquadatv.org.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cardstream.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "centennialrewards.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "centerpereezd.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "centillien.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": "centrobill.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cgbilling.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chamilo.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chargejuice.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "checkyourmath.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chepaofen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cienbeaute-lidl.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cigarterminal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cittadesign.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "citya.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clickenergy.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clockworksms.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cmscafe.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coffee-mamenoki.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coinessa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comfortticket.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comparamejor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comparetravelinsurance.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "contarkos.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cookmedical.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coryadum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "countybankdel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crazydomains.ae", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crazydomains.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crazydomains.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crazydomains.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crazyhotseeds.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": "crowdsupply.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptobin.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptocon.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptolab.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cselzer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cutorrent.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dalfiume.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dargasia.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darkshop.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datacalle.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datortipsen.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "detutorial.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "developmentaid.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digminecraft.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dijkmanmuziek.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diodeled.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": "diybook.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diycc.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dndtools.net", "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": "drakefortreasurer.sexy", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dreizwosechs.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drumbe.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dunea.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dycontrol.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ebankcbt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ebp2p.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edati.lv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "educationunlimited.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "educator-one.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elenoon.ir", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emaily.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emilyshepherd.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "energiekeurplus.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "englishforums.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ericdiao.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "escapees.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eternitylove.us", "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": "expo-asia.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "factuursturen.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "factuursturen.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "faktura.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fashion.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feard.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fexco.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fillmysuitca.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "finalgear.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firecore.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firexarxa.de", "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": "fnb-griffinonline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "forextimes.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "formationseeker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freelance.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freesitemapgenerator.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frezbo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fugle.de", "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": "funnyang.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "g2a.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gamoloco.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gcsepod.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gifzilla.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "godesigner.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "graciousmay.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greatnet.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grytics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gtlfsonlinepay.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gunwatch.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "halo.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "harmoney.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hdfgroup.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hellenicaward.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "helpmebuild.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "homehunting.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "homeyou.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hostedbgp.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hotelmap.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": "huren.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "idlekernel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ikeyless.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ilrg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "immigrationdirect.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imusic.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iprice.co.id", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iprice.hk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iprice.my", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iprice.ph", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iprice.sg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iprice.vn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ipricethailand.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "islandhosting.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iterror.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ivpn.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jabber.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jackf.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamesburton.london", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jelly.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jennybeaned.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jr5proxdoug.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "juhakoho.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kaisers.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "karmaplatform.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "katekligys.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kefaloniatoday.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kernl.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kerrfrequencycombs.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kgxtech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kornersafe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "krachtinverbinding.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kriegt.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "krizek.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kynastonwedding.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lacentral.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leatherfurnitureexpo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leopotamgroup.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lifeinitsownway.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linkenheil.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linkmaker.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linkonaut.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liquidcomm.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loadingdeck.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "locomotive.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lpak.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lynkos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "m.nu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "madebymagnitude.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "madtec.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mail4you.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "manueli.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marbogardenlidkoping.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "masterhaus.bg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matthewprenger.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maxserver.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": "mcdonalds.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mealgoo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "memberpress.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mhict.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michel-wein.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miku.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mmonit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "monobank.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moveek.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mtg-tutor.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mtnz.co.za", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mutuelle.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myclientsplus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myconan.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mysmelly.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "namacindia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "natuurbehangnederland.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "navstevnik.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nct.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ndbt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netmagik.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neuwal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nfo.so", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nohats.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "northcutt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nos-medias.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "notjustbitchy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "novatrucking.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "novelfeed.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nshost.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nyiad.edu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nyip.edu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oaic.gov.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "olafnorge.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onmarketbookbuilds.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ononpay.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "openvz.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "optumrxhealthstore.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "orcamoney.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "osmosis.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oxynux.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pagewizz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "panamaequity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "particonpsplus.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "passwordrevelator.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "payoff.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paytm.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "payupay.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pcforum.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pedicureduiven.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pensiunealido.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pepperworldhotshop.de", "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": "picoauto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "picotech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "picscare.co.uk", "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": "pisexy.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pixelminers.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "plainjs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "planete-cocoon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "politologos.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pro-link.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "punknews.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quera.ir", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quire.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "racius.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "redit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reezer.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "regenbogenwald.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "renrenche.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rheuma-online.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "riaucybersolution.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rk6.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "royzez.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "runtondev.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "safcstore.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sakaserver.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "salesmachine.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "salon.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sampoznay.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sandviks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sardegnatirocini.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schont.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schwarzkopfforyou.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "serveradminz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shawnh.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shoplandia.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "siriuspup.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sitsy.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skyway.capital", "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": "smittix.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smove.sg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "snelwerk.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "snoqualmiefiber.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sofort.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sofortueberweisung.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sosaka.ml", "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": "sperrstun.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spiegels.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stalker-shop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stephanierxo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stoffelen.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stormyyd.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "studentskydenik.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sudo.ws", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "suneilpatel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "supcro.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "superbshare.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "supersalescontest.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "svijet-medija.hr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "swimming.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "swite.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "syncmylife.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "talentcast.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tasmansecurity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teachercreatedmaterials.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teamtouring.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "terrastaffinggroup.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "textburst.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "texter-linz.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thebikeinsurer.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thecandidforum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thedisc.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theinitium.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": "theseletarmall.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thomashunter.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thomaskliszowski.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "threedpro.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tiendschuurstraat.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tiplanet.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tmprod.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomeara.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "top-stage.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toysperiod.com", "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": "tradedesk.co.za", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "transformify.org", "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": "uangteman.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "umassfive.coop", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unicef.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unicredit.ba", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unicredit.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unicreditbank.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unicreditbank.rs", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unicreditbank.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unseen.tw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unyq.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uplinklabs.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uptic.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "us-immigration.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "useresponse.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "usitcolours.bg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "validbrands.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "veggiesbourg.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "velasense.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "verifikatorindonesia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "versia.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "veryhax.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "viaprinto.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vinilosdecorativos.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vivaldi.club", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vizeat.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vorodevops.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vpn.ht", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vulners.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wail.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "walkingforhealth.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weather-and-climate.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webtobesocial.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weekdone.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weekly-residence.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weisse-liste.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wellacapability.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "werally.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "westsuburbanbank.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wftda.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "winshiplending.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": "ximage.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xmerak.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xotika.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xtronics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zberger.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zizoo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zju.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zjubtv.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zoe.vc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zoznamrealit.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "10seos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "126ium.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "a2nutrition.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aanmpc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ac-town.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "active.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexmerkel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ambiq.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arbitrarion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "auth.adult", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "baby-click.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bayden.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bckp.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "betafive.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bildiri.ci", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bmone.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "boeddhashop.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bpadvisors.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bukkenfan.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bytesystems.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chaoswebs.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chiphell.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": "collinsartworks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "combatshield.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "compareinsurance.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crosssec.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crypt.guru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptolab.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crystalclassics.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dairyshrine.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davevelopment.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dcpower.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "donthedragonwilson.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dragonschool.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drkmtrx.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drpetervoigt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dsol.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dynamicnet.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "easyplane.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enecoshop.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enefan.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "etula.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "exeria.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "exno.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "extranetpuc.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "finditez.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "formula.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "g5led.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "generali-worldwide.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "golocal-media.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grieg.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "griegshipbrokers.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grimneko.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hackit.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hasinase.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hegen.com.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hele.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hennymerkel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "herbandpat.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heyfringe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hjw-kunstwerk.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hqhost.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hugocollignon.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "husakbau.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ibarf.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "idgsupply.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "immortals-co.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "incendiary-arts.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "injigo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "intimtoy.com.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "irgit.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isqrl.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itechgeek.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jenjoit.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "karateka.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kindleworth.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kirkovsky.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "km-net.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "krisstarkey.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kroodle.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kwidz.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kwikmed.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linkages.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loveto.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ls-a.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luis-checa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lyness.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ma2t.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maildragon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "majesnix.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mascosolutions.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mikaelemilsson.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mironized.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myshirtsize.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": "neueonlinecasino2016.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nottheonion.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "novafreixo.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oneb4nk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onvori.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onvori.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "papeda.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pauspam.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "petplus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ploup.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "portalzine.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rage4.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "regalpalms.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reox.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "romaimperator.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rubysecurity.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sapience.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sarisonproductions.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saunas.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scrayos.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "signtul.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sikatehtaat.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "socialnous.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "softwarebetrieb.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "somebodycares.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sp.rw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spiritbionic.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stanandjerre.org", "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": "taniesianie.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tarhauskielto.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tendertool.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theamateurs.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thierryhayoz.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomaw.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": "truserve.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trustedinnovators.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tuingereedschappen.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "typeonejoe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vazue.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "veil-framework.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vemokin.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vid-immobilien.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "w4a.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whysuck.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wirc.gr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xbind.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--jp-6l5cs1yf3ivjsglphyv.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yamadaya.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zoeller.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gendrin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webmail.xalqbank.az", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "winebid.com", "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": "aaronsilber.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aatf.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abthorpe.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acrylicwifi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adzuna.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adzuna.co.za", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adzuna.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adzuna.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adzuna.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adzuna.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adzuna.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adzuna.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adzuna.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adzuna.ru", "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": "akutun.cl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexsergeyev.com", "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": "americkykongres.cz", "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": "annarokina.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "annetta.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "antoinedeschenes.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": "asmui.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "automacity.com", "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": "babacasino.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bankofdenton.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "barisi.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bebef.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "befundonline.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beikeil.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benjaminblack.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bermytraq.bm", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bestbrakes.com", "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": "bitcoin-india.org", "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": "blaudev.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blogarts.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bluepoint.foundation", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bluepoint.institute", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "boomersurf.com", "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": "caphane.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carigami.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carlgo11.com", "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": "chatup.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cipherboy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "citizensbankal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "connectfss.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": "correctpaardbatterijnietje.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptonym.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ctpe.net", "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": "darkspacelab.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "databutlr.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datenreiter.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datenreiter.gq", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dckd.nl", "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": "digidroom.be", "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": "dnshallinta.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doctorfox.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domadillo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dontcageus.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doordecor.bg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dr2dr.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drhopeson.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": "drycreekphoto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "e-teacher.pl", "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": "elternforum-birmensdorf.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emprego.pt", "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": "evin.ml", "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": "firstmall.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fitzsim.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flipneus.net", "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": "foxbnc.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foxdev.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fraho.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "franckgirard.net", "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": "fsbturton.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": "game7.de", "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": "gipsic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gixtools.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": "gjcampbell.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goerres2014.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gohon.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gospelvestcination.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grieglogistics.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hackmd.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "happyandrelaxeddogs.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haskovec.com", "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": "hdhoang.space", "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": "hicl.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hippies.com.br", "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": "hyk.me", "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": "iba.community", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ict-concept.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "igiftcards.nl", "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": "iossifovlab.com", "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": "jungesforumkonstanz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "karsofsystems.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keeweb.info", "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": "kgm-irm.be", "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": "koretech.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kreationnext.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kurz.pw", "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": "ld-begunjscica.si", "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": "lifi.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lingros-test.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "link2serve.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linuxhostsupport.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "localbitcoins.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": "lynthium.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maddi.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "madebyshore.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "magenx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mahrer.net", "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": "matthiasadler.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maxtruxa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mbaestlein.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mce.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mce.nyc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mceconferencecentre.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mechanus.io", "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": "mkes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mktemp.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mm13.at", "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": "mrnonz.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": "myownconference.com.ua", "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": "nathansmetana.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ncstep.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netbulls.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "next24.io", "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": "nodespin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nomesbiblicos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "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": "ochaken.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onefour.ga", "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": "open-future.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "openmtbmap.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oprbox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oracaodocredo.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "otpsmart.com.ua", "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": "parentinterview.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pastaenprosecco.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paulbdelaat.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paulinewesterman.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": "payslipview.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peername.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pharynks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phormance.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "piekacz.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pisupp.ly", "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": "plixer.com", "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": "ppipe.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "profidea.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prtpe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "przemas.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pste.pw", "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": "rainforest.engineering", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "randc.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ravindran.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rdh.asia", "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": "regalosymuestrasgratis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "remambo.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rent-a-coder.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "republique.org", "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": "rhynl.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "riyono.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rolandreed.cn", "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": "sarahlicity.me.uk", "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": "simonreich.de", "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": "sloancom.com", "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": "smartrak.co.nz", "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": "sniderman.eu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spicydog.tk", "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": "styleci.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "su1ph3r.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "superhome.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sydgrabber.tk", "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": "team3482.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teemo.gg", "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": "totaltriathlon.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": "tp-law.jp", "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": "trw-reseller.com", "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": "uptimed.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": "usleep.net", "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": "videogamesartwork.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vigilo.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vigilo.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vistaalmar.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "volkergropp.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vux.li", "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": "wavesboardshop.com", "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": "wizzr.nl", "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": "xbb.hk", "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": "xsmobile.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": "z-vector.com", "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": "4x.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "9vx.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0xn.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "700.az", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aati.info", "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": "adamoutler.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ahero4all.org", "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": "aluroof.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alpencams.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anoneko.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anonyme-spieler.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "antarcti.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atrinik.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asr.li", "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": "blingsparkleshine.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biurokarier.edu.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blieque.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bobcopeland.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brigidaarie.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brefy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "boxpirates.to", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "callhub.io", "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": "cadusilva.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bvionline.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cablemod.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "casovi.cf", "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": "cantrack.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "churchthemes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clifflu.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chronoshop.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "colengo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "code-well.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "compliancedictionary.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": "creativephysics.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dad256.tk", "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": "desserteagleselvenar.tk", "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": "dinepont.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dollemore.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drew.red", "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": "ender.co.at", "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": "eq-serve.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erichorstmanshof.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "evolutionlending.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "filestar.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "first-time-offender.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "floaternet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flightschoolbooking.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freemyipod.org", "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": "grokker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gryffin.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gycis.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gryffin.ga", "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": "horstmanshof.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "huang.nu", "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": "jaimechanaga.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jabbari.io", "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": "keifel.de", "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": "koebbes.de", "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": "livecards.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "livekort.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loli.pet", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "livekaarten.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loveisourweapon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "livekort.se", "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": "maxmilton.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miagexport.com", "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": "mitremai.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mit-uns.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mindcraft.ga", "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": "moritz-baestlein.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nafod.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "namegrep.com", "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": "natenom.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neuhaus-city.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "new-process.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nitropur.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "norrliden.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nube.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "obsproject.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ockendenhemming.co.uk", "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": "orleika.ml", "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": "radar.sx", "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": "rex.tc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rezept-planer.de", "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": "rokort.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robhorstmanshof.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ruffbeatz.com", "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": "saml-gateway.org", "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": "science-texts.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": "sebster.com", "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": "stat.ink", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sunsetwx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stutelage.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "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": "sy-anduril.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techorbiter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tbitc.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thebigdatacompany.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thelaimlife.com", "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": "thisisacompletetest.ga", "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": "utopicestudios.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vgerak.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": "veronique-schmitz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tokyo-powerstation.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vitalismaatjes.nl", "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": "webmedpharmacy.co.uk", "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": "zundapp529.nl", "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": "alecrust.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": "amzn.rocks", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "animeday.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anohana.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anxietyspace.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apk4fun.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": "blio.tk", "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": "cj-jackson.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": "cool-wallpapers.jp", "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": "crazymeeshu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crstat.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crystone.me", "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": "dan.me.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": "danieliancu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danielthompson.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davidadrian.org", "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": "diasp.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "do-do.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dolice.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drrr.wiki", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dumbeartech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dustygroove.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": "ferrolatino.ch", "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": "frantic1048.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "genslerapps.com", "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": "goalbookapp.com", "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": "gravitascreative.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gregorians.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gregorywiest.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gryffin.ml", "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": "haozhang.org", "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": "hpbn.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inhaltsangabe.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "instantkhabar.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": "internetstaff.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": "jedipedia.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jeffsanders.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jondarby.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": "justupdate.me", "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": "kkzxak47.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": "kraga.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kriptosec.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lafka.org", "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": "li-ke.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "libnull.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liliang13.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": "look.co.il", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lookastic.com", "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.es", "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": "lucyparsonslabs.com", "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": "magdic.eu", "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": "mathieuguimond.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mcyukon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "medicoresponde.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meme.institute", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "microco.sm", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mizque.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moe4sale.in", "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": "nasrsolar.com", "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": "netconnect.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netcoolusers.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netsite.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nextcloud.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nextcloud.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nwwnetwork.net", "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": "onlinemarketingtraining.co.uk", "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": "pascalleguern.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pentandra.com", "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": "pirman.es", "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": "powermeter.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "princesparktouch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "profection.biz", "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": "rose-prism.org", "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": "s007.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sansonehowell.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sbiewald.de", "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": "settleapp.co", "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": "smoothgesturesplus.com", "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": "staatschutz.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "staatsschutz.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "staatsschutzgesetz.at", "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": "tenta.com", "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": "umenlisam.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": "vanmalland.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "varshathacker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vibrant-america.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vogler.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vyskocil.eu", "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": "watchinventory.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "watchstyle.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webmetering.at", "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": "xperidia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yooooex.com", "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": "zhengjie.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": "1536.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1ststop.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "4th-ave-studio.com", "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": "adblockextreme.net", "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": "aiois.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "airhelp.com", "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": "androide.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "annejan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ansogning-sg.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "applian.jp", "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": "atelier-naruby.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ateliernaruby.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "auditos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "avaaz.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "azlk-team.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "b1c1l1.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "balist.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ballejaune.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bankinter.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beerians.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beetman.net", "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": "bestmotherfucking.website", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beyondtrust.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "billigpoker.dk", "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": "brashear.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brave.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brinkhu.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brokenhands.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "btcarmory.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bucket.tk", "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": "c-shock.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cadmail.nl", "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": "caretta.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "caroli.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cashplk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cbecrft.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cellsites.nz", "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": "cheapticket.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chelseafs.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chrismcclendon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "christophertruncer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "circara.com", "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": "cometcache.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": "connectum.eu", "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": "cornodo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "craigrouse.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "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": "decosoftware.com", "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": "discordapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "distinguishedprisoner.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "djangosnippets.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": "dn3s.me", "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": "doujinshi.info", "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": "ebankingabersicher.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ebankingbutsecure.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ebankingentoutesecurite.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ebankingmasicuro.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ebas.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ebataw.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ebonyriddle.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eiyoushi-shigoto.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": "equidam.com", "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": "euren.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "evlear.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "excelgum.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "experteasy.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "extreme-gaming.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "extreme-gaming.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fabriziorocca.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "farhadexchange.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feistyduck.com", "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": "forex.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fran.cr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "francoz.me", "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": "fveevaete.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fxopen.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fxopen.com", "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": "gecem.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "genesiseureka.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getbooks.co.il", "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": "goto.world", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gracethrufaith.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greenaddress.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greg.red", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grunwasser.fr", "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": "hesaplama.net", "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": "howlongtobeatsteam.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": "ich-tanke.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ifsac.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ilamparas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imed.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imgaa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imppac.de", "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": "ins1gn1a.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": "inthepicture.com", "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": "ipcareers.net", "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": "itsok.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jadopado.com", "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": "jonoalderson.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jproxx.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": "juliangonggrijp.com", "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": "kartec.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kateduggan.net", "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": "kiadoapartman.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kilogram.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kirstenbos.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kjaer.io", "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": "koethen-markt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "komidoc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kommune42.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kshlm.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kuemmerlin.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kuschku.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "labourreedevergheas.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lacyc3.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "laextra.mx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lattyware.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lattyware.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lavita.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lawrencemurgatroyd.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lebanesearmy.gov.lb", "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": "leisure-blog.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": "lintmx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "listminut.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lofttravel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loganmarchione.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lolicon.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lolkot.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luuppi.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lynx.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "macdj.tk", "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": "mariviolin.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": "mdmed.clinic", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "medicinia.com.br", "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": "moylen.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mustard.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myimmitracker.com", "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": "namu.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neillans.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neons.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neoxcrf.com", "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": "nframe.io", "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": "nightsnack.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nitrix.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ntotten.com", "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": "octod.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "olegon.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "omniverse.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oparl.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "openquery.com.au", "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": "outlookonthedesktop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paraborsa.net", "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": "payme.uz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "periscope.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "petitsfrenchies.com", "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": "placker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "podemos.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pole.net.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pornbay.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "porybox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "praguepsychology.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prinice.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prnav.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prodct.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "propertygroup.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pstrozniak.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "publiccarauctionscalifornia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "publicintegrity.org", "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.net", "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": "qwikdash.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "raissarobles.com", "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": "rentasweb.gob.ar", "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": "revealdata.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rewardingexcellence.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "richardlangworth.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": "roslynpad.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roughgrain.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rpgmaker.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rsblake.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "runvs.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rynekpierwotny.pl", "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": "safegroup.pl", "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": "sail-nyc.com", "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": "sas-snowboarding.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sauvagebridge.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sb.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schizoids.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schlechtewitze.com", "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.info", "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": "serf.io", "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": "shadowsocks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shanetully.com", "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": "shotbow.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": "silvergoldbull.kr", "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": "somanao.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": "space-it.de", "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": "splitreflection.com", "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": "starfm.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "starina.ru", "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": "strangemusicinc.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "streetspotr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "studiomarcella.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": "svendubbeld.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "swat4stats.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": "teachpeople.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techcultivation.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techmasters.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tenkofx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tflite.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tgbyte.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thelanscape.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thenexwork.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": "thomaswoo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thompsonfamily.cloud", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "time2060.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timetotrade.com", "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": "tomssl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toutmonexam.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": "uhrenlux.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unblockat.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "underskatten.tk", "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": "upplevelse.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "url.rw", "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": "vanwunnik.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "veii.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "verfassungsklage.at", "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": "walls.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "watchface.watch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webcamtoy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weblate.org", "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": "wirhabenspass.de", "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": "xfix.pw", "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": "zor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zundappachterhoek.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2.wtf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1pw.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agilebits.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexpavel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acelpb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alinasmusicstudio.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alicestudio.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aigcev.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "achtzehn.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ad-notam.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ad-notam.asia", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alecpapierniak.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alphachat.net", "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": "abe-elektro.de", "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": "86metro.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "autoauctionsvirginia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anniversary-cruise.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": "aplpackaging.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andreaskrasa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arokha.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexanderschimpf.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1on1on1.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atelierdesflammesnoires.fr", "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": "alwaysmine.fi", "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": "alisonlitchfield.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benchmarkmonument.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "armadaquadrat.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": "atom-china.org", "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": "blackcatinformatics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beastlog.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "awaremi-tai.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bewerbungsfibel.de", "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": "bilke.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biboumail.fr", "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": "bluex.net", "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": "bluex.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bluex.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bulario.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bosun.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "africa.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "afghan.dating", "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": "bluex.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bru6.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bx-n.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": "bsw-solution.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "catmoose.ca", "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": "casbuijs.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "captured-symphonies.com", "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": "cheez.systems", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codingrobots.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comdotgame.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudapps.digital", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chatnederland.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "collaction.hk", "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": "bbw.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cuddlecomfort.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cheddarpayments.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cnc-lehrgang.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "contrabass.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "confiwall.de", "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": "convert.im", "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": "crvv.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "burtrum.name", "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": "dejandayoff.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cormactagging.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dcepler.net", "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": "darkcores.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danielkoster.nl", "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": "canadian.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "different.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deepzz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "caribbean.dating", "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": "dobrisan.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "christians.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dopesoft.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emilvarga.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elenagherta.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "e7d.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dutchessuganda.com", "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": "cougar.dating", "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": "epicenter.work", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ecompen.co.za", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deaf.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edv-lehrgang.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "facebook-atom.appspot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "facerepo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "epizentrum.works", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erdethamburgeronsdag.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fanz.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doctor.dating", "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": "fiix.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fach-journalist.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "epizentrum.work", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "epicenter.works", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "epicentre.works", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feastr.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fabianfranke.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": "es-geenen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fixforce.nl", "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": "gearset.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "futureyouhealth.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fehngarten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getmdl.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fleisch.club", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fragmentspuren.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gheorghe-sarcov.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ethiopian.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goldminer.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gokhankesici.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geder.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hacker1.com", "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": "glasner.photo", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gehsicht.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goetemp.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hake.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greencircleplantnursery.net.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iandouglasscott.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gv-neumann.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heiland.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gyu-raku.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "helenkellersimulator.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gyas.nl", "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": "firefighters.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "instagram-atom.appspot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hakatabijin-mind.com", "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": "hiqonline.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hasselbach-dellwig.de", "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": "imforza.com", "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": "gveh.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "illicitart.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hraesvelg.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inditip.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "instagrammernews.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inspired-lua.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imbushuo.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ifsr.de", "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": "is-a-furry.org", "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": "jayf.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "johnmcintosh.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jonirrings.com", "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": "jesseerbach.com", "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": "jurassicbarkharrogate.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jsteward.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kamikatse.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kpumuk.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lafillepolyvalente.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lafillepolyvalente.com", "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": "kyochon.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kki.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koertner-muth.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "komicloud.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kumalog.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": "italian.dating", "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": "lefebvristes.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lefebvristes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leseditionsbraquage.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "livi.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "listahu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "komischkeszeug.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "klebetape.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lirion.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leanplando.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lernorteuropa.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "karachi.dating", "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": "lanuovariviera.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lookasik.eu", "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": "lunarlog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lemarcheelagrandeguerra.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "korea.dating", "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": "laos.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "latino.dating", "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": "menzietti.it", "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": "mobio.net", "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": "mingram.net", "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": "msh100.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "megamisja.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mkoppmann.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "london.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mybb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "molb.org", "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": "mscc.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miui-germany.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mmalisz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "malaysian.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mncloud.de", "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": "mini-piraten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "networth.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nien.cf", "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": "nitropur.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "northpole.dance", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nerdpol.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ni-mate.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nhome.ba", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nerds-gegen-stephan.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oddnumber.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nickstories.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "notnize.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moparscape.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oppaiti.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nfe-elektro.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oddsandevens.ca", "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": "nrkn.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "niederohmig.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oddsandevensbookkeeping.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nemo.run", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "musician.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "muslim.singles", "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": "octofox.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paudley.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paudley.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "patrickaudley.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nsm.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oeh.ac.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "organicae.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": "orrs.de", "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": "npm.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pasternok.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pavelrebrov.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "promisesaplus.com", "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": "pixiv.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "otakubox.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pmklaassen.com", "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": "privea.fr", "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": "randomkoalafacts.com", "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": "restrealitaet.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reinhardtsgrimma.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "riceadvice.info", "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": "prometheanfire.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prometheanfire.org", "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": "rylin.net", "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": "sd.af", "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": "scriptjunkie.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rowlog.com", "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": "schnapke.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seewhatididhere.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sec.ec", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rdl.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "satmd.de", "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": "shux.pro", "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": "seitenwaelzer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "semox.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skyline.tw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "russia.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sking.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sexy-store.nl", "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": "severntrentinsuranceportal.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": "sgtcodfish.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "splunk.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scandinavia.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sinquin.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slapen17.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sitc.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "startpage.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sm.ms", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smart-mirror.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stammtisch.domains", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "storyland.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sobieray.dyndns.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soe-server.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seemeagain.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "strahlende-augen.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "softwerk-edv.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stageirites.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "solit.systems", "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": "straubis.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tdude.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stuermer.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stageirites.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tammy.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sps-lehrgang.de", "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": "tetrarch.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "studiostudio.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tenderstem.co.uk", "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": "teracloud.at", "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": "thexme.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thegreatplains.com", "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": "thues.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ti-pla.net", "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": "southamerican.dating", "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": "touchtable.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "taiwan.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tunnelwatch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sydney.dating", "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": "tuxie.com", "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": "ticfleet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toool.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tattoo.dating", "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": "vostronet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thai.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unpkg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ushare.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vdownloader.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": "vloeck.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tokyo.dating", "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": "wowjs.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "visalogy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wowjs.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vician.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whatwebcando.today", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wowjs.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "viewsea.com", "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": "tokaido-kun.jp", "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": "xn--v-wfa35g.ro", "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": "xfrag-networks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xclirion-support.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yaup.tk", "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": "yestees.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zanthra.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wselektro.de", "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": "vietnamese.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zary.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zund-app.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": "ameego.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alyoung.com", "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": "ahelos.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "akr.io", "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": "1se2or3.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ameego.com", "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": "aimeeandalec.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "32h.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acara-yoga.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alumni-kusa.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "american.dating", "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": "bestgiftever.ca", "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": "birzan.org", "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": "benhavenarchives.org", "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": "bieser.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "borowski.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "britton-photography.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitstorm.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "backpacker.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bluepostbox.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buonventosbt.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "calendarr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "builtwith.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bruckner.li", "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": "chinawhale.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": "console.rest", "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": "carriedin.com", "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": "cavzodiaco.com.br", "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": "cvv.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "csabg.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dadrian.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chinacdn.org", "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": "databutlr.com", "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": "dalek.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datenschutz-individuell.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "develux.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "defiler.tk", "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": "dark-vision.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dzndk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drsturgeonfreitas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danarozmarin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dent.uy", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ebiografia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dinmtb.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dwtm.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "disabled.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "en-booster.jp", "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": "dyrkar.com", "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": "etheria-software.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fastconfirm.com", "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": "filmatiporno.xxx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eynio.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": "foxontheinter.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flagburningworld.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dintrafic.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "farmer.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "famcloud.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fluxoid.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fluffycloud.de", "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": "el-cell.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freelancehunt.com", "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": "faq.ie", "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": "godrive.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geofox.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greyskymedia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greger.me", "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": "gothic.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greek.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hayai.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guildgearscore.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "harrysmallbones.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gpcsolutions.fr", "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": "haoyugao.com", "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": "hm1ch.com", "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": "helsinki.dating", "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": "igglabs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "invasion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "icodeconnect.com", "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": "jamesbillingham.com", "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": "inoa8.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jarondl.net", "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": "ipsilon-project.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "johnvanhese.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jani.media", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jhuang.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itchy.nl", "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": "igiftcards.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jakarta.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kaffeekrone.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kcsordparticipation.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jongbloed.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kayleen.net", "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": "kongar.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kleineanfragen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "legalrobot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kydara.com", "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": "link-sanitizer.com", "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": "marianatherapy.com", "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": "minimvc.com", "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": "minitruckin.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mimemo.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "medialab.nrw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miguelmoura.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miraidenshi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "menielias.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": "moonshyne.org", "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": "myoukochou.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mikalikes.men", "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": "nachtmuziek.info", "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": "natenom.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "new-process.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "new-process.de", "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": "new-process.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oslinux.net", "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": "odifi.com", "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": "nettx.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "okusiassociates.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "odtu.lu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "noctinus.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "partecipa.tn.it", "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": "postmatescode.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pissblau.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "preisser.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pokefarm.com", "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": "playanka.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "principia-online.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "presbee.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "praeparation-keppner.de", "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": "oticasvisao.net.br", "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": "rpherbig.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robjager-fotografie.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "salesflare.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rip-sport.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rosset.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rocketr.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saorviewconnected.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rosset.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rio-weimar.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saharmassachi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "proposalonline.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": "ryanbritton.com", "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": "schuler.st", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schunako.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rtho.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sexpay.net", "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": "retube.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schwabenhaus-ka.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seyfarth.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shazzlepro.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": "spamloco.net", "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": "soulmate.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "technosorcery.net", "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": "stening.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slangbellor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "strategie-zone.de", "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": "teahut.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stilmobil.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thesaturdaypaper.com.au", "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": "themonthly.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tadu.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "suevia-ka.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sectest.ml", "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": "uli-eckhardt.de", "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": "velen.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ureka.org", "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": "violin4fun.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vksportphoto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wsdcapital.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": "voidpay.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vmis.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": "yourciso.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xtarget.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "z99944x.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--ruanmller-u9a.com", "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": "wumbo.co.nz", "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": "1600esplanade.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "9yw.me", "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": "0xda.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acwcerts.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "11urss.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aitosoftware.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": "adrinet.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aimotive.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amcfirst.com", "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": "alexdaniel.org", "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": "armandsdiscount.com", "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": "ami-de-bastanes.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anti-radar.org", "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": "artlifeisgood.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asafilm.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ariacreations.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arab.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atom86.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arnaudb.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ascgathering.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "axg.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "avepol.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asia.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aubio.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "autoparts.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "autoparts.wf", "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": "avepol.eu", "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": "babymasaze.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "axiomer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "australian.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atypicom.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atypicom.pt", "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": "b-landia.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asr.solar", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bibliaon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atypicom.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bettolinokitchen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beauty24.de", "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": "block-this.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": "blackphantom.de", "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": "bornandgrazed.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biker.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "braunsteinpc.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": "black.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "birgit-rydlewski.de", "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": "brie.tech", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brauingenieur.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brazilian.dating", "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": "batonger.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": "charcoalvenice.com", "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": "caputodesign.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cesdb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "centrationgame.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cambodian.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ceciliacolombara.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "casc.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "caletka.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cbintermountainrealty.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cfan.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "catholics.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cgan.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudoptimus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chewey.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clipclip.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chewey.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chenky.com", "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": "claimit.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "catenacondos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coreyjmahler.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": "crustytoothpaste.net", "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": "colombian.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "combron.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "corona-academy.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": "dalingk.com", "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": "cube-cloud.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": "de-rwa.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": "dbas.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bstoked.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dcl.re", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "db-works.nl", "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": "deutsch-vietnamesisch-dolmetscher.com", "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": "dbox.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digiarc.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dooleylabs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deurenfabriek.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dogmap.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dress-cons.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "directnews.be", "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": "dokelio-idf.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doma.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drighes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dotplex.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dragfiles.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "e-standardstore.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "duncanwinfrey.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "droni.cz", "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": "egw-ceramica.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enginepit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "epsilon.dk", "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": "elektro-koehl.de", "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": "endlessvideo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ficlab.com", "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": "flooringnightmares.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "earticleblog.com", "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": "europapier.hr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firesofheaven.org", "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": "feld.saarland", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fachschaftslisten.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fotella.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fojtova.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flauschig.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fojtovi.cz", "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": "frolova.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foo.hamburg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gaireg.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "forstbetrieb-hennecke.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": "foej-aktiv.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fullbundle.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flymns.fr", "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": "farmkazuto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "garystallman.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": "hackerone.net", "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": "git-stuff.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gza.jp", "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": "habtium.es", "policy": "bulk-18-wee