mirror of
https://github.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker.git
synced 2025-09-01 18:19:55 +00:00
10650 lines
358 KiB
Text
10650 lines
358 KiB
Text
### **********************************
|
|
### THE ULTIMATE NGINX BAD BOT BLOCKER
|
|
### **********************************
|
|
|
|
### !!!!!!!!!!!!!
|
|
### TEST TEMPLATE
|
|
### THIS VERSION IS USED FOR TESTING ANY POTENTIAL BREAKING CHANGES
|
|
### !!!!!!!!!!!!!
|
|
|
|
|
|
### VERSION INFORMATION #
|
|
###################################################
|
|
### Version: V3.2019.06.1629
|
|
### Updated: Wed Jun 26 14:52:14 SAST 2019
|
|
### Bad Referrer Count: 6713
|
|
### Bad Bot Count: 556
|
|
###################################################
|
|
### VERSION INFORMATION ##
|
|
|
|
##############################################################################
|
|
# _ __ _ #
|
|
# / |/ /__ _(_)__ __ __ #
|
|
# / / _ `/ / _ \\ \ / #
|
|
# /_/|_/\_, /_/_//_/_\_\ #
|
|
# __/___/ __ ___ __ ___ __ __ #
|
|
# / _ )___ ____/ / / _ )___ / /_ / _ )/ /__ ____/ /_____ ____ #
|
|
# / _ / _ `/ _ / / _ / _ \/ __/ / _ / / _ \/ __/ '_/ -_) __/ #
|
|
# /____/\_,_/\_,_/ /____/\___/\__/ /____/_/\___/\__/_/\_\\__/_/ #
|
|
# #
|
|
##############################################################################
|
|
|
|
### This file implements a checklist / blacklist for good user agents, bad user agents and
|
|
### bad referrers on Nginx Web Server. It also has whitelisting for your own IP's and known good IP Ranges
|
|
### and also has rate limiting functionality for bad bots who you only want to rate limit
|
|
### and not actually block out entirely. It is very powerful and also very flexible.
|
|
|
|
### Created By: https://github.com/mitchellkrogza/
|
|
### Repo Url: https://github.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker
|
|
### Copyright Mitchell Krog - <mitchellkrog@gmail.com>
|
|
### Contributors: Stuart Cardall - https://github.com/itoffshore
|
|
|
|
### Tested on: nginx/1.10.3 up to latest Mainstream Version (Ubuntu 16.04)
|
|
|
|
### This list was developed and is in use on a live Nginx server running some very busy web sites.
|
|
### It was built from the ground up using real data from daily logs and is updated almost daily.
|
|
### It has been extensively tested for false positives and all additions to the lists of bad user agents,
|
|
### spam referrers, rogue IP address, scanners, scrapers and domain hijacking sites are extensively checked
|
|
### before they are added. It is monitored extensively for any false positives.
|
|
|
|
### *********
|
|
### Features:
|
|
### *********
|
|
### Clear formatting for Ease of Maintenance.
|
|
### Alphabetically ordered lists for Ease of Maintenance.
|
|
### Extensive Commenting for Ease of Reference.
|
|
### Extensive bad_bot list
|
|
### Extensive bad_referrer list (please excuse the nasty words and domains)
|
|
### Simple regex patterns versus complicated messy regex patterns.
|
|
### Checks regardless of http / https urls or the lack of any protocol sent.
|
|
### IP range blocking / whitelisting.
|
|
### Rate Limiting Functions.
|
|
|
|
### ************
|
|
### INSTALLATION
|
|
### ************
|
|
|
|
### PLEASE use the install, setup and update scripts provided for you to ease your installation.
|
|
### This Auto Installation procedure is documented in the README.md and AUTO-CONFIGURATION.md files.
|
|
### Installation, Setup and Update Scripts Contributed by Stuart Cardall - https://github.com/itoffshore
|
|
### There are also manual configuration instructions provided for those not wishing to do an auto install.
|
|
|
|
### ***********************************************
|
|
### !!!!! PLEASE READ INLINE NOTES ON TESTING !!!!!
|
|
### ***********************************************
|
|
|
|
### Note that:
|
|
### 0 = allowed - no limits
|
|
### 1 = allowed or rate limited less restrictive
|
|
### 2 = rate limited more
|
|
### 3 = block completely
|
|
|
|
### ************************************************************
|
|
### CONTRIBUTING / PULL REQUESTS / ADDING YOUR OWN BAD REFERRERS
|
|
### ************************************************************
|
|
|
|
### For contributing, corrections or adding bots or referrers to this repo,
|
|
### Send a Pull Request (PR) on any of the .list files in the _generator_lists folder
|
|
### All Pull Requests will be checked for accuracy before being merged.
|
|
|
|
# *********************************
|
|
# FIRST BLOCK BY USER-AGENT STRINGS
|
|
# *********************************
|
|
|
|
# ***********************
|
|
# !!!!! PLEASE TEST !!!!!
|
|
# ***********************
|
|
|
|
# ALWAYS test any User-Agent Strings you add here to make sure you have it right
|
|
# Use a Chrome Extension called "User-Agent Switcher for Chrome" where you can create your
|
|
# own custom lists of User-Agents and test them easily against your rules below.
|
|
|
|
# You can also use curl from the command line to test user-agents as per the examples below:
|
|
|
|
# curl -I http://www.yourdomain.com -A "GoogleBot" ---- GIVES YOU: HTTP/1.1 200 OK (Meaning web page was served to Client)
|
|
# curl -I http://www.yourdomain.com -A "80legs" ---- GIVES YOU: curl: (52) Empty reply from server (Meaning Nginx gave a 444 Dropped Connection)
|
|
|
|
# In this section we allow/disallow specific User Agents / Bots.
|
|
|
|
# *********************************************************************
|
|
# Now we map all good and bad user agents to a variable called $bad_bot
|
|
# *********************************************************************
|
|
|
|
map $http_user_agent $bad_bot {
|
|
|
|
default 0;
|
|
|
|
# ***********************************************
|
|
# Include your Own Custom List of Bad User Agents
|
|
# ***********************************************
|
|
|
|
# Use the include file below to further customize your own list of additional user-agents you wish to permanently block
|
|
# This include file allows whitelisting and blacklisting of anything specified below it, meaning you can over-ride anything in this blocker to your liking.
|
|
|
|
# ***********************************************************************************
|
|
# START CUSTOM BLACKLISTED USER AGENTS ### DO NOT EDIT OR REMOVE THIS LINE AT ALL ###
|
|
# ***********************************************************************************
|
|
|
|
include /etc/nginx/bots.d/blacklist-user-agents.conf;
|
|
|
|
# *********************************************************************************
|
|
# END CUSTOM BLACKLISTED USER AGENTS ### DO NOT EDIT OR REMOVE THIS LINE AT ALL ###
|
|
# *********************************************************************************
|
|
|
|
# *********************************************
|
|
# Bad User-Agent Strings That We Block Outright
|
|
# *********************************************
|
|
|
|
# START BAD BOTS ### DO NOT EDIT THIS LINE AT ALL ###
|
|
"~*(?:\b)360Spider(?:\b|)" 3;
|
|
"~*(?:\b)404checker(?:\b|)" 3;
|
|
"~*(?:\b)404enemy(?:\b|)" 3;
|
|
"~*(?:\b)80legs(?:\b|)" 3;
|
|
"~*(?:\b)Abonti(?:\b|)" 3;
|
|
"~*(?:\b)Aboundex(?:\b|)" 3;
|
|
"~*(?:\b)Aboundexbot(?:\b|)" 3;
|
|
"~*(?:\b)Acunetix(?:\b|)" 3;
|
|
"~*(?:\b)ADmantX(?:\b|)" 3;
|
|
"~*(?:\b)AfD-Verbotsverfahren(?:\b|)" 3;
|
|
"~*(?:\b)AhrefsBot(?:\b|)" 3;
|
|
"~*(?:\b)AIBOT(?:\b|)" 3;
|
|
"~*(?:\b)AiHitBot(?:\b|)" 3;
|
|
"~*(?:\b)Aipbot(?:\b|)" 3;
|
|
"~*(?:\b)Alexibot(?:\b|)" 3;
|
|
"~*(?:\b)Alligator(?:\b|)" 3;
|
|
"~*(?:\b)AllSubmitter(?:\b|)" 3;
|
|
"~*(?:\b)AlphaBot(?:\b|)" 3;
|
|
"~*(?:\b)Anarchie(?:\b|)" 3;
|
|
"~*(?:\b)Apexoo(?:\b|)" 3;
|
|
"~*(?:\b)archive.org_bot(?:\b|)" 3;
|
|
"~*(?:\b)ASPSeek(?:\b|)" 3;
|
|
"~*(?:\b)Asterias(?:\b|)" 3;
|
|
"~*(?:\b)Attach(?:\b|)" 3;
|
|
"~*(?:\b)autoemailspider(?:\b|)" 3;
|
|
"~*(?:\b)BackDoorBot(?:\b|)" 3;
|
|
"~*(?:\b)Backlink-Ceck(?:\b|)" 3;
|
|
"~*(?:\b)backlink-check(?:\b|)" 3;
|
|
"~*(?:\b)BacklinkCrawler(?:\b|)" 3;
|
|
"~*(?:\b)BackStreet(?:\b|)" 3;
|
|
"~*(?:\b)BackWeb(?:\b|)" 3;
|
|
"~*(?:\b)Badass(?:\b|)" 3;
|
|
"~*(?:\b)Bandit(?:\b|)" 3;
|
|
"~*(?:\b)Barkrowler(?:\b|)" 3;
|
|
"~*(?:\b)BatchFTP(?:\b|)" 3;
|
|
"~*(?:\b)Battleztar\ Bazinga(?:\b|)" 3;
|
|
"~*(?:\b)BBBike(?:\b|)" 3;
|
|
"~*(?:\b)BDCbot(?:\b|)" 3;
|
|
"~*(?:\b)BDFetch(?:\b|)" 3;
|
|
"~*(?:\b)BetaBot(?:\b|)" 3;
|
|
"~*(?:\b)Bigfoot(?:\b|)" 3;
|
|
"~*(?:\b)Bitacle(?:\b|)" 3;
|
|
"~*(?:\b)Blackboard(?:\b|)" 3;
|
|
"~*(?:\b)Black\ Hole(?:\b|)" 3;
|
|
"~*(?:\b)BlackWidow(?:\b|)" 3;
|
|
"~*(?:\b)BLEXBot(?:\b|)" 3;
|
|
"~*(?:\b)Blow(?:\b|)" 3;
|
|
"~*(?:\b)BlowFish(?:\b|)" 3;
|
|
"~*(?:\b)Boardreader(?:\b|)" 3;
|
|
"~*(?:\b)Bolt(?:\b|)" 3;
|
|
"~*(?:\b)BotALot(?:\b|)" 3;
|
|
"~*(?:\b)Brandprotect(?:\b|)" 3;
|
|
"~*(?:\b)Brandwatch(?:\b|)" 3;
|
|
"~*(?:\b)Buddy(?:\b|)" 3;
|
|
"~*(?:\b)BuiltBotTough(?:\b|)" 3;
|
|
"~*(?:\b)BuiltWith(?:\b|)" 3;
|
|
"~*(?:\b)Bullseye(?:\b|)" 3;
|
|
"~*(?:\b)BunnySlippers(?:\b|)" 3;
|
|
"~*(?:\b)BuzzSumo(?:\b|)" 3;
|
|
"~*(?:\b)Calculon(?:\b|)" 3;
|
|
"~*(?:\b)CATExplorador(?:\b|)" 3;
|
|
"~*(?:\b)CazoodleBot(?:\b|)" 3;
|
|
"~*(?:\b)CCBot(?:\b|)" 3;
|
|
"~*(?:\b)Cegbfeieh(?:\b|)" 3;
|
|
"~*(?:\b)CheeseBot(?:\b|)" 3;
|
|
"~*(?:\b)CherryPicker(?:\b|)" 3;
|
|
"~*(?:\b)CheTeam(?:\b|)" 3;
|
|
"~*(?:\b)ChinaClaw(?:\b|)" 3;
|
|
"~*(?:\b)Chlooe(?:\b|)" 3;
|
|
"~*(?:\b)Claritybot(?:\b|)" 3;
|
|
"~*(?:\b)Cliqzbot(?:\b|)" 3;
|
|
"~*(?:\b)Cloud\ mapping(?:\b|)" 3;
|
|
"~*(?:\b)coccocbot-web(?:\b|)" 3;
|
|
"~*(?:\b)Cogentbot(?:\b|)" 3;
|
|
"~*(?:\b)cognitiveseo(?:\b|)" 3;
|
|
"~*(?:\b)Collector(?:\b|)" 3;
|
|
"~*(?:\b)com.plumanalytics(?:\b|)" 3;
|
|
"~*(?:\b)Copier(?:\b|)" 3;
|
|
"~*(?:\b)CopyRightCheck(?:\b|)" 3;
|
|
"~*(?:\b)Copyscape(?:\b|)" 3;
|
|
"~*(?:\b)Cosmos(?:\b|)" 3;
|
|
"~*(?:\b)Craftbot(?:\b|)" 3;
|
|
"~*(?:\b)crawler4j(?:\b|)" 3;
|
|
"~*(?:\b)crawler.feedback(?:\b|)" 3;
|
|
"~*(?:\b)crawl.sogou.com(?:\b|)" 3;
|
|
"~*(?:\b)CrazyWebCrawler(?:\b|)" 3;
|
|
"~*(?:\b)Crescent(?:\b|)" 3;
|
|
"~*(?:\b)CrunchBot(?:\b|)" 3;
|
|
"~*(?:\b)CSHttp(?:\b|)" 3;
|
|
"~*(?:\b)Curious(?:\b|)" 3;
|
|
"~*(?:\b)Custo(?:\b|)" 3;
|
|
"~*(?:\b)DatabaseDriverMysqli(?:\b|)" 3;
|
|
"~*(?:\b)DataCha0s(?:\b|)" 3;
|
|
"~*(?:\b)DBLBot(?:\b|)" 3;
|
|
"~*(?:\b)demandbase-bot(?:\b|)" 3;
|
|
"~*(?:\b)Demon(?:\b|)" 3;
|
|
"~*(?:\b)Deusu(?:\b|)" 3;
|
|
"~*(?:\b)Devil(?:\b|)" 3;
|
|
"~*(?:\b)Digincore(?:\b|)" 3;
|
|
"~*(?:\b)DigitalPebble(?:\b|)" 3;
|
|
"~*(?:\b)DIIbot(?:\b|)" 3;
|
|
"~*(?:\b)Dirbuster(?:\b|)" 3;
|
|
"~*(?:\b)Disco(?:\b|)" 3;
|
|
"~*(?:\b)Discobot(?:\b|)" 3;
|
|
"~*(?:\b)Discoverybot(?:\b|)" 3;
|
|
"~*(?:\b)Dispatch(?:\b|)" 3;
|
|
"~*(?:\b)DittoSpyder(?:\b|)" 3;
|
|
"~*(?:\b)DnyzBot(?:\b|)" 3;
|
|
"~*(?:\b)DomainAppender(?:\b|)" 3;
|
|
"~*(?:\b)DomainCrawler(?:\b|)" 3;
|
|
"~*(?:\b)DomainSigmaCrawler(?:\b|)" 3;
|
|
"~*(?:\b)DomainStatsBot(?:\b|)" 3;
|
|
"~*(?:\b)Dotbot(?:\b|)" 3;
|
|
"~*(?:\b)Download\ Wonder(?:\b|)" 3;
|
|
"~*(?:\b)Dragonfly(?:\b|)" 3;
|
|
"~*(?:\b)Drip(?:\b|)" 3;
|
|
"~*(?:\b)DSearch(?:\b|)" 3;
|
|
"~*(?:\b)DTS\ Agent(?:\b|)" 3;
|
|
"~*(?:\b)EasyDL(?:\b|)" 3;
|
|
"~*(?:\b)Ebingbong(?:\b|)" 3;
|
|
"~*(?:\b)eCatch(?:\b|)" 3;
|
|
"~*(?:\b)ECCP/1.0(?:\b|)" 3;
|
|
"~*(?:\b)Ecxi(?:\b|)" 3;
|
|
"~*(?:\b)EirGrabber(?:\b|)" 3;
|
|
"~*(?:\b)EMail\ Siphon(?:\b|)" 3;
|
|
"~*(?:\b)EMail\ Wolf(?:\b|)" 3;
|
|
"~*(?:\b)EroCrawler(?:\b|)" 3;
|
|
"~*(?:\b)evc-batch(?:\b|)" 3;
|
|
"~*(?:\b)Evil(?:\b|)" 3;
|
|
"~*(?:\b)Exabot(?:\b|)" 3;
|
|
"~*(?:\b)Express\ WebPictures(?:\b|)" 3;
|
|
"~*(?:\b)ExtLinksBot(?:\b|)" 3;
|
|
"~*(?:\b)Extractor(?:\b|)" 3;
|
|
"~*(?:\b)ExtractorPro(?:\b|)" 3;
|
|
"~*(?:\b)Extreme\ Picture\ Finder(?:\b|)" 3;
|
|
"~*(?:\b)EyeNetIE(?:\b|)" 3;
|
|
"~*(?:\b)Ezooms(?:\b|)" 3;
|
|
"~*(?:\b)facebookscraper(?:\b|)" 3;
|
|
"~*(?:\b)FDM(?:\b|)" 3;
|
|
"~*(?:\b)FemtosearchBot(?:\b|)" 3;
|
|
"~*(?:\b)FHscan(?:\b|)" 3;
|
|
"~*(?:\b)Fimap(?:\b|)" 3;
|
|
"~*(?:\b)Firefox/7.0(?:\b|)" 3;
|
|
"~*(?:\b)FlashGet(?:\b|)" 3;
|
|
"~*(?:\b)Flunky(?:\b|)" 3;
|
|
"~*(?:\b)Foobot(?:\b|)" 3;
|
|
"~*(?:\b)Freeuploader(?:\b|)" 3;
|
|
"~*(?:\b)FrontPage(?:\b|)" 3;
|
|
"~*(?:\b)FyberSpider(?:\b|)" 3;
|
|
"~*(?:\b)Fyrebot(?:\b|)" 3;
|
|
"~*(?:\b)GalaxyBot(?:\b|)" 3;
|
|
"~*(?:\b)Genieo(?:\b|)" 3;
|
|
"~*(?:\b)GermCrawler(?:\b|)" 3;
|
|
"~*(?:\b)Getintent(?:\b|)" 3;
|
|
"~*(?:\b)GetRight(?:\b|)" 3;
|
|
"~*(?:\b)GetWeb(?:\b|)" 3;
|
|
"~*(?:\b)Gigablast(?:\b|)" 3;
|
|
"~*(?:\b)Gigabot(?:\b|)" 3;
|
|
"~*(?:\b)G-i-g-a-b-o-t(?:\b|)" 3;
|
|
"~*(?:\b)Go-Ahead-Got-It(?:\b|)" 3;
|
|
"~*(?:\b)Gotit(?:\b|)" 3;
|
|
"~*(?:\b)GoZilla(?:\b|)" 3;
|
|
"~*(?:\b)Go!Zilla(?:\b|)" 3;
|
|
"~*(?:\b)Grabber(?:\b|)" 3;
|
|
"~*(?:\b)GrabNet(?:\b|)" 3;
|
|
"~*(?:\b)Grafula(?:\b|)" 3;
|
|
"~*(?:\b)GrapeFX(?:\b|)" 3;
|
|
"~*(?:\b)GrapeshotCrawler(?:\b|)" 3;
|
|
"~*(?:\b)GridBot(?:\b|)" 3;
|
|
"~*(?:\b)GT::WWW(?:\b|)" 3;
|
|
"~*(?:\b)Haansoft(?:\b|)" 3;
|
|
"~*(?:\b)HaosouSpider(?:\b|)" 3;
|
|
"~*(?:\b)Harvest(?:\b|)" 3;
|
|
"~*(?:\b)Havij(?:\b|)" 3;
|
|
"~*(?:\b)HEADMasterSEO(?:\b|)" 3;
|
|
"~*(?:\b)Heritrix(?:\b|)" 3;
|
|
"~*(?:\b)Hloader(?:\b|)" 3;
|
|
"~*(?:\b)HMView(?:\b|)" 3;
|
|
"~*(?:\b)HTMLparser(?:\b|)" 3;
|
|
"~*(?:\b)HTTP::Lite(?:\b|)" 3;
|
|
"~*(?:\b)HTTrack(?:\b|)" 3;
|
|
"~*(?:\b)Humanlinks(?:\b|)" 3;
|
|
"~*(?:\b)HybridBot(?:\b|)" 3;
|
|
"~*(?:\b)Iblog(?:\b|)" 3;
|
|
"~*(?:\b)IDBot(?:\b|)" 3;
|
|
"~*(?:\b)Id-search(?:\b|)" 3;
|
|
"~*(?:\b)IlseBot(?:\b|)" 3;
|
|
"~*(?:\b)Image\ Fetch(?:\b|)" 3;
|
|
"~*(?:\b)Image\ Sucker(?:\b|)" 3;
|
|
"~*(?:\b)IndeedBot(?:\b|)" 3;
|
|
"~*(?:\b)Indy\ Library(?:\b|)" 3;
|
|
"~*(?:\b)InfoNaviRobot(?:\b|)" 3;
|
|
"~*(?:\b)InfoTekies(?:\b|)" 3;
|
|
"~*(?:\b)instabid(?:\b|)" 3;
|
|
"~*(?:\b)Intelliseek(?:\b|)" 3;
|
|
"~*(?:\b)InterGET(?:\b|)" 3;
|
|
"~*(?:\b)Internet\ Ninja(?:\b|)" 3;
|
|
"~*(?:\b)InternetSeer(?:\b|)" 3;
|
|
"~*(?:\b)internetVista\ monitor(?:\b|)" 3;
|
|
"~*(?:\b)ips-agent(?:\b|)" 3;
|
|
"~*(?:\b)Iria(?:\b|)" 3;
|
|
"~*(?:\b)IRLbot(?:\b|)" 3;
|
|
"~*(?:\b)Iskanie(?:\b|)" 3;
|
|
"~*(?:\b)IstellaBot(?:\b|)" 3;
|
|
"~*(?:\b)JamesBOT(?:\b|)" 3;
|
|
"~*(?:\b)Jbrofuzz(?:\b|)" 3;
|
|
"~*(?:\b)JennyBot(?:\b|)" 3;
|
|
"~*(?:\b)JetCar(?:\b|)" 3;
|
|
"~*(?:\b)Jetty(?:\b|)" 3;
|
|
"~*(?:\b)JikeSpider(?:\b|)" 3;
|
|
"~*(?:\b)JOC\ Web\ Spider(?:\b|)" 3;
|
|
"~*(?:\b)Joomla(?:\b|)" 3;
|
|
"~*(?:\b)Jorgee(?:\b|)" 3;
|
|
"~*(?:\b)JustView(?:\b|)" 3;
|
|
"~*(?:\b)Jyxobot(?:\b|)" 3;
|
|
"~*(?:\b)Kenjin\ Spider(?:\b|)" 3;
|
|
"~*(?:\b)Keyword\ Density(?:\b|)" 3;
|
|
"~*(?:\b)Kozmosbot(?:\b|)" 3;
|
|
"~*(?:\b)Lanshanbot(?:\b|)" 3;
|
|
"~*(?:\b)Larbin(?:\b|)" 3;
|
|
"~*(?:\b)LeechFTP(?:\b|)" 3;
|
|
"~*(?:\b)LeechGet(?:\b|)" 3;
|
|
"~*(?:\b)LexiBot(?:\b|)" 3;
|
|
"~*(?:\b)Lftp(?:\b|)" 3;
|
|
"~*(?:\b)LibWeb(?:\b|)" 3;
|
|
"~*(?:\b)Libwhisker(?:\b|)" 3;
|
|
"~*(?:\b)Lightspeedsystems(?:\b|)" 3;
|
|
"~*(?:\b)Likse(?:\b|)" 3;
|
|
"~*(?:\b)Linkdexbot(?:\b|)" 3;
|
|
"~*(?:\b)LinkextractorPro(?:\b|)" 3;
|
|
"~*(?:\b)LinkpadBot(?:\b|)" 3;
|
|
"~*(?:\b)LinkScan(?:\b|)" 3;
|
|
"~*(?:\b)LinksManager(?:\b|)" 3;
|
|
"~*(?:\b)LinkWalker(?:\b|)" 3;
|
|
"~*(?:\b)LinqiaMetadataDownloaderBot(?:\b|)" 3;
|
|
"~*(?:\b)LinqiaRSSBot(?:\b|)" 3;
|
|
"~*(?:\b)LinqiaScrapeBot(?:\b|)" 3;
|
|
"~*(?:\b)Lipperhey(?:\b|)" 3;
|
|
"~*(?:\b)Lipperhey\ Spider(?:\b|)" 3;
|
|
"~*(?:\b)Litemage_walker(?:\b|)" 3;
|
|
"~*(?:\b)Lmspider(?:\b|)" 3;
|
|
"~*(?:\b)LNSpiderguy(?:\b|)" 3;
|
|
"~*(?:\b)Ltx71(?:\b|)" 3;
|
|
"~*(?:\b)lwp-request(?:\b|)" 3;
|
|
"~*(?:\b)LWP::Simple(?:\b|)" 3;
|
|
"~*(?:\b)lwp-trivial(?:\b|)" 3;
|
|
"~*(?:\b)Magnet(?:\b|)" 3;
|
|
"~*(?:\b)Mag-Net(?:\b|)" 3;
|
|
"~*(?:\b)magpie-crawler(?:\b|)" 3;
|
|
"~*(?:\b)Mail.RU_Bot(?:\b|)" 3;
|
|
"~*(?:\b)Majestic12(?:\b|)" 3;
|
|
"~*(?:\b)Majestic-SEO(?:\b|)" 3;
|
|
"~*(?:\b)Majestic\ SEO(?:\b|)" 3;
|
|
"~*(?:\b)MarkMonitor(?:\b|)" 3;
|
|
"~*(?:\b)MarkWatch(?:\b|)" 3;
|
|
"~*(?:\b)Masscan(?:\b|)" 3;
|
|
"~*(?:\b)Mass\ Downloader(?:\b|)" 3;
|
|
"~*(?:\b)Mata\ Hari(?:\b|)" 3;
|
|
"~*(?:\b)MauiBot(?:\b|)" 3;
|
|
"~*(?:\b)meanpathbot(?:\b|)" 3;
|
|
"~*(?:\b)Meanpathbot(?:\b|)" 3;
|
|
"~*(?:\b)MeanPath\ Bot(?:\b|)" 3;
|
|
"~*(?:\b)Mediatoolkitbot(?:\b|)" 3;
|
|
"~*(?:\b)mediawords(?:\b|)" 3;
|
|
"~*(?:\b)MegaIndex.ru(?:\b|)" 3;
|
|
"~*(?:\b)Metauri(?:\b|)" 3;
|
|
"~*(?:\b)MFC_Tear_Sample(?:\b|)" 3;
|
|
"~*(?:\b)Microsoft\ Data\ Access(?:\b|)" 3;
|
|
"~*(?:\b)Microsoft\ URL\ Control(?:\b|)" 3;
|
|
"~*(?:\b)MIDown\ tool(?:\b|)" 3;
|
|
"~*(?:\b)MIIxpc(?:\b|)" 3;
|
|
"~*(?:\b)Mister\ PiX(?:\b|)" 3;
|
|
"~*(?:\b)MJ12bot(?:\b|)" 3;
|
|
"~*(?:\b)Mojeek(?:\b|)" 3;
|
|
"~*(?:\b)Morfeus\ Fucking\ Scanner(?:\b|)" 3;
|
|
"~*(?:\b)Mr.4x3(?:\b|)" 3;
|
|
"~*(?:\b)MSFrontPage(?:\b|)" 3;
|
|
"~*(?:\b)MSIECrawler(?:\b|)" 3;
|
|
"~*(?:\b)Msrabot(?:\b|)" 3;
|
|
"~*(?:\b)MS\ Web\ Services\ Client\ Protocol(?:\b|)" 3;
|
|
"~*(?:\b)muhstik-scan(?:\b|)" 3;
|
|
"~*(?:\b)Musobot(?:\b|)" 3;
|
|
"~*(?:\b)Name\ Intelligence(?:\b|)" 3;
|
|
"~*(?:\b)Nameprotect(?:\b|)" 3;
|
|
"~*(?:\b)Navroad(?:\b|)" 3;
|
|
"~*(?:\b)NearSite(?:\b|)" 3;
|
|
"~*(?:\b)Needle(?:\b|)" 3;
|
|
"~*(?:\b)Nessus(?:\b|)" 3;
|
|
"~*(?:\b)NetAnts(?:\b|)" 3;
|
|
"~*(?:\b)Netcraft(?:\b|)" 3;
|
|
"~*(?:\b)netEstate\ NE\ Crawler(?:\b|)" 3;
|
|
"~*(?:\b)NetLyzer(?:\b|)" 3;
|
|
"~*(?:\b)NetMechanic(?:\b|)" 3;
|
|
"~*(?:\b)NetSpider(?:\b|)" 3;
|
|
"~*(?:\b)Nettrack(?:\b|)" 3;
|
|
"~*(?:\b)Net\ Vampire(?:\b|)" 3;
|
|
"~*(?:\b)Netvibes(?:\b|)" 3;
|
|
"~*(?:\b)NetZIP(?:\b|)" 3;
|
|
"~*(?:\b)NextGenSearchBot(?:\b|)" 3;
|
|
"~*(?:\b)Nibbler(?:\b|)" 3;
|
|
"~*(?:\b)NICErsPRO(?:\b|)" 3;
|
|
"~*(?:\b)Niki-bot(?:\b|)" 3;
|
|
"~*(?:\b)Nikto(?:\b|)" 3;
|
|
"~*(?:\b)NimbleCrawler(?:\b|)" 3;
|
|
"~*(?:\b)Nimbostratus(?:\b|)" 3;
|
|
"~*(?:\b)Ninja(?:\b|)" 3;
|
|
"~*(?:\b)Nmap(?:\b|)" 3;
|
|
"~*(?:\b)NPbot(?:\b|)" 3;
|
|
"~*(?:\b)Nutch(?:\b|)" 3;
|
|
"~*(?:\b)oBot(?:\b|)" 3;
|
|
"~*(?:\b)Octopus(?:\b|)" 3;
|
|
"~*(?:\b)Offline\ Explorer(?:\b|)" 3;
|
|
"~*(?:\b)Offline\ Navigator(?:\b|)" 3;
|
|
"~*(?:\b)OnCrawl(?:\b|)" 3;
|
|
"~*(?:\b)Openfind(?:\b|)" 3;
|
|
"~*(?:\b)OpenLinkProfiler(?:\b|)" 3;
|
|
"~*(?:\b)Openvas(?:\b|)" 3;
|
|
"~*(?:\b)OpenVAS(?:\b|)" 3;
|
|
"~*(?:\b)OrangeBot(?:\b|)" 3;
|
|
"~*(?:\b)OrangeSpider(?:\b|)" 3;
|
|
"~*(?:\b)OutclicksBot(?:\b|)" 3;
|
|
"~*(?:\b)OutfoxBot(?:\b|)" 3;
|
|
"~*(?:\b)PageAnalyzer(?:\b|)" 3;
|
|
"~*(?:\b)Page\ Analyzer(?:\b|)" 3;
|
|
"~*(?:\b)PageGrabber(?:\b|)" 3;
|
|
"~*(?:\b)page\ scorer(?:\b|)" 3;
|
|
"~*(?:\b)PageScorer(?:\b|)" 3;
|
|
"~*(?:\b)Pandalytics(?:\b|)" 3;
|
|
"~*(?:\b)Panscient(?:\b|)" 3;
|
|
"~*(?:\b)Papa\ Foto(?:\b|)" 3;
|
|
"~*(?:\b)Pavuk(?:\b|)" 3;
|
|
"~*(?:\b)pcBrowser(?:\b|)" 3;
|
|
"~*(?:\b)PECL::HTTP(?:\b|)" 3;
|
|
"~*(?:\b)PeoplePal(?:\b|)" 3;
|
|
"~*(?:\b)PHPCrawl(?:\b|)" 3;
|
|
"~*(?:\b)Picscout(?:\b|)" 3;
|
|
"~*(?:\b)Picsearch(?:\b|)" 3;
|
|
"~*(?:\b)PictureFinder(?:\b|)" 3;
|
|
"~*(?:\b)Pimonster(?:\b|)" 3;
|
|
"~*(?:\b)Pi-Monster(?:\b|)" 3;
|
|
"~*(?:\b)Pixray(?:\b|)" 3;
|
|
"~*(?:\b)PleaseCrawl(?:\b|)" 3;
|
|
"~*(?:\b)plumanalytics(?:\b|)" 3;
|
|
"~*(?:\b)Pockey(?:\b|)" 3;
|
|
"~*(?:\b)POE-Component-Client-HTTP(?:\b|)" 3;
|
|
"~*(?:\b)Probethenet(?:\b|)" 3;
|
|
"~*(?:\b)ProPowerBot(?:\b|)" 3;
|
|
"~*(?:\b)ProWebWalker(?:\b|)" 3;
|
|
"~*(?:\b)Psbot(?:\b|)" 3;
|
|
"~*(?:\b)Pump(?:\b|)" 3;
|
|
"~*(?:\b)PxBroker(?:\b|)" 3;
|
|
"~*(?:\b)PyCurl(?:\b|)" 3;
|
|
"~*(?:\b)QueryN\ Metasearch(?:\b|)" 3;
|
|
"~*(?:\b)Quick-Crawler(?:\b|)" 3;
|
|
"~*(?:\b)RankActive(?:\b|)" 3;
|
|
"~*(?:\b)RankActiveLinkBot(?:\b|)" 3;
|
|
"~*(?:\b)RankFlex(?:\b|)" 3;
|
|
"~*(?:\b)RankingBot(?:\b|)" 3;
|
|
"~*(?:\b)RankingBot2(?:\b|)" 3;
|
|
"~*(?:\b)Rankivabot(?:\b|)" 3;
|
|
"~*(?:\b)RankurBot(?:\b|)" 3;
|
|
"~*(?:\b)RealDownload(?:\b|)" 3;
|
|
"~*(?:\b)Reaper(?:\b|)" 3;
|
|
"~*(?:\b)RebelMouse(?:\b|)" 3;
|
|
"~*(?:\b)Recorder(?:\b|)" 3;
|
|
"~*(?:\b)RedesScrapy(?:\b|)" 3;
|
|
"~*(?:\b)ReGet(?:\b|)" 3;
|
|
"~*(?:\b)RepoMonkey(?:\b|)" 3;
|
|
"~*(?:\b)Ripper(?:\b|)" 3;
|
|
"~*(?:\b)RocketCrawler(?:\b|)" 3;
|
|
"~*(?:\b)Rogerbot(?:\b|)" 3;
|
|
"~*(?:\b)s1z.ru(?:\b|)" 3;
|
|
"~*(?:\b)SalesIntelligent(?:\b|)" 3;
|
|
"~*(?:\b)SBIder(?:\b|)" 3;
|
|
"~*(?:\b)ScanAlert(?:\b|)" 3;
|
|
"~*(?:\b)Scanbot(?:\b|)" 3;
|
|
"~*(?:\b)scan.lol(?:\b|)" 3;
|
|
"~*(?:\b)ScoutJet(?:\b|)" 3;
|
|
"~*(?:\b)Scrapy(?:\b|)" 3;
|
|
"~*(?:\b)Screaming(?:\b|)" 3;
|
|
"~*(?:\b)ScreenerBot(?:\b|)" 3;
|
|
"~*(?:\b)Searchestate(?:\b|)" 3;
|
|
"~*(?:\b)SearchmetricsBot(?:\b|)" 3;
|
|
"~*(?:\b)Semrush(?:\b|)" 3;
|
|
"~*(?:\b)SemrushBot(?:\b|)" 3;
|
|
"~*(?:\b)SEOkicks(?:\b|)" 3;
|
|
"~*(?:\b)SEOkicks-Robot(?:\b|)" 3;
|
|
"~*(?:\b)SEOlyticsCrawler(?:\b|)" 3;
|
|
"~*(?:\b)Seomoz(?:\b|)" 3;
|
|
"~*(?:\b)SEOprofiler(?:\b|)" 3;
|
|
"~*(?:\b)seoscanners(?:\b|)" 3;
|
|
"~*(?:\b)SeoSiteCheckup(?:\b|)" 3;
|
|
"~*(?:\b)SEOstats(?:\b|)" 3;
|
|
"~*(?:\b)serpstatbot(?:\b|)" 3;
|
|
"~*(?:\b)sexsearcher(?:\b|)" 3;
|
|
"~*(?:\b)Shodan(?:\b|)" 3;
|
|
"~*(?:\b)Siphon(?:\b|)" 3;
|
|
"~*(?:\b)SISTRIX(?:\b|)" 3;
|
|
"~*(?:\b)Sitebeam(?:\b|)" 3;
|
|
"~*(?:\b)SiteExplorer(?:\b|)" 3;
|
|
"~*(?:\b)Siteimprove(?:\b|)" 3;
|
|
"~*(?:\b)SiteLockSpider(?:\b|)" 3;
|
|
"~*(?:\b)SiteSnagger(?:\b|)" 3;
|
|
"~*(?:\b)SiteSucker(?:\b|)" 3;
|
|
"~*(?:\b)Site\ Sucker(?:\b|)" 3;
|
|
"~*(?:\b)Sitevigil(?:\b|)" 3;
|
|
"~*(?:\b)SlySearch(?:\b|)" 3;
|
|
"~*(?:\b)SmartDownload(?:\b|)" 3;
|
|
"~*(?:\b)SMTBot(?:\b|)" 3;
|
|
"~*(?:\b)Snake(?:\b|)" 3;
|
|
"~*(?:\b)Snapbot(?:\b|)" 3;
|
|
"~*(?:\b)Snoopy(?:\b|)" 3;
|
|
"~*(?:\b)SocialRankIOBot(?:\b|)" 3;
|
|
"~*(?:\b)Sociscraper(?:\b|)" 3;
|
|
"~*(?:\b)sogouspider(?:\b|)" 3;
|
|
"~*(?:\b)Sogou\ web\ spider(?:\b|)" 3;
|
|
"~*(?:\b)Sosospider(?:\b|)" 3;
|
|
"~*(?:\b)Sottopop(?:\b|)" 3;
|
|
"~*(?:\b)SpaceBison(?:\b|)" 3;
|
|
"~*(?:\b)Spammen(?:\b|)" 3;
|
|
"~*(?:\b)SpankBot(?:\b|)" 3;
|
|
"~*(?:\b)Spanner(?:\b|)" 3;
|
|
"~*(?:\b)sp_auditbot(?:\b|)" 3;
|
|
"~*(?:\b)Spbot(?:\b|)" 3;
|
|
"~*(?:\b)Spinn3r(?:\b|)" 3;
|
|
"~*(?:\b)SputnikBot(?:\b|)" 3;
|
|
"~*(?:\b)spyfu(?:\b|)" 3;
|
|
"~*(?:\b)Sqlmap(?:\b|)" 3;
|
|
"~*(?:\b)Sqlworm(?:\b|)" 3;
|
|
"~*(?:\b)Sqworm(?:\b|)" 3;
|
|
"~*(?:\b)Steeler(?:\b|)" 3;
|
|
"~*(?:\b)Stripper(?:\b|)" 3;
|
|
"~*(?:\b)Sucker(?:\b|)" 3;
|
|
"~*(?:\b)Sucuri(?:\b|)" 3;
|
|
"~*(?:\b)SuperBot(?:\b|)" 3;
|
|
"~*(?:\b)SuperHTTP(?:\b|)" 3;
|
|
"~*(?:\b)Surfbot(?:\b|)" 3;
|
|
"~*(?:\b)SurveyBot(?:\b|)" 3;
|
|
"~*(?:\b)Suzuran(?:\b|)" 3;
|
|
"~*(?:\b)Swiftbot(?:\b|)" 3;
|
|
"~*(?:\b)sysscan(?:\b|)" 3;
|
|
"~*(?:\b)Szukacz(?:\b|)" 3;
|
|
"~*(?:\b)T0PHackTeam(?:\b|)" 3;
|
|
"~*(?:\b)T8Abot(?:\b|)" 3;
|
|
"~*(?:\b)tAkeOut(?:\b|)" 3;
|
|
"~*(?:\b)Teleport(?:\b|)" 3;
|
|
"~*(?:\b)TeleportPro(?:\b|)" 3;
|
|
"~*(?:\b)Telesoft(?:\b|)" 3;
|
|
"~*(?:\b)Telesphoreo(?:\b|)" 3;
|
|
"~*(?:\b)Telesphorep(?:\b|)" 3;
|
|
"~*(?:\b)The\ Intraformant(?:\b|)" 3;
|
|
"~*(?:\b)TheNomad(?:\b|)" 3;
|
|
"~*(?:\b)Thumbor(?:\b|)" 3;
|
|
"~*(?:\b)TightTwatBot(?:\b|)" 3;
|
|
"~*(?:\b)Titan(?:\b|)" 3;
|
|
"~*(?:\b)Toata(?:\b|)" 3;
|
|
"~*(?:\b)Toweyabot(?:\b|)" 3;
|
|
"~*(?:\b)Tracemyfile(?:\b|)" 3;
|
|
"~*(?:\b)Trendiction(?:\b|)" 3;
|
|
"~*(?:\b)Trendictionbot(?:\b|)" 3;
|
|
"~*(?:\b)trendiction.com(?:\b|)" 3;
|
|
"~*(?:\b)trendiction.de(?:\b|)" 3;
|
|
"~*(?:\b)True_Robot(?:\b|)" 3;
|
|
"~*(?:\b)Turingos(?:\b|)" 3;
|
|
"~*(?:\b)Turnitin(?:\b|)" 3;
|
|
"~*(?:\b)TurnitinBot(?:\b|)" 3;
|
|
"~*(?:\b)TwengaBot(?:\b|)" 3;
|
|
"~*(?:\b)Twice(?:\b|)" 3;
|
|
"~*(?:\b)Typhoeus(?:\b|)" 3;
|
|
"~*(?:\b)UnisterBot(?:\b|)" 3;
|
|
"~*(?:\b)Upflow(?:\b|)" 3;
|
|
"~*(?:\b)URLy.Warning(?:\b|)" 3;
|
|
"~*(?:\b)URLy\ Warning(?:\b|)" 3;
|
|
"~*(?:\b)Vacuum(?:\b|)" 3;
|
|
"~*(?:\b)Vagabondo(?:\b|)" 3;
|
|
"~*(?:\b)VB\ Project(?:\b|)" 3;
|
|
"~*(?:\b)VCI(?:\b|)" 3;
|
|
"~*(?:\b)VeriCiteCrawler(?:\b|)" 3;
|
|
"~*(?:\b)VidibleScraper(?:\b|)" 3;
|
|
"~*(?:\b)Virusdie(?:\b|)" 3;
|
|
"~*(?:\b)VoidEYE(?:\b|)" 3;
|
|
"~*(?:\b)Voil(?:\b|)" 3;
|
|
"~*(?:\b)Voltron(?:\b|)" 3;
|
|
"~*(?:\b)Wallpapers/3.0(?:\b|)" 3;
|
|
"~*(?:\b)WallpapersHD(?:\b|)" 3;
|
|
"~*(?:\b)WASALive-Bot(?:\b|)" 3;
|
|
"~*(?:\b)WBSearchBot(?:\b|)" 3;
|
|
"~*(?:\b)Webalta(?:\b|)" 3;
|
|
"~*(?:\b)WebAuto(?:\b|)" 3;
|
|
"~*(?:\b)Web\ Auto(?:\b|)" 3;
|
|
"~*(?:\b)WebBandit(?:\b|)" 3;
|
|
"~*(?:\b)WebCollage(?:\b|)" 3;
|
|
"~*(?:\b)Web\ Collage(?:\b|)" 3;
|
|
"~*(?:\b)WebCopier(?:\b|)" 3;
|
|
"~*(?:\b)WEBDAV(?:\b|)" 3;
|
|
"~*(?:\b)WebEnhancer(?:\b|)" 3;
|
|
"~*(?:\b)Web\ Enhancer(?:\b|)" 3;
|
|
"~*(?:\b)WebFetch(?:\b|)" 3;
|
|
"~*(?:\b)Web\ Fetch(?:\b|)" 3;
|
|
"~*(?:\b)WebFuck(?:\b|)" 3;
|
|
"~*(?:\b)Web\ Fuck(?:\b|)" 3;
|
|
"~*(?:\b)WebGo\ IS(?:\b|)" 3;
|
|
"~*(?:\b)WebImageCollector(?:\b|)" 3;
|
|
"~*(?:\b)WebLeacher(?:\b|)" 3;
|
|
"~*(?:\b)WebmasterWorldForumBot(?:\b|)" 3;
|
|
"~*(?:\b)webmeup-crawler(?:\b|)" 3;
|
|
"~*(?:\b)WebPix(?:\b|)" 3;
|
|
"~*(?:\b)Web\ Pix(?:\b|)" 3;
|
|
"~*(?:\b)WebReaper(?:\b|)" 3;
|
|
"~*(?:\b)WebSauger(?:\b|)" 3;
|
|
"~*(?:\b)Web\ Sauger(?:\b|)" 3;
|
|
"~*(?:\b)Webshag(?:\b|)" 3;
|
|
"~*(?:\b)WebsiteExtractor(?:\b|)" 3;
|
|
"~*(?:\b)WebsiteQuester(?:\b|)" 3;
|
|
"~*(?:\b)Website\ Quester(?:\b|)" 3;
|
|
"~*(?:\b)Webster(?:\b|)" 3;
|
|
"~*(?:\b)WebStripper(?:\b|)" 3;
|
|
"~*(?:\b)WebSucker(?:\b|)" 3;
|
|
"~*(?:\b)Web\ Sucker(?:\b|)" 3;
|
|
"~*(?:\b)WebWhacker(?:\b|)" 3;
|
|
"~*(?:\b)WebZIP(?:\b|)" 3;
|
|
"~*(?:\b)WeSEE(?:\b|)" 3;
|
|
"~*(?:\b)Whack(?:\b|)" 3;
|
|
"~*(?:\b)Whacker(?:\b|)" 3;
|
|
"~*(?:\b)Whatweb(?:\b|)" 3;
|
|
"~*(?:\b)Who.is\ Bot(?:\b|)" 3;
|
|
"~*(?:\b)Widow(?:\b|)" 3;
|
|
"~*(?:\b)WinHTTrack(?:\b|)" 3;
|
|
"~*(?:\b)WiseGuys\ Robot(?:\b|)" 3;
|
|
"~*(?:\b)WISENutbot(?:\b|)" 3;
|
|
"~*(?:\b)Wonderbot(?:\b|)" 3;
|
|
"~*(?:\b)Woobot(?:\b|)" 3;
|
|
"~*(?:\b)Wotbox(?:\b|)" 3;
|
|
"~*(?:\b)Wprecon(?:\b|)" 3;
|
|
"~*(?:\b)WPScan(?:\b|)" 3;
|
|
"~*(?:\b)WWW-Collector-E(?:\b|)" 3;
|
|
"~*(?:\b)WWW-Mechanize(?:\b|)" 3;
|
|
"~*(?:\b)WWW::Mechanize(?:\b|)" 3;
|
|
"~*(?:\b)WWWOFFLE(?:\b|)" 3;
|
|
"~*(?:\b)x09Mozilla(?:\b|)" 3;
|
|
"~*(?:\b)x22Mozilla(?:\b|)" 3;
|
|
"~*(?:\b)Xaldon_WebSpider(?:\b|)" 3;
|
|
"~*(?:\b)Xaldon\ WebSpider(?:\b|)" 3;
|
|
"~*(?:\b)Xenu(?:\b|)" 3;
|
|
"~*(?:\b)xpymep1.exe(?:\b|)" 3;
|
|
"~*(?:\b)YoudaoBot(?:\b|)" 3;
|
|
"~*(?:\b)Zade(?:\b|)" 3;
|
|
"~*(?:\b)Zauba(?:\b|)" 3;
|
|
"~*(?:\b)zauba.io(?:\b|)" 3;
|
|
"~*(?:\b)Zermelo(?:\b|)" 3;
|
|
"~*(?:\b)Zeus(?:\b|)" 3;
|
|
"~*(?:\b)zgrab(?:\b|)" 3;
|
|
"~*(?:\b)Zitebot(?:\b|)" 3;
|
|
"~*(?:\b)ZmEu(?:\b|)" 3;
|
|
"~*(?:\b)ZumBot(?:\b|)" 3;
|
|
"~*(?:\b)ZyBorg(?:\b|)" 3;
|
|
# END BAD BOTS ### DO NOT EDIT THIS LINE AT ALL ###
|
|
|
|
# ***********************************************
|
|
# Allow Good User-Agent Strings We Know and Trust
|
|
# ***********************************************
|
|
|
|
# START GOOD BOTS ### DO NOT EDIT THIS LINE AT ALL ###
|
|
"~*(?:\b)adidxbot(?:\b|)" 0;
|
|
"~*(?:\b)AdsBot-Google(?:\b|)" 0;
|
|
"~*(?:\b)aolbuild(?:\b|)" 0;
|
|
"~*(?:\b)bingbot(?:\b|)" 0;
|
|
"~*(?:\b)bingpreview(?:\b|)" 0;
|
|
"~*(?:\b)DoCoMo(?:\b|)" 0;
|
|
"~*(?:\b)duckduckgo(?:\b|)" 0;
|
|
"~*(?:\b)facebookexternalhit(?:\b|)" 0;
|
|
"~*(?:\b)Feedfetcher-Google(?:\b|)" 0;
|
|
"~*(?:\b)Googlebot(?:\b|)" 0;
|
|
"~*(?:\b)Googlebot-Image(?:\b|)" 0;
|
|
"~*(?:\b)Googlebot-Mobile(?:\b|)" 0;
|
|
"~*(?:\b)Googlebot-News(?:\b|)" 0;
|
|
"~*(?:\b)Googlebot/Test(?:\b|)" 0;
|
|
"~*(?:\b)Googlebot-Video(?:\b|)" 0;
|
|
"~*(?:\b)Google-HTTP-Java-Client(?:\b|)" 0;
|
|
"~*(?:\b)Gravityscan(?:\b|)" 0;
|
|
"~*(?:\b)gsa-crawler(?:\b|)" 0;
|
|
"~*(?:\b)Jakarta\ Commons(?:\b|)" 0;
|
|
"~*(?:\b)Kraken/0.1(?:\b|)" 0;
|
|
"~*(?:\b)LinkedInBot(?:\b|)" 0;
|
|
"~*(?:\b)Mediapartners-Google(?:\b|)" 0;
|
|
"~*(?:\b)msnbot(?:\b|)" 0;
|
|
"~*(?:\b)msnbot-media(?:\b|)" 0;
|
|
"~*(?:\b)SAMSUNG(?:\b|)" 0;
|
|
"~*(?:\b)Slackbot(?:\b|)" 0;
|
|
"~*(?:\b)Slackbot-LinkExpanding(?:\b|)" 0;
|
|
"~*(?:\b)slurp(?:\b|)" 0;
|
|
"~*(?:\b)teoma(?:\b|)" 0;
|
|
"~*(?:\b)TwitterBot(?:\b|)" 0;
|
|
"~*(?:\b)Wordpress(?:\b|)" 0;
|
|
"~*(?:\b)yahoo(?:\b|)" 0;
|
|
# END GOOD BOTS ### DO NOT EDIT THIS LINE AT ALL ###
|
|
|
|
# ***************************************************
|
|
# User-Agent Strings Allowed Through but Rate Limited
|
|
# ***************************************************
|
|
|
|
# Some people block libwww-perl, it used widely in many valid (non rogue) agents
|
|
# I allow libwww-perl as I use it for monitoring systems with Munin but it is rate limited
|
|
|
|
# START ALLOWED BOTS ### DO NOT EDIT THIS LINE AT ALL ###
|
|
"~*(?:\b)jetmon(?:\b|)" 1;
|
|
"~*(?:\b)libwww-perl(?:\b|)" 1;
|
|
"~*(?:\b)Lynx(?:\b|)" 1;
|
|
"~*(?:\b)munin(?:\b|)" 1;
|
|
"~*(?:\b)Presto(?:\b|)" 1;
|
|
"~*(?:\b)Wget/1.15(?:\b|)" 1;
|
|
# END ALLOWED BOTS ### DO NOT EDIT THIS LINE AT ALL ###
|
|
|
|
# **************************************************************
|
|
# Rate Limited User-Agents who get a bit aggressive on bandwidth
|
|
# **************************************************************
|
|
|
|
# START LIMITED BOTS ### DO NOT EDIT THIS LINE AT ALL ###
|
|
"~*(?:\b)Alexa(?:\b|)" 2;
|
|
"~*(?:\b)archive.org(?:\b|)" 2;
|
|
"~*(?:\b)Baidu(?:\b|)" 2;
|
|
"~*(?:\b)BUbiNG(?:\b|)" 2;
|
|
"~*(?:\b)FlipboardProxy(?:\b|)" 2;
|
|
"~*(?:\b)ia_archiver(?:\b|)" 2;
|
|
"~*(?:\b)MSIE\ 7.0(?:\b|)" 2;
|
|
"~*(?:\b)Proximic(?:\b|)" 2;
|
|
"~*(?:\b)R6_CommentReader(?:\b|)" 2;
|
|
"~*(?:\b)R6_FeedFetcher(?:\b|)" 2;
|
|
"~*(?:\b)RED/1(?:\b|)" 2;
|
|
"~*(?:\b)RPT-HTTPClient(?:\b|)" 2;
|
|
"~*(?:\b)sfFeedReader/0.9(?:\b|)" 2;
|
|
"~*(?:\b)Spaidu(?:\b|)" 2;
|
|
"~*(?:\b)UptimeRobot/2.0(?:\b|)" 2;
|
|
"~*(?:\b)YandexBot(?:\b|)" 2;
|
|
"~*(?:\b)YandexImages(?:\b|)" 2;
|
|
# END LIMITED BOTS ### DO NOT EDIT THIS LINE AT ALL ###
|
|
|
|
}
|
|
|
|
|
|
# *****************************************
|
|
# SECOND BLOCK BY REFERRER STRINGS AND URLS
|
|
# *****************************************
|
|
|
|
# *****************
|
|
# PLEASE TEST !!!!
|
|
# *****************
|
|
|
|
# ALWAYS test referrers that you add. This is done manually as follows
|
|
|
|
# curl -I http://www.yourdomain.com -e http://anything.adcash.com --- GIVES YOU: curl: (52) Empty reply from server
|
|
# curl -I http://www.yourdomain.com -e http://www.goodwebsite.com/not-adcash --- GIVES YOU: curl: (52) Empty reply from server
|
|
# curl -I http://www.yourdomain.com -e http://www.betterwebsite.com/not/adcash --- GIVES YOU: curl: (52) Empty reply from server
|
|
|
|
# curl -I http://www.yourdomain.com -e http://www.google.com --- GIVES YOU: full html output of the web page
|
|
# curl -I http://www.yourdomain.com -e http://www.microsoft.com --- GIVES YOU: full html output of the web page
|
|
|
|
# Because of case-insensitive matching any combination of capitilization in the names will all produce a positive hit
|
|
# make sure you always test thoroughly and monitor logs. This section below also does NOT check for a preceding www.
|
|
# and it also does not care if the referrer request was sent with http https or even ftp.
|
|
|
|
# ***********************************************************************
|
|
# Now we map all bad referrer words below to a variable called $bad_words
|
|
# ***********************************************************************
|
|
|
|
map $http_referer $bad_words {
|
|
default 0;
|
|
|
|
# **************************
|
|
# Bad Referrer Word Scanning
|
|
# **************************
|
|
|
|
# These are Words and Terms often found tagged onto domains or within url query strings.
|
|
# Create and Customize Your Own Bad Referrer Words Here using the new Include File Method
|
|
# New Method Uses the include file below so that when pulling future updates your
|
|
# customized list of bad referrer words are automatically now included for you
|
|
# Read Comments inside bad-referrer-words.conf for customization tips.
|
|
# Updating the main globalblacklist.conf file will not touch your custom include files
|
|
# BE VERY CAREFUL using the bad-referrer-words.conf file - please read the comment and
|
|
# examples inside the include file for detailed explanations into how seriously this can
|
|
# affect your own site from serving assets or other innocent sites from accessing your site
|
|
# For safety sake the whitelist-domains.conf file is also loaded here before the bad-referrer-words.conf file.
|
|
|
|
# ************************************************************************
|
|
# START WHITELISTED DOMAINS ### DO NOT EDIT OR REMOVE THIS LINE AT ALL ###
|
|
# ************************************************************************
|
|
|
|
include /etc/nginx/bots.d/whitelist-domains.conf;
|
|
|
|
# **********************************************************************
|
|
# END WHITELISTED DOMAINS ### DO NOT EDIT OR REMOVE THIS LINE AT ALL ###
|
|
# **********************************************************************
|
|
|
|
|
|
# ******************************************************************************
|
|
# START CUSTOM BAD REFERRER WORDS ### DO NOT EDIT OR REMOVE THIS LINE AT ALL ###
|
|
# ******************************************************************************
|
|
|
|
include /etc/nginx/bots.d/bad-referrer-words.conf;
|
|
|
|
# ****************************************************************************
|
|
# END CUSTOM BAD REFERRER WORDS ### DO NOT EDIT OR REMOVE THIS LINE AT ALL ###
|
|
# ****************************************************************************
|
|
|
|
}
|
|
|
|
# *************************
|
|
# Bad Referrer Domain Names
|
|
# *************************
|
|
|
|
# Now a list of bad referrer urls these domains or any combination of them ie .com .net
|
|
# will be blocked out. Doesn't matter if the protocol is http, https or even ftp
|
|
|
|
# This section includes:
|
|
# **********************
|
|
# Blocking of SEO company Semalt.com (now merged into this one section)
|
|
# MIRAI Botnet Domains Used for Mass Attacks
|
|
# Other known bad SEO companies and Ad Hijacking Sites
|
|
# Sites linked to malware, adware, clickjacking and ransomware
|
|
|
|
# *****************
|
|
# PLEASE TEST !!!!
|
|
# *****************
|
|
|
|
# ALWAYS test referrers that you add. This is done manually as follows
|
|
|
|
# curl -I http://www.yourdomain.com -e http://8gold.com --- GIVES YOU: curl: (52) Empty reply from server
|
|
|
|
# Because of case-insensitive matching any combination of capitilization will all produce a positive hit - make sure you always test.
|
|
|
|
# For Example any of the following variations below of 8gold.com will be detected and blocked
|
|
|
|
# curl -I http://www.yourdomain.com -e http://NOT-8gold.com --- GIVES YOU: curl: (52) Empty reply from server
|
|
# curl -I http://www.yourdomain.com -e http://this.is.not8gOlD.net --- GIVES YOU: curl: (52) Empty reply from server
|
|
# curl -I http://www.yourdomain.com -e ftp://8gold.com --- GIVES YOU: curl: (52) Empty reply from server
|
|
# curl -I http://www.yourdomain.com -e ftp://www.weare8gold.NET --- GIVES YOU: curl: (52) Empty reply from server
|
|
# curl -I http://www.yourdomain.com -e https://subdomain.8gold.com --- GIVES YOU: curl: (52) Empty reply from server
|
|
# curl -I http://www.yourdomain.com -e https://NOT8GolD.org --- GIVES YOU: curl: (52) Empty reply from server
|
|
|
|
# So if you see a bad referrer from wearegoogle.com and you want to block them just add
|
|
# them as "~*wearegoogle.com" don't ever go and do something like "~*google(-|.)" you will
|
|
# kill all your SEO in a week.
|
|
|
|
# To add your own custom bad referrers use the custom include file
|
|
# /etc/nginx/bots.d/custom-bad-referrers.conf
|
|
# Or send a Pull Request to add it to the global blacklist for other users.
|
|
|
|
# In the bad referrers section I also include sites that hotlink images without permission.
|
|
|
|
# ***********************************************************************
|
|
# Now we map all good & bad referrer urls to variable called #bad_referer
|
|
# ***********************************************************************
|
|
|
|
map $http_referer $bad_referer {
|
|
hostnames;
|
|
default 0;
|
|
|
|
# *************************************
|
|
# GOOD REFERRERS - Spared from Checking
|
|
# *************************************
|
|
|
|
# Add all your own web site domain names and server names in this section
|
|
|
|
# WHITELIST Your Own Domain Names Here using the new Include File Method
|
|
# New Method Uses the include file below so that when pulling future updates your
|
|
# whitelisted domain names are automatically now included for you.
|
|
# Read Comments inside whitelist-domains.conf for customization tips.
|
|
# Updating the main globalblacklist.conf file will not touch your custom include files
|
|
|
|
# ************************************************************************
|
|
# START WHITELISTED DOMAINS ### DO NOT EDIT OR REMOVE THIS LINE AT ALL ###
|
|
# ************************************************************************
|
|
|
|
include /etc/nginx/bots.d/whitelist-domains.conf;
|
|
|
|
# **********************************************************************
|
|
# END WHITELISTED DOMAINS ### DO NOT EDIT OR REMOVE THIS LINE AT ALL ###
|
|
# **********************************************************************
|
|
|
|
# ***********************************
|
|
# CUSTOM BAD REFERRERS - Add your Own
|
|
# ***********************************
|
|
|
|
# Add any extra bad referrers in the following include file to have them
|
|
# permanently included and blocked - avoid duplicates in your custom file
|
|
|
|
# *************************************************************************
|
|
# START CUSTOM BAD REFERRERS ### DO NOT EDIT OR REMOVE THIS LINE AT ALL ###
|
|
# *************************************************************************
|
|
|
|
include /etc/nginx/bots.d/custom-bad-referrers.conf;
|
|
|
|
# ***********************************************************************
|
|
# END CUSTOM BAD REFERRERS ### DO NOT EDIT OR REMOVE THIS LINE AT ALL ###
|
|
# ***********************************************************************
|
|
|
|
# START BAD REFERRERS ### DO NOT EDIT THIS LINE AT ALL ###
|
|
"~*(?:\b)000free\.us(?:\b|)" 1;
|
|
"~*(?:\b)007angels\.com(?:\b|)" 1;
|
|
"~*(?:\b)00author\.com(?:\b|)" 1;
|
|
"~*(?:\b)00go\.com(?:\b|)" 1;
|
|
"~*(?:\b)00it\.com(?:\b|)" 1;
|
|
"~*(?:\b)00webcams\.com(?:\b|)" 1;
|
|
"~*(?:\b)01apple\.com(?:\b|)" 1;
|
|
"~*(?:\b)03e\.info(?:\b|)" 1;
|
|
"~*(?:\b)03p\.info(?:\b|)" 1;
|
|
"~*(?:\b)08800\.top(?:\b|)" 1;
|
|
"~*(?:\b)0912701309f8ce\.com(?:\b|)" 1;
|
|
"~*(?:\b)0c47f8422d3f\.com(?:\b|)" 1;
|
|
"~*(?:\b)0daymusic\.org(?:\b|)" 1;
|
|
"~*(?:\b)0lovespells0\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)0n\-line\.tv(?:\b|)" 1;
|
|
"~*(?:\b)1000n1\.ru(?:\b|)" 1;
|
|
"~*(?:\b)1001watch\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)100dollars\-seo\.com(?:\b|)" 1;
|
|
"~*(?:\b)100searchengines\.com(?:\b|)" 1;
|
|
"~*(?:\b)101billion\.com(?:\b|)" 1;
|
|
"~*(?:\b)101flag\.ru(?:\b|)" 1;
|
|
"~*(?:\b)101lesbian\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)101raccoon\.ru(?:\b|)" 1;
|
|
"~*(?:\b)108shot\.com(?:\b|)" 1;
|
|
"~*(?:\b)10bet\.com(?:\b|)" 1;
|
|
"~*(?:\b)11235813\.webzdarma\.cz(?:\b|)" 1;
|
|
"~*(?:\b)11pikachu\.ru(?:\b|)" 1;
|
|
"~*(?:\b)123any\.com(?:\b|)" 1;
|
|
"~*(?:\b)123cha\.com(?:\b|)" 1;
|
|
"~*(?:\b)123kuma\.com(?:\b|)" 1;
|
|
"~*(?:\b)123locker\.com(?:\b|)" 1;
|
|
"~*(?:\b)123movies\.love(?:\b|)" 1;
|
|
"~*(?:\b)12bet\.com(?:\b|)" 1;
|
|
"~*(?:\b)12masterov\.com(?:\b|)" 1;
|
|
"~*(?:\b)12u\.info(?:\b|)" 1;
|
|
"~*(?:\b)1314dh\.com(?:\b|)" 1;
|
|
"~*(?:\b)13tabs\.com(?:\b|)" 1;
|
|
"~*(?:\b)14b\.info(?:\b|)" 1;
|
|
"~*(?:\b)1688\.com(?:\b|)" 1;
|
|
"~*(?:\b)178evakuator178\.ru(?:\b|)" 1;
|
|
"~*(?:\b)1\-99seo\.com(?:\b|)" 1;
|
|
"~*(?:\b)1adult\.com(?:\b|)" 1;
|
|
"~*(?:\b)1bet\.com(?:\b|)" 1;
|
|
"~*(?:\b)1flag\.co\.za(?:\b|)" 1;
|
|
"~*(?:\b)1\-free\-share\-buttons\.com(?:\b|)" 1;
|
|
"~*(?:\b)1hwy\.com(?:\b|)" 1;
|
|
"~*(?:\b)1j7740kd\.website(?:\b|)" 1;
|
|
"~*(?:\b)1kdailyprofit\.me(?:\b|)" 1;
|
|
"~*(?:\b)1kinobig\.ru(?:\b|)" 1;
|
|
"~*(?:\b)1millionusd\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)1pamm\.ru(?:\b|)" 1;
|
|
"~*(?:\b)1qingdao\.com(?:\b|)" 1;
|
|
"~*(?:\b)1stat\.ru(?:\b|)" 1;
|
|
"~*(?:\b)1webmaster\.ml(?:\b|)" 1;
|
|
"~*(?:\b)2000k\.ru(?:\b|)" 1;
|
|
"~*(?:\b)2015god\.org(?:\b|)" 1;
|
|
"~*(?:\b)2020iscoming\.info(?:\b|)" 1;
|
|
"~*(?:\b)202ch\.com(?:\b|)" 1;
|
|
"~*(?:\b)20pascals\.nl(?:\b|)" 1;
|
|
"~*(?:\b)214jaluwobapef\.cf(?:\b|)" 1;
|
|
"~*(?:\b)21h2o\.com(?:\b|)" 1;
|
|
"~*(?:\b)2345\.com(?:\b|)" 1;
|
|
"~*(?:\b)23kw\.ru(?:\b|)" 1;
|
|
"~*(?:\b)24\-ak\.ru(?:\b|)" 1;
|
|
"~*(?:\b)24videos\.tv(?:\b|)" 1;
|
|
"~*(?:\b)24x7\-server\-support\.site(?:\b|)" 1;
|
|
"~*(?:\b)256bit\.by(?:\b|)" 1;
|
|
"~*(?:\b)2728fb936f0\.com(?:\b|)" 1;
|
|
"~*(?:\b)273\-fz\.ru(?:\b|)" 1;
|
|
"~*(?:\b)28n2gl3wfyb0\.ru(?:\b|)" 1;
|
|
"~*(?:\b)2ads\.co\.uk(?:\b|)" 1;
|
|
"~*(?:\b)2daytrendingnews\.com(?:\b|)" 1;
|
|
"~*(?:\b)2drittel\.de(?:\b|)" 1;
|
|
"~*(?:\b)2girls1cup\-free\.com(?:\b|)" 1;
|
|
"~*(?:\b)2itech\.ru(?:\b|)" 1;
|
|
"~*(?:\b)2kata\.ru(?:\b|)" 1;
|
|
"~*(?:\b)2nt\.ru(?:\b|)" 1;
|
|
"~*(?:\b)2pxg8bcf\.top(?:\b|)" 1;
|
|
"~*(?:\b)2rich4bitches\.com(?:\b|)" 1;
|
|
"~*(?:\b)2x2fan\.ru(?:\b|)" 1;
|
|
"~*(?:\b)300richmond\.co\.nz(?:\b|)" 1;
|
|
"~*(?:\b)34\.gs(?:\b|)" 1;
|
|
"~*(?:\b)3dracergames\.com(?:\b|)" 1;
|
|
"~*(?:\b)3\-letter\-domains\.net(?:\b|)" 1;
|
|
"~*(?:\b)3rbseyes\.com(?:\b|)" 1;
|
|
"~*(?:\b)3th\.co\.in(?:\b|)" 1;
|
|
"~*(?:\b)3w24\.com(?:\b|)" 1;
|
|
"~*(?:\b)3weekdiet\.com(?:\b|)" 1;
|
|
"~*(?:\b)3xforum\.ro(?:\b|)" 1;
|
|
"~*(?:\b)40cg\.com(?:\b|)" 1;
|
|
"~*(?:\b)45en\.ru(?:\b|)" 1;
|
|
"~*(?:\b)4inn\.ru(?:\b|)" 1;
|
|
"~*(?:\b)4istoshop\.com(?:\b|)" 1;
|
|
"~*(?:\b)4kepics\.com(?:\b|)" 1;
|
|
"~*(?:\b)4kpics\.rocks(?:\b|)" 1;
|
|
"~*(?:\b)4k\-player\.pl(?:\b|)" 1;
|
|
"~*(?:\b)4kplayer\.pl(?:\b|)" 1;
|
|
"~*(?:\b)4pp13\.com(?:\b|)" 1;
|
|
"~*(?:\b)4rent\.ru(?:\b|)" 1;
|
|
"~*(?:\b)4replicawatch\.net(?:\b|)" 1;
|
|
"~*(?:\b)4senses\.co(?:\b|)" 1;
|
|
"~*(?:\b)4ur\.click(?:\b|)" 1;
|
|
"~*(?:\b)4ureyesonly\.com(?:\b|)" 1;
|
|
"~*(?:\b)4webmasters\.com(?:\b|)" 1;
|
|
"~*(?:\b)4webmasters\.org(?:\b|)" 1;
|
|
"~*(?:\b)5000\-cotydzien\.com(?:\b|)" 1;
|
|
"~*(?:\b)51\.la(?:\b|)" 1;
|
|
"~*(?:\b)51unlim\.ru(?:\b|)" 1;
|
|
"~*(?:\b)55wmz\.ru(?:\b|)" 1;
|
|
"~*(?:\b)57883\.net(?:\b|)" 1;
|
|
"~*(?:\b)5elementov\.ru(?:\b|)" 1;
|
|
"~*(?:\b)5forex\.ru(?:\b|)" 1;
|
|
"~*(?:\b)5i2\.net(?:\b|)" 1;
|
|
"~*(?:\b)5kstore\.com(?:\b|)" 1;
|
|
"~*(?:\b)5\-steps\-to\-start\-business\.com(?:\b|)" 1;
|
|
"~*(?:\b)5tey7463\.weebly\.com(?:\b|)" 1;
|
|
"~*(?:\b)5u\.com(?:\b|)" 1;
|
|
"~*(?:\b)5ws\.dating\-app\.ru(?:\b|)" 1;
|
|
"~*(?:\b)6128786\.com(?:\b|)" 1;
|
|
"~*(?:\b)66cpwgln\.space(?:\b|)" 1;
|
|
"~*(?:\b)6hopping\.com(?:\b|)" 1;
|
|
"~*(?:\b)72\-news\.com(?:\b|)" 1;
|
|
"~*(?:\b)76brighton\.co\.uk(?:\b|)" 1;
|
|
"~*(?:\b)777\-club\.ru(?:\b|)" 1;
|
|
"~*(?:\b)7a2rnuey1tw9ar\.ru(?:\b|)" 1;
|
|
"~*(?:\b)7fon\.ru(?:\b|)" 1;
|
|
"~*(?:\b)7makemoneyonline\.com(?:\b|)" 1;
|
|
"~*(?:\b)7minuteworkout\.com(?:\b|)" 1;
|
|
"~*(?:\b)7search\.com(?:\b|)" 1;
|
|
"~*(?:\b)7wind\.ru(?:\b|)" 1;
|
|
"~*(?:\b)7xc4n\.com(?:\b|)" 1;
|
|
"~*(?:\b)7yue\.org(?:\b|)" 1;
|
|
"~*(?:\b)7zap\.com(?:\b|)" 1;
|
|
"~*(?:\b)83net\.jp(?:\b|)" 1;
|
|
"~*(?:\b)8558l\.jobs\.net(?:\b|)" 1;
|
|
"~*(?:\b)883zy\.com(?:\b|)" 1;
|
|
"~*(?:\b)888\.com(?:\b|)" 1;
|
|
"~*(?:\b)8gold\.com(?:\b|)" 1;
|
|
"~*(?:\b)8jn\.dating\-app\.ru(?:\b|)" 1;
|
|
"~*(?:\b)8kisses\.eu(?:\b|)" 1;
|
|
"~*(?:\b)8lufu\.com(?:\b|)" 1;
|
|
"~*(?:\b)8si\.ru(?:\b|)" 1;
|
|
"~*(?:\b)8xv8\.com(?:\b|)" 1;
|
|
"~*(?:\b)91abcw\.com(?:\b|)" 1;
|
|
"~*(?:\b)98oi\.ru(?:\b|)" 1;
|
|
"~*(?:\b)991mostfm\.co\.id(?:\b|)" 1;
|
|
"~*(?:\b)999webdesign\.com(?:\b|)" 1;
|
|
"~*(?:\b)9icmzvn6\.website(?:\b|)" 1;
|
|
"~*(?:\b)9med\.net(?:\b|)" 1;
|
|
"~*(?:\b)a14download\.com(?:\b|)" 1;
|
|
"~*(?:\b)a1security\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)a96527gi\.beget\.tech(?:\b|)" 1;
|
|
"~*(?:\b)aa08daf7e13b6345e09e92f771507fa5f4\.com(?:\b|)" 1;
|
|
"~*(?:\b)aa14ab57a3339c4064bd9ae6fad7495b5f\.com(?:\b|)" 1;
|
|
"~*(?:\b)aa625d84f1587749c1ab011d6f269f7d64\.com(?:\b|)" 1;
|
|
"~*(?:\b)aa81bf391151884adfa3dd677e41f94be1\.com(?:\b|)" 1;
|
|
"~*(?:\b)aa8780bb28a1de4eb5bff33c28a218a930\.com(?:\b|)" 1;
|
|
"~*(?:\b)aa8b68101d388c446389283820863176e7\.com(?:\b|)" 1;
|
|
"~*(?:\b)aa9bd78f328a6a41279d0fad0a88df1901\.com(?:\b|)" 1;
|
|
"~*(?:\b)aa9d046aab36af4ff182f097f840430d51\.com(?:\b|)" 1;
|
|
"~*(?:\b)aaa38852e886ac4af1a3cff9b47cab6272\.com(?:\b|)" 1;
|
|
"~*(?:\b)aab94f698f36684c5a852a2ef272e031bb\.com(?:\b|)" 1;
|
|
"~*(?:\b)aac500b7a15b2646968f6bd8c6305869d7\.com(?:\b|)" 1;
|
|
"~*(?:\b)aac52006ec82a24e08b665f4db2b5013f7\.com(?:\b|)" 1;
|
|
"~*(?:\b)aad1f4acb0a373420d9b0c4202d38d94fa\.com(?:\b|)" 1;
|
|
"~*(?:\b)aadroid\.net(?:\b|)" 1;
|
|
"~*(?:\b)aanapa\.ru(?:\b|)" 1;
|
|
"~*(?:\b)aarbur\.com(?:\b|)" 1;
|
|
"~*(?:\b)aaronabel\.com(?:\b|)" 1;
|
|
"~*(?:\b)aasoldes\.fr(?:\b|)" 1;
|
|
"~*(?:\b)abbanreddy\.com(?:\b|)" 1;
|
|
"~*(?:\b)abcdefh\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)abcdeg\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)abcguru\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)abclauncher\.com(?:\b|)" 1;
|
|
"~*(?:\b)abctoppictures\.net(?:\b|)" 1;
|
|
"~*(?:\b)abiente\.ru(?:\b|)" 1;
|
|
"~*(?:\b)above\.com(?:\b|)" 1;
|
|
"~*(?:\b)abovetherivernc\.com(?:\b|)" 1;
|
|
"~*(?:\b)absolutelyanalog\.com(?:\b|)" 1;
|
|
"~*(?:\b)absolute\-s\.ru(?:\b|)" 1;
|
|
"~*(?:\b)absugars\.com(?:\b|)" 1;
|
|
"~*(?:\b)abtasty\.com(?:\b|)" 1;
|
|
"~*(?:\b)abusora\.com(?:\b|)" 1;
|
|
"~*(?:\b)abwa\.tk(?:\b|)" 1;
|
|
"~*(?:\b)academiacsmendoza\.org(?:\b|)" 1;
|
|
"~*(?:\b)academia\-nsk\.org(?:\b|)" 1;
|
|
"~*(?:\b)acads\.net(?:\b|)" 1;
|
|
"~*(?:\b)accessoires\-mode\.in(?:\b|)" 1;
|
|
"~*(?:\b)acc\.eu\.org(?:\b|)" 1;
|
|
"~*(?:\b)acgs\.tk(?:\b|)" 1;
|
|
"~*(?:\b)acheterviagrafr24\.com(?:\b|)" 1;
|
|
"~*(?:\b)acmebtn\.ml(?:\b|)" 1;
|
|
"~*(?:\b)acortarurl\.es(?:\b|)" 1;
|
|
"~*(?:\b)actices\.com(?:\b|)" 1;
|
|
"~*(?:\b)actionnooz\.com(?:\b|)" 1;
|
|
"~*(?:\b)activecampaign\.dreamhosters\.com(?:\b|)" 1;
|
|
"~*(?:\b)activepr\.ru(?:\b|)" 1;
|
|
"~*(?:\b)actulite\.com(?:\b|)" 1;
|
|
"~*(?:\b)acunetix\-referrer\.com(?:\b|)" 1;
|
|
"~*(?:\b)adamoads\.com(?:\b|)" 1;
|
|
"~*(?:\b)adanih\.com(?:\b|)" 1;
|
|
"~*(?:\b)adbetclickin\.pink(?:\b|)" 1;
|
|
"~*(?:\b)adcash\.com(?:\b|)" 1;
|
|
"~*(?:\b)adclickservice\.com(?:\b|)" 1;
|
|
"~*(?:\b)adclickthru\.net(?:\b|)" 1;
|
|
"~*(?:\b)adconscious\.com(?:\b|)" 1;
|
|
"~*(?:\b)add\-add\.men(?:\b|)" 1;
|
|
"~*(?:\b)addbin\.men(?:\b|)" 1;
|
|
"~*(?:\b)addblueoff\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)addray\.pro(?:\b|)" 1;
|
|
"~*(?:\b)addtoadd\.men(?:\b|)" 1;
|
|
"~*(?:\b)adelly\.bg(?:\b|)" 1;
|
|
"~*(?:\b)adexprts\.com(?:\b|)" 1;
|
|
"~*(?:\b)adf\.ly(?:\b|)" 1;
|
|
"~*(?:\b)adhome\.biz(?:\b|)" 1;
|
|
"~*(?:\b)adidas\.frwebs\.fr(?:\b|)" 1;
|
|
"~*(?:\b)adimmix\.com(?:\b|)" 1;
|
|
"~*(?:\b)adinterax\.com(?:\b|)" 1;
|
|
"~*(?:\b)adktrailmap\.com(?:\b|)" 1;
|
|
"~*(?:\b)adloads\.com(?:\b|)" 1;
|
|
"~*(?:\b)adloads\.net(?:\b|)" 1;
|
|
"~*(?:\b)admanaerofoil\.com(?:\b|)" 1;
|
|
"~*(?:\b)adman\.gr(?:\b|)" 1;
|
|
"~*(?:\b)adman\.se(?:\b|)" 1;
|
|
"~*(?:\b)admatic\.com\.tr(?:\b|)" 1;
|
|
"~*(?:\b)admeasures\.com(?:\b|)" 1;
|
|
"~*(?:\b)adminshop\.com(?:\b|)" 1;
|
|
"~*(?:\b)admitad\.com(?:\b|)" 1;
|
|
"~*(?:\b)adnotbad\.com(?:\b|)" 1;
|
|
"~*(?:\b)adobereader\-free\.ru(?:\b|)" 1;
|
|
"~*(?:\b)adpremium\.org(?:\b|)" 1;
|
|
"~*(?:\b)adprotect\.net(?:\b|)" 1;
|
|
"~*(?:\b)adrenalin\-stk\.ru(?:\b|)" 1;
|
|
"~*(?:\b)adrunnr\.com(?:\b|)" 1;
|
|
"~*(?:\b)ads\-cool\.pro(?:\b|)" 1;
|
|
"~*(?:\b)adserver\-e7\.com(?:\b|)" 1;
|
|
"~*(?:\b)adservme\.com(?:\b|)" 1;
|
|
"~*(?:\b)adsfresh\.men(?:\b|)" 1;
|
|
"~*(?:\b)ads\.gold(?:\b|)" 1;
|
|
"~*(?:\b)adsland\.men(?:\b|)" 1;
|
|
"~*(?:\b)adsloads\.com(?:\b|)" 1;
|
|
"~*(?:\b)adsref\.men(?:\b|)" 1;
|
|
"~*(?:\b)adssafeprotected\.com(?:\b|)" 1;
|
|
"~*(?:\b)ads\-seo\.men(?:\b|)" 1;
|
|
"~*(?:\b)ads\.tremorhub\.com(?:\b|)" 1;
|
|
"~*(?:\b)adtech\.de(?:\b|)" 1;
|
|
"~*(?:\b)adtech\.fr(?:\b|)" 1;
|
|
"~*(?:\b)adtech\.us(?:\b|)" 1;
|
|
"~*(?:\b)adtiger\.tk(?:\b|)" 1;
|
|
"~*(?:\b)adtology\.com(?:\b|)" 1;
|
|
"~*(?:\b)adult3dgames\.com(?:\b|)" 1;
|
|
"~*(?:\b)adultactioncam\.com(?:\b|)" 1;
|
|
"~*(?:\b)adultfriendfinder\.com(?:\b|)" 1;
|
|
"~*(?:\b)adultfullhd\.com(?:\b|)" 1;
|
|
"~*(?:\b)adultgalls\.com(?:\b|)" 1;
|
|
"~*(?:\b)adultmeetonline\.info(?:\b|)" 1;
|
|
"~*(?:\b)adultnet\.in(?:\b|)" 1;
|
|
"~*(?:\b)adult\-shop\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)adultwebhosting\.info(?:\b|)" 1;
|
|
"~*(?:\b)advancedcleaner\.com(?:\b|)" 1;
|
|
"~*(?:\b)advancedmassagebysara\.com(?:\b|)" 1;
|
|
"~*(?:\b)advancedsoftwaresupport\.com(?:\b|)" 1;
|
|
"~*(?:\b)adventureparkcostarica\.com(?:\b|)" 1;
|
|
"~*(?:\b)adverster\.com(?:\b|)" 1;
|
|
"~*(?:\b)advertex\.info(?:\b|)" 1;
|
|
"~*(?:\b)advertisingtag\.net(?:\b|)" 1;
|
|
"~*(?:\b)adviceforum\.info(?:\b|)" 1;
|
|
"~*(?:\b)advocatemsk\.ru(?:\b|)" 1;
|
|
"~*(?:\b)advokateg\.ru(?:\b|)" 1;
|
|
"~*(?:\b)advokateg\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)advokat\-grodno\.by(?:\b|)" 1;
|
|
"~*(?:\b)ad\-words\.ru(?:\b|)" 1;
|
|
"~*(?:\b)adzerg\.com(?:\b|)" 1;
|
|
"~*(?:\b)adzpower\.com(?:\b|)" 1;
|
|
"~*(?:\b)aero2\.ru(?:\b|)" 1;
|
|
"~*(?:\b)aerogo\.com(?:\b|)" 1;
|
|
"~*(?:\b)affiliate\-fr\.com(?:\b|)" 1;
|
|
"~*(?:\b)affordablewebsitesandmobileapps\.com(?:\b|)" 1;
|
|
"~*(?:\b)affrh2015\.com(?:\b|)" 1;
|
|
"~*(?:\b)afftrack001\.com(?:\b|)" 1;
|
|
"~*(?:\b)afmuseum\.com(?:\b|)" 1;
|
|
"~*(?:\b)afora\.ru(?:\b|)" 1;
|
|
"~*(?:\b)a\.frcls\.fr(?:\b|)" 1;
|
|
"~*(?:\b)afslankpillen2017nl\.eu(?:\b|)" 1;
|
|
"~*(?:\b)agadelha\.com\.br(?:\b|)" 1;
|
|
"~*(?:\b)agahinameh\.com(?:\b|)" 1;
|
|
"~*(?:\b)agapovdg\.ru(?:\b|)" 1;
|
|
"~*(?:\b)agardomains\.com(?:\b|)" 1;
|
|
"~*(?:\b)agecheckadult\.com(?:\b|)" 1;
|
|
"~*(?:\b)aghanyna\.com(?:\b|)" 1;
|
|
"~*(?:\b)agreda\.pluto\.ro(?:\b|)" 1;
|
|
"~*(?:\b)agroeconom\.kz(?:\b|)" 1;
|
|
"~*(?:\b)agysya\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ahmedabadwebs\.com(?:\b|)" 1;
|
|
"~*(?:\b)ahrefs\.com(?:\b|)" 1;
|
|
"~*(?:\b)ahrntal\.verymes\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)aibolita\.com(?:\b|)" 1;
|
|
"~*(?:\b)aihelen\.net(?:\b|)" 1;
|
|
"~*(?:\b)aimayangzhi\.com(?:\b|)" 1;
|
|
"~*(?:\b)air\-edem\.ru(?:\b|)" 1;
|
|
"~*(?:\b)airlandsea\.info(?:\b|)" 1;
|
|
"~*(?:\b)airmaxshoes\-2016\.com(?:\b|)" 1;
|
|
"~*(?:\b)akama\.com(?:\b|)" 1;
|
|
"~*(?:\b)akita\.kz(?:\b|)" 1;
|
|
"~*(?:\b)aksonural\.ru(?:\b|)" 1;
|
|
"~*(?:\b)aktivator\-windows10\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)aktobe\.xkaz\.org(?:\b|)" 1;
|
|
"~*(?:\b)akuhni\.by(?:\b|)" 1;
|
|
"~*(?:\b)akusherok\.ru(?:\b|)" 1;
|
|
"~*(?:\b)akvamaster\.dp\.ua(?:\b|)" 1;
|
|
"~*(?:\b)alarmobninsk\.ru(?:\b|)" 1;
|
|
"~*(?:\b)albamargroup\.com(?:\b|)" 1;
|
|
"~*(?:\b)alborzan\.com(?:\b|)" 1;
|
|
"~*(?:\b)albumsuper\.info(?:\b|)" 1;
|
|
"~*(?:\b)albuteroli\.com(?:\b|)" 1;
|
|
"~*(?:\b)alekseevec\.ru(?:\b|)" 1;
|
|
"~*(?:\b)alert\-fdm\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)alert\-fjg\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)alert\-hgd\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)alert\-jdh\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)alert\.scansafe\.net(?:\b|)" 1;
|
|
"~*(?:\b)alessandraleone\.com(?:\b|)" 1;
|
|
"~*(?:\b)alevinefesleri\.com(?:\b|)" 1;
|
|
"~*(?:\b)alfa9\.com(?:\b|)" 1;
|
|
"~*(?:\b)alfabot\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)alfa\-img\.com(?:\b|)" 1;
|
|
"~*(?:\b)alfa\-medosmotr\.ru(?:\b|)" 1;
|
|
"~*(?:\b)alfapro\.ru(?:\b|)" 1;
|
|
"~*(?:\b)alf\-img\.com(?:\b|)" 1;
|
|
"~*(?:\b)algarveglobal\.com(?:\b|)" 1;
|
|
"~*(?:\b)algerianembassy\.co\.in(?:\b|)" 1;
|
|
"~*(?:\b)alibestsale\.com(?:\b|)" 1;
|
|
"~*(?:\b)alice\.it(?:\b|)" 1;
|
|
"~*(?:\b)alienwheel\.es(?:\b|)" 1;
|
|
"~*(?:\b)alienwheels\.de(?:\b|)" 1;
|
|
"~*(?:\b)aliexpresscashback\.club(?:\b|)" 1;
|
|
"~*(?:\b)aliexpress\.com(?:\b|)" 1;
|
|
"~*(?:\b)alif\-ba\-ta\.com(?:\b|)" 1;
|
|
"~*(?:\b)alive\-ua\.com(?:\b|)" 1;
|
|
"~*(?:\b)alkoravto\.ru(?:\b|)" 1;
|
|
"~*(?:\b)all4invest\.info(?:\b|)" 1;
|
|
"~*(?:\b)all4invest\.ru(?:\b|)" 1;
|
|
"~*(?:\b)all4wap\.ru(?:\b|)" 1;
|
|
"~*(?:\b)allbizne\.co\.ua(?:\b|)" 1;
|
|
"~*(?:\b)allblogroll\.com(?:\b|)" 1;
|
|
"~*(?:\b)allboard\.xobor\.de(?:\b|)" 1;
|
|
"~*(?:\b)allcredits\.su(?:\b|)" 1;
|
|
"~*(?:\b)alldezservice\.kz(?:\b|)" 1;
|
|
"~*(?:\b)alldownload\.pw(?:\b|)" 1;
|
|
"~*(?:\b)alldubai\.biz(?:\b|)" 1;
|
|
"~*(?:\b)allesohnegirls\.net(?:\b|)" 1;
|
|
"~*(?:\b)allfinweb\.com(?:\b|)" 1;
|
|
"~*(?:\b)allforminecraft\.ru(?:\b|)" 1;
|
|
"~*(?:\b)allknow\.info(?:\b|)" 1;
|
|
"~*(?:\b)allkrim\.com(?:\b|)" 1;
|
|
"~*(?:\b)allmarketsnewdayli\.gdn(?:\b|)" 1;
|
|
"~*(?:\b)allnews24\.in(?:\b|)" 1;
|
|
"~*(?:\b)allnews\.md(?:\b|)" 1;
|
|
"~*(?:\b)all\-number\.com(?:\b|)" 1;
|
|
"~*(?:\b)allornamenti\.com(?:\b|)" 1;
|
|
"~*(?:\b)alloysteel\.ru(?:\b|)" 1;
|
|
"~*(?:\b)allpdfmags\.net(?:\b|)" 1;
|
|
"~*(?:\b)allproblog\.com(?:\b|)" 1;
|
|
"~*(?:\b)allsilver925\.co\.il(?:\b|)" 1;
|
|
"~*(?:\b)allstatesugarbowl\.org(?:\b|)" 1;
|
|
"~*(?:\b)all\-streaming\-media\.com(?:\b|)" 1;
|
|
"~*(?:\b)alltheviews\.com(?:\b|)" 1;
|
|
"~*(?:\b)allwidewallpapers\.com(?:\b|)" 1;
|
|
"~*(?:\b)allwomen\.info(?:\b|)" 1;
|
|
"~*(?:\b)aloofly\.com(?:\b|)" 1;
|
|
"~*(?:\b)alot\.com(?:\b|)" 1;
|
|
"~*(?:\b)alphacarolinas\.com(?:\b|)" 1;
|
|
"~*(?:\b)alphaforum\.ru(?:\b|)" 1;
|
|
"~*(?:\b)alphahoverboards\.com(?:\b|)" 1;
|
|
"~*(?:\b)alpharma\.net(?:\b|)" 1;
|
|
"~*(?:\b)alphavisions\.net(?:\b|)" 1;
|
|
"~*(?:\b)alpinism\.ru(?:\b|)" 1;
|
|
"~*(?:\b)altamayoztourism\.com(?:\b|)" 1;
|
|
"~*(?:\b)alta\-realestate\.com(?:\b|)" 1;
|
|
"~*(?:\b)alt\-servis\.ru(?:\b|)" 1;
|
|
"~*(?:\b)aludecor\.info(?:\b|)" 1;
|
|
"~*(?:\b)alveris\.ru(?:\b|)" 1;
|
|
"~*(?:\b)alvtank\.se(?:\b|)" 1;
|
|
"~*(?:\b)alyeskaresort\.com(?:\b|)" 1;
|
|
"~*(?:\b)am15\.net(?:\b|)" 1;
|
|
"~*(?:\b)amanda\-porn\.ga(?:\b|)" 1;
|
|
"~*(?:\b)amateurgalls\.com(?:\b|)" 1;
|
|
"~*(?:\b)amateurlivechat\.org(?:\b|)" 1;
|
|
"~*(?:\b)amateurmatch\.com(?:\b|)" 1;
|
|
"~*(?:\b)amazingninja\.com(?:\b|)" 1;
|
|
"~*(?:\b)amazingpic\.net(?:\b|)" 1;
|
|
"~*(?:\b)amazon\-adsystem\.com(?:\b|)" 1;
|
|
"~*(?:\b)amazon\-seo\-service\.com(?:\b|)" 1;
|
|
"~*(?:\b)ameblo\.jp(?:\b|)" 1;
|
|
"~*(?:\b)amehdaily\.com(?:\b|)" 1;
|
|
"~*(?:\b)amigobulls\.com(?:\b|)" 1;
|
|
"~*(?:\b)amoi\.tn(?:\b|)" 1;
|
|
"~*(?:\b)amospalla\.es(?:\b|)" 1;
|
|
"~*(?:\b)ample\-awards\-today\.us(?:\b|)" 1;
|
|
"~*(?:\b)ampower\.me(?:\b|)" 1;
|
|
"~*(?:\b)am\-se\.com(?:\b|)" 1;
|
|
"~*(?:\b)amt\-k\.ru(?:\b|)" 1;
|
|
"~*(?:\b)amung\.us(?:\b|)" 1;
|
|
"~*(?:\b)amyfoxfitness\.com(?:\b|)" 1;
|
|
"~*(?:\b)anabolics\.shop(?:\b|)" 1;
|
|
"~*(?:\b)anaksma\.info(?:\b|)" 1;
|
|
"~*(?:\b)anal\-acrobats\.com(?:\b|)" 1;
|
|
"~*(?:\b)anal\-acrobats\.hol\.es(?:\b|)" 1;
|
|
"~*(?:\b)analytics\-ads\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)anapa\-inns\.ru(?:\b|)" 1;
|
|
"~*(?:\b)an\-donut\.com(?:\b|)" 1;
|
|
"~*(?:\b)andpolice\.com(?:\b|)" 1;
|
|
"~*(?:\b)android4fun\.org(?:\b|)" 1;
|
|
"~*(?:\b)androids\-store\.com(?:\b|)" 1;
|
|
"~*(?:\b)android\-style\.com(?:\b|)" 1;
|
|
"~*(?:\b)android\-systems\.ru(?:\b|)" 1;
|
|
"~*(?:\b)android\-vsem\.org(?:\b|)" 1;
|
|
"~*(?:\b)angel1777\.kz(?:\b|)" 1;
|
|
"~*(?:\b)angigreene\.com(?:\b|)" 1;
|
|
"~*(?:\b)angkortours\.vn(?:\b|)" 1;
|
|
"~*(?:\b)angry\-fermi\-7633\.arukascloud\.io(?:\b|)" 1;
|
|
"~*(?:\b)animal36\.com(?:\b|)" 1;
|
|
"~*(?:\b)animal\-drawings\.com(?:\b|)" 1;
|
|
"~*(?:\b)animalia\-life\.club(?:\b|)" 1;
|
|
"~*(?:\b)animali\.deagostinipassion\.it(?:\b|)" 1;
|
|
"~*(?:\b)animalrank\.com(?:\b|)" 1;
|
|
"~*(?:\b)animaltoplist\.com(?:\b|)" 1;
|
|
"~*(?:\b)animebox\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)anime\.dougasouko\.com(?:\b|)" 1;
|
|
"~*(?:\b)animenime\.ru(?:\b|)" 1;
|
|
"~*(?:\b)anjalika\.co\.in(?:\b|)" 1;
|
|
"~*(?:\b)anlimebel\.kiev\.ua(?:\b|)" 1;
|
|
"~*(?:\b)anmysite\.com(?:\b|)" 1;
|
|
"~*(?:\b)anniemation\.com(?:\b|)" 1;
|
|
"~*(?:\b)anonymizeme\.pro(?:\b|)" 1;
|
|
"~*(?:\b)anonymous\-redirect\.com(?:\b|)" 1;
|
|
"~*(?:\b)anticrawler\.org(?:\b|)" 1;
|
|
"~*(?:\b)anti\-virus\-removal\.info(?:\b|)" 1;
|
|
"~*(?:\b)antons\-transporte\.de(?:\b|)" 1;
|
|
"~*(?:\b)aosexkontakte\.net(?:\b|)" 1;
|
|
"~*(?:\b)aosheng\-tech\.com(?:\b|)" 1;
|
|
"~*(?:\b)apartamentwroclaw\.eu(?:\b|)" 1;
|
|
"~*(?:\b)apartmentbay\.ru(?:\b|)" 1;
|
|
"~*(?:\b)apartmentratings\.com(?:\b|)" 1;
|
|
"~*(?:\b)apartment\.ru(?:\b|)" 1;
|
|
"~*(?:\b)apccargo\.com(?:\b|)" 1;
|
|
"~*(?:\b)apelsinnik\.website(?:\b|)" 1;
|
|
"~*(?:\b)apessay\.com(?:\b|)" 1;
|
|
"~*(?:\b)apiadanaknet\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)apiallgeniusinfo\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)apiappenableinfo\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)apibatbrowsecom\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)apibetweenlinesn\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)apibrowsesmartne\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)apidiamondatanet\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)apidigidocketnet\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)apifasterlightin\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)apiholdingmypage\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)apiitsthirteende\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)apilinkswiftco\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)apiluckyleapnet\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)apimegabrowsebiz\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)apimossnetinfo\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)apimountainbikei\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)apioasisspacenet\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)apioutoboxnet\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)apiportalmorecom\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)apiqualitinknet\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)apisecretsaucebi\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)apishops\.ru(?:\b|)" 1;
|
|
"~*(?:\b)apispringsmartne\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)api\.stathat\.com(?:\b|)" 1;
|
|
"~*(?:\b)apiwebwebgetcom\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)apiwoodensealcom\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)app5\.letmacworkfaster\.world(?:\b|)" 1;
|
|
"~*(?:\b)apparel\-offer\.com(?:\b|)" 1;
|
|
"~*(?:\b)appartement\-stumm\.at(?:\b|)" 1;
|
|
"~*(?:\b)appearance\-cool\.com(?:\b|)" 1;
|
|
"~*(?:\b)apper\.de(?:\b|)" 1;
|
|
"~*(?:\b)appfastplay\.com(?:\b|)" 1;
|
|
"~*(?:\b)appfixing\.space(?:\b|)" 1;
|
|
"~*(?:\b)appiq\.mobi(?:\b|)" 1;
|
|
"~*(?:\b)apple\.com\-cleaner\.systems(?:\b|)" 1;
|
|
"~*(?:\b)apple\.com\-webbrowsing\-security\.review(?:\b|)" 1;
|
|
"~*(?:\b)apple\.com\-webbrowsing\-security\.science(?:\b|)" 1;
|
|
"~*(?:\b)appleid\-verification\.com(?:\b|)" 1;
|
|
"~*(?:\b)applicationg29\.com(?:\b|)" 1;
|
|
"~*(?:\b)applyneedy\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)app\-ready\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)approvedlocal\.co\.za(?:\b|)" 1;
|
|
"~*(?:\b)approved\.su(?:\b|)" 1;
|
|
"~*(?:\b)apps\-analytics\.net(?:\b|)" 1;
|
|
"~*(?:\b)appsaurus\.com(?:\b|)" 1;
|
|
"~*(?:\b)appsecurityr\.com(?:\b|)" 1;
|
|
"~*(?:\b)apptester\.tk(?:\b|)" 1;
|
|
"~*(?:\b)a\.pr\-cy\.ru(?:\b|)" 1;
|
|
"~*(?:\b)aproposde\.com(?:\b|)" 1;
|
|
"~*(?:\b)ap\.senai\.br(?:\b|)" 1;
|
|
"~*(?:\b)apxeo\.info(?:\b|)" 1;
|
|
"~*(?:\b)aquarium\-pro\.ru(?:\b|)" 1;
|
|
"~*(?:\b)arabgirls\.adultgalls\.com(?:\b|)" 1;
|
|
"~*(?:\b)arabsexxxtube\.com(?:\b|)" 1;
|
|
"~*(?:\b)arabseyes\.com(?:\b|)" 1;
|
|
"~*(?:\b)aramaicmedia\.org(?:\b|)" 1;
|
|
"~*(?:\b)arate\.ru(?:\b|)" 1;
|
|
"~*(?:\b)arcadepages\.com(?:\b|)" 1;
|
|
"~*(?:\b)arcadeplayhouse\.com(?:\b|)" 1;
|
|
"~*(?:\b)architecturebest\.com(?:\b|)" 1;
|
|
"~*(?:\b)arclk\.net(?:\b|)" 1;
|
|
"~*(?:\b)arcteryxsale\.online(?:\b|)" 1;
|
|
"~*(?:\b)arcteryxstore\.online(?:\b|)" 1;
|
|
"~*(?:\b)ardimobileinfo\.ml(?:\b|)" 1;
|
|
"~*(?:\b)arenanews\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)arenda\-avtoprokat\-krasnodar\.ru(?:\b|)" 1;
|
|
"~*(?:\b)arendakvartir\.kz(?:\b|)" 1;
|
|
"~*(?:\b)arendas\.net(?:\b|)" 1;
|
|
"~*(?:\b)arendatora\.ru(?:\b|)" 1;
|
|
"~*(?:\b)arenda\-yeisk\.ru(?:\b|)" 1;
|
|
"~*(?:\b)arendovalka\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)arewater\.com(?:\b|)" 1;
|
|
"~*(?:\b)arius\.tech(?:\b|)" 1;
|
|
"~*(?:\b)arkartex\.ru(?:\b|)" 1;
|
|
"~*(?:\b)arkkivoltti\.net(?:\b|)" 1;
|
|
"~*(?:\b)arpelsreplica\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)arquapetrarca\.info(?:\b|)" 1;
|
|
"~*(?:\b)arraty\.altervista\.org(?:\b|)" 1;
|
|
"~*(?:\b)artavenuegardenstudios\.com(?:\b|)" 1;
|
|
"~*(?:\b)artdeko\.info(?:\b|)" 1;
|
|
"~*(?:\b)artdestshop\.eu(?:\b|)" 1;
|
|
"~*(?:\b)artefakct\.com(?:\b|)" 1;
|
|
"~*(?:\b)artel116\.ru(?:\b|)" 1;
|
|
"~*(?:\b)articlesdirectoryme\.info(?:\b|)" 1;
|
|
"~*(?:\b)artparquet\.ru(?:\b|)" 1;
|
|
"~*(?:\b)artpicso\.com(?:\b|)" 1;
|
|
"~*(?:\b)aruplighting\.com(?:\b|)" 1;
|
|
"~*(?:\b)arvut\.org(?:\b|)" 1;
|
|
"~*(?:\b)as5000\.com(?:\b|)" 1;
|
|
"~*(?:\b)asacopaco\.tk(?:\b|)" 1;
|
|
"~*(?:\b)ascat\.porn(?:\b|)" 1;
|
|
"~*(?:\b)asdfg\.pro(?:\b|)" 1;
|
|
"~*(?:\b)asdfz\.pro(?:\b|)" 1;
|
|
"~*(?:\b)asia\-forum\.ru(?:\b|)" 1;
|
|
"~*(?:\b)asiavirtualsolutions\.com(?:\b|)" 1;
|
|
"~*(?:\b)asiengirls\.net(?:\b|)" 1;
|
|
"~*(?:\b)asmxsatadriverin\.aircus\.com(?:\b|)" 1;
|
|
"~*(?:\b)asociatia\-tipografilor\-transilvania\.ro(?:\b|)" 1;
|
|
"~*(?:\b)asophoto\.com(?:\b|)" 1;
|
|
"~*(?:\b)asrv\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)asrv\-a\.akamoihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)asrvrep\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)asrvvv\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)asscenihotosidea\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)asscenihotosidea\.blogspot\.co\.za(?:\b|)" 1;
|
|
"~*(?:\b)asseenontvonline\.ru(?:\b|)" 1;
|
|
"~*(?:\b)asseenontv\.ru(?:\b|)" 1;
|
|
"~*(?:\b)astana\.xxxkaz\.org(?:\b|)" 1;
|
|
"~*(?:\b)astrochicks\.com(?:\b|)" 1;
|
|
"~*(?:\b)atelielembrancaqueencanta\.com\.br(?:\b|)" 1;
|
|
"~*(?:\b)atlant\-auto\.info(?:\b|)" 1;
|
|
"~*(?:\b)atlasvkusov\.ru(?:\b|)" 1;
|
|
"~*(?:\b)atleticpharm\.org(?:\b|)" 1;
|
|
"~*(?:\b)atley\.eu\.pn(?:\b|)" 1;
|
|
"~*(?:\b)atmagroup\.ru(?:\b|)" 1;
|
|
"~*(?:\b)atmovs\.com(?:\b|)" 1;
|
|
"~*(?:\b)atofilms\.com(?:\b|)" 1;
|
|
"~*(?:\b)atout\-energie\-69\.com(?:\b|)" 1;
|
|
"~*(?:\b)atovh\.local\-finders\.com(?:\b|)" 1;
|
|
"~*(?:\b)audiobangout\.com(?:\b|)" 1;
|
|
"~*(?:\b)audiofree\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ausergrubhof\.info(?:\b|)" 1;
|
|
"~*(?:\b)ausmepa\.org\.au(?:\b|)" 1;
|
|
"~*(?:\b)auspolice\.com(?:\b|)" 1;
|
|
"~*(?:\b)aussie\-prizes\.com(?:\b|)" 1;
|
|
"~*(?:\b)australia\-opening\-times\.com(?:\b|)" 1;
|
|
"~*(?:\b)auto4style\.ru(?:\b|)" 1;
|
|
"~*(?:\b)autoblogger24\.info(?:\b|)" 1;
|
|
"~*(?:\b)autobrennero\.it(?:\b|)" 1;
|
|
"~*(?:\b)autobudpostach\.club(?:\b|)" 1;
|
|
"~*(?:\b)autochoixspinelli\.com(?:\b|)" 1;
|
|
"~*(?:\b)autodo\.info(?:\b|)" 1;
|
|
"~*(?:\b)autogrep\.ru(?:\b|)" 1;
|
|
"~*(?:\b)autoloans\.com(?:\b|)" 1;
|
|
"~*(?:\b)autolombard\-krasnodar\.ru(?:\b|)" 1;
|
|
"~*(?:\b)automatic\-seo\.com(?:\b|)" 1;
|
|
"~*(?:\b)auto\-moto\-elektronika\.cz(?:\b|)" 1;
|
|
"~*(?:\b)autonew\.biz(?:\b|)" 1;
|
|
"~*(?:\b)autoplate\.info(?:\b|)" 1;
|
|
"~*(?:\b)autorn\.ru(?:\b|)" 1;
|
|
"~*(?:\b)auto\.rusvile\.lt(?:\b|)" 1;
|
|
"~*(?:\b)autoseo\-traffic\.com(?:\b|)" 1;
|
|
"~*(?:\b)autotop\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)autotrends\.today(?:\b|)" 1;
|
|
"~*(?:\b)autoua\.top(?:\b|)" 1;
|
|
"~*(?:\b)autovideobroadcast\.com(?:\b|)" 1;
|
|
"~*(?:\b)autowebmarket\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)auto\-zapchasti\.org(?:\b|)" 1;
|
|
"~*(?:\b)availit\.weebly\.com(?:\b|)" 1;
|
|
"~*(?:\b)avek\.ru(?:\b|)" 1;
|
|
"~*(?:\b)aversis\.net(?:\b|)" 1;
|
|
"~*(?:\b)aviapanda\.ru(?:\b|)" 1;
|
|
"~*(?:\b)aviav\.co(?:\b|)" 1;
|
|
"~*(?:\b)aviav\.eu(?:\b|)" 1;
|
|
"~*(?:\b)aviav\.org(?:\b|)" 1;
|
|
"~*(?:\b)aviav\.ru(?:\b|)" 1;
|
|
"~*(?:\b)aviav\.ru\.com(?:\b|)" 1;
|
|
"~*(?:\b)avirasecureserver\.com(?:\b|)" 1;
|
|
"~*(?:\b)avitocars\.ru(?:\b|)" 1;
|
|
"~*(?:\b)aviva\-limoux\.com(?:\b|)" 1;
|
|
"~*(?:\b)avkzarabotok\.com(?:\b|)" 1;
|
|
"~*(?:\b)avkzarabotok\.info(?:\b|)" 1;
|
|
"~*(?:\b)avon\-novosib\.ru(?:\b|)" 1;
|
|
"~*(?:\b)avon\-severozapad\.ru(?:\b|)" 1;
|
|
"~*(?:\b)avon\-ukraine\.com(?:\b|)" 1;
|
|
"~*(?:\b)avramstroy\.ru(?:\b|)" 1;
|
|
"~*(?:\b)avtoarenda\.by(?:\b|)" 1;
|
|
"~*(?:\b)avtochehli\.by(?:\b|)" 1;
|
|
"~*(?:\b)avtocredit\-legko\.ru(?:\b|)" 1;
|
|
"~*(?:\b)avtointeres\.ru(?:\b|)" 1;
|
|
"~*(?:\b)avtolombard\-krasnodar\.com(?:\b|)" 1;
|
|
"~*(?:\b)avtolombard\-krasnodar\.ru(?:\b|)" 1;
|
|
"~*(?:\b)avto\-oligarh\.ru(?:\b|)" 1;
|
|
"~*(?:\b)avtovolop\.ru(?:\b|)" 1;
|
|
"~*(?:\b)awaybird\.ru(?:\b|)" 1;
|
|
"~*(?:\b)awency\.com(?:\b|)" 1;
|
|
"~*(?:\b)axbocz\.net(?:\b|)" 1;
|
|
"~*(?:\b)ayakino\.net(?:\b|)" 1;
|
|
"~*(?:\b)ayanaspa\.com(?:\b|)" 1;
|
|
"~*(?:\b)ayeartoforget\.com(?:\b|)" 1;
|
|
"~*(?:\b)ayerbo\.xhost\.ro(?:\b|)" 1;
|
|
"~*(?:\b)ayodhya\.co(?:\b|)" 1;
|
|
"~*(?:\b)azadnegar\.com(?:\b|)" 1;
|
|
"~*(?:\b)azartclub\.org(?:\b|)" 1;
|
|
"~*(?:\b)azartmix\.com(?:\b|)" 1;
|
|
"~*(?:\b)azartniy\-bonus\.com(?:\b|)" 1;
|
|
"~*(?:\b)azazaporn\.com(?:\b|)" 1;
|
|
"~*(?:\b)azazu\.ru(?:\b|)" 1;
|
|
"~*(?:\b)azbaseimages\.net(?:\b|)" 1;
|
|
"~*(?:\b)azbukadiets\.ru(?:\b|)" 1;
|
|
"~*(?:\b)azbukafree\.com(?:\b|)" 1;
|
|
"~*(?:\b)azbuka\-mo\.ru(?:\b|)" 1;
|
|
"~*(?:\b)azlex\.uz(?:\b|)" 1;
|
|
"~*(?:\b)azte\.ch(?:\b|)" 1;
|
|
"~*(?:\b)b00kmarks\.com(?:\b|)" 1;
|
|
"~*(?:\b)b2b\-lounge\.com(?:\b|)" 1;
|
|
"~*(?:\b)babespcs\.com(?:\b|)" 1;
|
|
"~*(?:\b)babieca\.com(?:\b|)" 1;
|
|
"~*(?:\b)bablonow\.ru(?:\b|)" 1;
|
|
"~*(?:\b)babosas\.com(?:\b|)" 1;
|
|
"~*(?:\b)babs\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)babyfactory\.fr(?:\b|)" 1;
|
|
"~*(?:\b)babyguns\.ru(?:\b|)" 1;
|
|
"~*(?:\b)back\.dog(?:\b|)" 1;
|
|
"~*(?:\b)backgroundpictures\.net(?:\b|)" 1;
|
|
"~*(?:\b)backlink4u\.net(?:\b|)" 1;
|
|
"~*(?:\b)backlinkwatch\.com(?:\b|)" 1;
|
|
"~*(?:\b)backuperwebcam\.weebly\.com(?:\b|)" 1;
|
|
"~*(?:\b)baditri\.com(?:\b|)" 1;
|
|
"~*(?:\b)bad\-stars\.net(?:\b|)" 1;
|
|
"~*(?:\b)baersaratov\.ru(?:\b|)" 1;
|
|
"~*(?:\b)bag77\.ru(?:\b|)" 1;
|
|
"~*(?:\b)bagcionderlab\.com(?:\b|)" 1;
|
|
"~*(?:\b)bagsonsale\.online(?:\b|)" 1;
|
|
"~*(?:\b)baikaleminer\.com(?:\b|)" 1;
|
|
"~*(?:\b)baixar\-musicas\-gratis\.com(?:\b|)" 1;
|
|
"~*(?:\b)baksman\.com(?:\b|)" 1;
|
|
"~*(?:\b)baladur\.ru(?:\b|)" 1;
|
|
"~*(?:\b)bala\.getenjoyment\.net(?:\b|)" 1;
|
|
"~*(?:\b)balans\.shahterworld\.org(?:\b|)" 1;
|
|
"~*(?:\b)balitouroffice\.com(?:\b|)" 1;
|
|
"~*(?:\b)balkanfarma\.org(?:\b|)" 1;
|
|
"~*(?:\b)balkanfarma\.ru(?:\b|)" 1;
|
|
"~*(?:\b)balla\-boo\.se(?:\b|)" 1;
|
|
"~*(?:\b)balois\.worldbreak\.com(?:\b|)" 1;
|
|
"~*(?:\b)balook\.com(?:\b|)" 1;
|
|
"~*(?:\b)baltgem\.com(?:\b|)" 1;
|
|
"~*(?:\b)bambi\.ck\.ua(?:\b|)" 1;
|
|
"~*(?:\b)bamo\.xsl\.pt(?:\b|)" 1;
|
|
"~*(?:\b)banan\.tv(?:\b|)" 1;
|
|
"~*(?:\b)bang\-hotties\.com(?:\b|)" 1;
|
|
"~*(?:\b)bangla\-chat\-uk\-paralud\.ga(?:\b|)" 1;
|
|
"~*(?:\b)bankcrediti\.ru(?:\b|)" 1;
|
|
"~*(?:\b)banki76\.ru(?:\b|)" 1;
|
|
"~*(?:\b)bankiem\.pl(?:\b|)" 1;
|
|
"~*(?:\b)bankmib\.ru(?:\b|)" 1;
|
|
"~*(?:\b)bankofthewext\.com(?:\b|)" 1;
|
|
"~*(?:\b)banksrf\.ru(?:\b|)" 1;
|
|
"~*(?:\b)bank\.uz(?:\b|)" 1;
|
|
"~*(?:\b)bannerads\.de(?:\b|)" 1;
|
|
"~*(?:\b)bannerbank\.ru(?:\b|)" 1;
|
|
"~*(?:\b)bannerconnect\.net(?:\b|)" 1;
|
|
"~*(?:\b)bannerpower\.com(?:\b|)" 1;
|
|
"~*(?:\b)bannerspace\.com(?:\b|)" 1;
|
|
"~*(?:\b)bannerswap\.com(?:\b|)" 1;
|
|
"~*(?:\b)bannertesting\.com(?:\b|)" 1;
|
|
"~*(?:\b)baoxaydung\.com\.vn(?:\b|)" 1;
|
|
"~*(?:\b)barbourjackets\.online(?:\b|)" 1;
|
|
"~*(?:\b)bard\-real\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)barnfurnituremart\.com(?:\b|)" 1;
|
|
"~*(?:\b)basedecor\.ru(?:\b|)" 1;
|
|
"~*(?:\b)bashtime\.ru(?:\b|)" 1;
|
|
"~*(?:\b)basisches\-wasser\.net(?:\b|)" 1;
|
|
"~*(?:\b)batanga\.net(?:\b|)" 1;
|
|
"~*(?:\b)battlecarnival\.su(?:\b|)" 1;
|
|
"~*(?:\b)battleforupdating\.site(?:\b|)" 1;
|
|
"~*(?:\b)battle\.net(?:\b|)" 1;
|
|
"~*(?:\b)bausparen\.bz\.it(?:\b|)" 1;
|
|
"~*(?:\b)bayareaaeroclub\.org(?:\b|)" 1;
|
|
"~*(?:\b)bazaronline24\.ru(?:\b|)" 1;
|
|
"~*(?:\b)bbsoldes\.fr(?:\b|)" 1;
|
|
"~*(?:\b)bbtec\.net(?:\b|)" 1;
|
|
"~*(?:\b)bcmp\.org(?:\b|)" 1;
|
|
"~*(?:\b)bdsmgalls\.net(?:\b|)" 1;
|
|
"~*(?:\b)beachdriveblog\.com(?:\b|)" 1;
|
|
"~*(?:\b)beachfix\.co(?:\b|)" 1;
|
|
"~*(?:\b)beachpics\.com(?:\b|)" 1;
|
|
"~*(?:\b)beachtoday\.ru(?:\b|)" 1;
|
|
"~*(?:\b)bear\.gotcher\.us(?:\b|)" 1;
|
|
"~*(?:\b)beatifullandscape\.co(?:\b|)" 1;
|
|
"~*(?:\b)beauby\.ru(?:\b|)" 1;
|
|
"~*(?:\b)beauty\-b0x\.pl(?:\b|)" 1;
|
|
"~*(?:\b)beauty\-bracelet\.com(?:\b|)" 1;
|
|
"~*(?:\b)beauty\-clinic\.ru(?:\b|)" 1;
|
|
"~*(?:\b)beauty\-things\.com(?:\b|)" 1;
|
|
"~*(?:\b)beclean\-nn\.ru(?:\b|)" 1;
|
|
"~*(?:\b)becuo\.com(?:\b|)" 1;
|
|
"~*(?:\b)bedandbreakfast\.com(?:\b|)" 1;
|
|
"~*(?:\b)bedcapdealers\.com(?:\b|)" 1;
|
|
"~*(?:\b)beetpics\.pw(?:\b|)" 1;
|
|
"~*(?:\b)begalka\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)beget\.tech(?:\b|)" 1;
|
|
"~*(?:\b)belinka\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)belinvestdom\.by(?:\b|)" 1;
|
|
"~*(?:\b)belstaffstore\.online(?:\b|)" 1;
|
|
"~*(?:\b)benchmarkcommunications\.co\.uk(?:\b|)" 1;
|
|
"~*(?:\b)bensbargains\.net(?:\b|)" 1;
|
|
"~*(?:\b)berdasovivan\.ru(?:\b|)" 1;
|
|
"~*(?:\b)beremenyashka\.com(?:\b|)" 1;
|
|
"~*(?:\b)berlininsl\.com(?:\b|)" 1;
|
|
"~*(?:\b)berrymall\.ru(?:\b|)" 1;
|
|
"~*(?:\b)bestadbid\.com(?:\b|)" 1;
|
|
"~*(?:\b)bestbrainprod\.win(?:\b|)" 1;
|
|
"~*(?:\b)best\-businessman\.ru(?:\b|)" 1;
|
|
"~*(?:\b)bestbuy\.ca(?:\b|)" 1;
|
|
"~*(?:\b)bestcalovebracelet\.cn(?:\b|)" 1;
|
|
"~*(?:\b)bestchoice\.cf(?:\b|)" 1;
|
|
"~*(?:\b)bestcoin\.cc(?:\b|)" 1;
|
|
"~*(?:\b)best\-coupon\-offer\.com(?:\b|)" 1;
|
|
"~*(?:\b)bestcurs\.org(?:\b|)" 1;
|
|
"~*(?:\b)best\-deals\-products\.com(?:\b|)" 1;
|
|
"~*(?:\b)bestdooz\.com(?:\b|)" 1;
|
|
"~*(?:\b)bestdraws\.com(?:\b|)" 1;
|
|
"~*(?:\b)bestempresas\.es(?:\b|)" 1;
|
|
"~*(?:\b)bestfortraders\.com(?:\b|)" 1;
|
|
"~*(?:\b)best\-games\.today(?:\b|)" 1;
|
|
"~*(?:\b)besthomemadepornsites\.com(?:\b|)" 1;
|
|
"~*(?:\b)besthoro\.ru(?:\b|)" 1;
|
|
"~*(?:\b)bestimagecoollibrary\.com(?:\b|)" 1;
|
|
"~*(?:\b)bestkfiledxd\.cf(?:\b|)" 1;
|
|
"~*(?:\b)best\-mam\.ru(?:\b|)" 1;
|
|
"~*(?:\b)bestmarriages\.com(?:\b|)" 1;
|
|
"~*(?:\b)bestmobilityscooterstoday\.com(?:\b|)" 1;
|
|
"~*(?:\b)bestofferswalkmydogouteveryday\.gq(?:\b|)" 1;
|
|
"~*(?:\b)bestofpicture\.com(?:\b|)" 1;
|
|
"~*(?:\b)bestofupload\.info(?:\b|)" 1;
|
|
"~*(?:\b)bestplacetobuyeriacta\.jw\.lt(?:\b|)" 1;
|
|
"~*(?:\b)bestpornuha\.com(?:\b|)" 1;
|
|
"~*(?:\b)bestpriceninja\.com(?:\b|)" 1;
|
|
"~*(?:\b)bestprofits\-there\.com(?:\b|)" 1;
|
|
"~*(?:\b)best\-seo\-offer\.com(?:\b|)" 1;
|
|
"~*(?:\b)best\-seo\-software\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)best\-seo\-solution\.com(?:\b|)" 1;
|
|
"~*(?:\b)bestserials\.com(?:\b|)" 1;
|
|
"~*(?:\b)bestsexyblog\.com(?:\b|)" 1;
|
|
"~*(?:\b)bestssaker\.com(?:\b|)" 1;
|
|
"~*(?:\b)besttorrentknifta\.weebly\.com(?:\b|)" 1;
|
|
"~*(?:\b)best\-way\.men(?:\b|)" 1;
|
|
"~*(?:\b)bestwaystogetpaid\.us(?:\b|)" 1;
|
|
"~*(?:\b)bestwebsiteawards\.com(?:\b|)" 1;
|
|
"~*(?:\b)bestwebsitesawards\.com(?:\b|)" 1;
|
|
"~*(?:\b)bestwrinklecreamnow\.com(?:\b|)" 1;
|
|
"~*(?:\b)bet365\.com(?:\b|)" 1;
|
|
"~*(?:\b)beta\.hotkeys\.com(?:\b|)" 1;
|
|
"~*(?:\b)betonka\.pro(?:\b|)" 1;
|
|
"~*(?:\b)bet\-prognoz\.com(?:\b|)" 1;
|
|
"~*(?:\b)betterhdporn\.com(?:\b|)" 1;
|
|
"~*(?:\b)betteroffers\.review(?:\b|)" 1;
|
|
"~*(?:\b)betterscooter\.com(?:\b|)" 1;
|
|
"~*(?:\b)betune\.onlinewebshop\.net(?:\b|)" 1;
|
|
"~*(?:\b)betwinservice\.com(?:\b|)" 1;
|
|
"~*(?:\b)beyan\.host\.sk(?:\b|)" 1;
|
|
"~*(?:\b)bezcmexa\.ru(?:\b|)" 1;
|
|
"~*(?:\b)bezlimitko\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)bezsporno\.ru(?:\b|)" 1;
|
|
"~*(?:\b)beztuberkuleza\.ru(?:\b|)" 1;
|
|
"~*(?:\b)bfz\.biz(?:\b|)" 1;
|
|
"~*(?:\b)bg6s0\.com(?:\b|)" 1;
|
|
"~*(?:\b)bget\.ru(?:\b|)" 1;
|
|
"~*(?:\b)bgviagrachrx\.com(?:\b|)" 1;
|
|
"~*(?:\b)bharatdefencekavach\.com(?:\b|)" 1;
|
|
"~*(?:\b)bibys\.com(?:\b|)" 1;
|
|
"~*(?:\b)bidbuy\.co\.kr(?:\b|)" 1;
|
|
"~*(?:\b)bidr\.trellian\.com(?:\b|)" 1;
|
|
"~*(?:\b)bif\-ru\.info(?:\b|)" 1;
|
|
"~*(?:\b)bigames\.online(?:\b|)" 1;
|
|
"~*(?:\b)big\-boards\.info(?:\b|)" 1;
|
|
"~*(?:\b)bigcareer\.info(?:\b|)" 1;
|
|
"~*(?:\b)big\-cash\.net(?:\b|)" 1;
|
|
"~*(?:\b)bigcities\.org(?:\b|)" 1;
|
|
"~*(?:\b)biglistofwebsites\.com(?:\b|)" 1;
|
|
"~*(?:\b)bigpenisguide\.com(?:\b|)" 1;
|
|
"~*(?:\b)bigpictures\.club(?:\b|)" 1;
|
|
"~*(?:\b)biketank\.ga(?:\b|)" 1;
|
|
"~*(?:\b)bikini\-image\.com(?:\b|)" 1;
|
|
"~*(?:\b)bildsuche\.ru(?:\b|)" 1;
|
|
"~*(?:\b)billiard\-classic\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)bimatoprost\-careprost\.com(?:\b|)" 1;
|
|
"~*(?:\b)bimatoprost\-careprost\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)binaryoptionscops\.info(?:\b|)" 1;
|
|
"~*(?:\b)bin\-brokers\.com(?:\b|)" 1;
|
|
"~*(?:\b)bingo8888\.com(?:\b|)" 1;
|
|
"~*(?:\b)bingoporno\.com(?:\b|)" 1;
|
|
"~*(?:\b)binomo\.com(?:\b|)" 1;
|
|
"~*(?:\b)binomo\.kz(?:\b|)" 1;
|
|
"~*(?:\b)bioca\.org(?:\b|)" 1;
|
|
"~*(?:\b)biographiya\.com(?:\b|)" 1;
|
|
"~*(?:\b)bioinnovate\.co(?:\b|)" 1;
|
|
"~*(?:\b)bio\-japan\.net(?:\b|)" 1;
|
|
"~*(?:\b)bio\-market\.kz(?:\b|)" 1;
|
|
"~*(?:\b)bio\-optomarket\.ru(?:\b|)" 1;
|
|
"~*(?:\b)bioscorp\.ru(?:\b|)" 1;
|
|
"~*(?:\b)bio\.trade\-jp\.net(?:\b|)" 1;
|
|
"~*(?:\b)bird1\.ru(?:\b|)" 1;
|
|
"~*(?:\b)birzha\-truda\.eu(?:\b|)" 1;
|
|
"~*(?:\b)bitcoinpile\.com(?:\b|)" 1;
|
|
"~*(?:\b)bitcoinremote\.com(?:\b|)" 1;
|
|
"~*(?:\b)bitcoins\-live\.ru(?:\b|)" 1;
|
|
"~*(?:\b)biteg\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)bitnote\.co(?:\b|)" 1;
|
|
"~*(?:\b)bitporno\.sx(?:\b|)" 1;
|
|
"~*(?:\b)bizcheapjerseyswholesalechina\.com(?:\b|)" 1;
|
|
"~*(?:\b)bizfly\.info(?:\b|)" 1;
|
|
"~*(?:\b)bizlist\.com\.de(?:\b|)" 1;
|
|
"~*(?:\b)biznesluxe\.ru(?:\b|)" 1;
|
|
"~*(?:\b)biznesrealnost\.ru(?:\b|)" 1;
|
|
"~*(?:\b)biznesschat\.net(?:\b|)" 1;
|
|
"~*(?:\b)bizru\.info(?:\b|)" 1;
|
|
"~*(?:\b)bjanshee\.ru(?:\b|)" 1;
|
|
"~*(?:\b)bjetjt\.com(?:\b|)" 1;
|
|
"~*(?:\b)bjgugu\.net\.ua(?:\b|)" 1;
|
|
"~*(?:\b)bjorkbacken\.nu(?:\b|)" 1;
|
|
"~*(?:\b)bkgr\.se(?:\b|)" 1;
|
|
"~*(?:\b)bkns\.vn(?:\b|)" 1;
|
|
"~*(?:\b)blackcurranthumidifiers\.site(?:\b|)" 1;
|
|
"~*(?:\b)blackhatworth\.com(?:\b|)" 1;
|
|
"~*(?:\b)blackle\.com(?:\b|)" 1;
|
|
"~*(?:\b)blackplanet\.com(?:\b|)" 1;
|
|
"~*(?:\b)blacktwhite\.com(?:\b|)" 1;
|
|
"~*(?:\b)blackwitchcraft\.ru(?:\b|)" 1;
|
|
"~*(?:\b)blagovest\-med\.ru(?:\b|)" 1;
|
|
"~*(?:\b)blavia\.00author\.com(?:\b|)" 1;
|
|
"~*(?:\b)blobar\.org(?:\b|)" 1;
|
|
"~*(?:\b)blockety\.co(?:\b|)" 1;
|
|
"~*(?:\b)blockworld\.ru(?:\b|)" 1;
|
|
"~*(?:\b)blog\.axant\.it(?:\b|)" 1;
|
|
"~*(?:\b)blog\.f00kclan\.de(?:\b|)" 1;
|
|
"~*(?:\b)bloggedporn\.com(?:\b|)" 1;
|
|
"~*(?:\b)bloggen\.be(?:\b|)" 1;
|
|
"~*(?:\b)bloggerads\.net(?:\b|)" 1;
|
|
"~*(?:\b)bloggers\.nl(?:\b|)" 1;
|
|
"~*(?:\b)blog\-hits\.com(?:\b|)" 1;
|
|
"~*(?:\b)blogig\.org(?:\b|)" 1;
|
|
"~*(?:\b)blog\.koorg\.ru(?:\b|)" 1;
|
|
"~*(?:\b)blog\.koreadaily\.com(?:\b|)" 1;
|
|
"~*(?:\b)bloglag\.com(?:\b|)" 1;
|
|
"~*(?:\b)blogos\.kz(?:\b|)" 1;
|
|
"~*(?:\b)blogporn\.in(?:\b|)" 1;
|
|
"~*(?:\b)blogqpot\.com(?:\b|)" 1;
|
|
"~*(?:\b)blogrankers\.com(?:\b|)" 1;
|
|
"~*(?:\b)blog\.remote\-computer\.de(?:\b|)" 1;
|
|
"~*(?:\b)blogsfunky672\.weebly\.com(?:\b|)" 1;
|
|
"~*(?:\b)blogs\.rediff\.com(?:\b|)" 1;
|
|
"~*(?:\b)blog\.yam\.com(?:\b|)" 1;
|
|
"~*(?:\b)bloke\.com(?:\b|)" 1;
|
|
"~*(?:\b)blpmovies\.com(?:\b|)" 1;
|
|
"~*(?:\b)bluejays\-jerseys\.us(?:\b|)" 1;
|
|
"~*(?:\b)bluerobot\.info(?:\b|)" 1;
|
|
"~*(?:\b)bluesalt\.co(?:\b|)" 1;
|
|
"~*(?:\b)bluesman\.nu(?:\b|)" 1;
|
|
"~*(?:\b)blue\-square\.biz(?:\b|)" 1;
|
|
"~*(?:\b)bmsco\.co(?:\b|)" 1;
|
|
"~*(?:\b)bmw\.afora\.ru(?:\b|)" 1;
|
|
"~*(?:\b)bmw\-ark\.ru(?:\b|)" 1;
|
|
"~*(?:\b)bmwhighperformers\.com(?:\b|)" 1;
|
|
"~*(?:\b)bnt\-team\.com(?:\b|)" 1;
|
|
"~*(?:\b)board\.f00d\.de(?:\b|)" 1;
|
|
"~*(?:\b)boazpower\.com(?:\b|)" 1;
|
|
"~*(?:\b)bobba\.dzaba\.com(?:\b|)" 1;
|
|
"~*(?:\b)bobinoz\.com(?:\b|)" 1;
|
|
"~*(?:\b)bochemit\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)boc\.kz(?:\b|)" 1;
|
|
"~*(?:\b)bocoarchives\.org(?:\b|)" 1;
|
|
"~*(?:\b)bodybuilding\-shop\.biz(?:\b|)" 1;
|
|
"~*(?:\b)boeuklad\.com(?:\b|)" 1;
|
|
"~*(?:\b)bolegapakistan\.com(?:\b|)" 1;
|
|
"~*(?:\b)boleznikogi\.com(?:\b|)" 1;
|
|
"~*(?:\b)bolezniorganov\.ru(?:\b|)" 1;
|
|
"~*(?:\b)bolitgorlo\.net(?:\b|)" 1;
|
|
"~*(?:\b)boltalko\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)bombla\.org(?:\b|)" 1;
|
|
"~*(?:\b)bonanza\-fortune\.men(?:\b|)" 1;
|
|
"~*(?:\b)bongacams\.com(?:\b|)" 1;
|
|
"~*(?:\b)bongiornos\.info(?:\b|)" 1;
|
|
"~*(?:\b)bonkers\.name(?:\b|)" 1;
|
|
"~*(?:\b)bonky\.biz(?:\b|)" 1;
|
|
"~*(?:\b)bonux\.nextview\.ru(?:\b|)" 1;
|
|
"~*(?:\b)bonvillan\.com(?:\b|)" 1;
|
|
"~*(?:\b)bonzbuddy\.com(?:\b|)" 1;
|
|
"~*(?:\b)bonzibuddi\.com(?:\b|)" 1;
|
|
"~*(?:\b)bonzybuddy\.com(?:\b|)" 1;
|
|
"~*(?:\b)boo\-arts\.com(?:\b|)" 1;
|
|
"~*(?:\b)boobsimge\.com(?:\b|)" 1;
|
|
"~*(?:\b)bookhome\.info(?:\b|)" 1;
|
|
"~*(?:\b)bookmaker\-bet\.com(?:\b|)" 1;
|
|
"~*(?:\b)bookmark4you\.com(?:\b|)" 1;
|
|
"~*(?:\b)bookmark4you\.com\.biz(?:\b|)" 1;
|
|
"~*(?:\b)boole\.onlinewebshop\.net(?:\b|)" 1;
|
|
"~*(?:\b)boostmyppc\.com(?:\b|)" 1;
|
|
"~*(?:\b)bosefux\.esy\.es(?:\b|)" 1;
|
|
"~*(?:\b)bosman\.pluto\.ro(?:\b|)" 1;
|
|
"~*(?:\b)bouda\.kvalitne\.cz(?:\b|)" 1;
|
|
"~*(?:\b)bpro1\.top(?:\b|)" 1;
|
|
"~*(?:\b)bracketsmackdown\.com(?:\b|)" 1;
|
|
"~*(?:\b)brainboosting\.club(?:\b|)" 1;
|
|
"~*(?:\b)brainboostingsupplements\.org(?:\b|)" 1;
|
|
"~*(?:\b)braindaily\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)brains2\.biz(?:\b|)" 1;
|
|
"~*(?:\b)brainsandeggs\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)braintobe\.win(?:\b|)" 1;
|
|
"~*(?:\b)brainxs\.us(?:\b|)" 1;
|
|
"~*(?:\b)brainzpod\.win(?:\b|)" 1;
|
|
"~*(?:\b)braip\.com\.br(?:\b|)" 1;
|
|
"~*(?:\b)brakehawk\.com(?:\b|)" 1;
|
|
"~*(?:\b)brandbucket\.com(?:\b|)" 1;
|
|
"~*(?:\b)brandedleadgeneration\.com(?:\b|)" 1;
|
|
"~*(?:\b)brandehk\.dk(?:\b|)" 1;
|
|
"~*(?:\b)brandov\.ru(?:\b|)" 1;
|
|
"~*(?:\b)brateg\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)bravegirlsclub\.com(?:\b|)" 1;
|
|
"~*(?:\b)break\-the\-chains\.com(?:\b|)" 1;
|
|
"~*(?:\b)breastaugmentation\.co\.za(?:\b|)" 1;
|
|
"~*(?:\b)breget74\.ru(?:\b|)" 1;
|
|
"~*(?:\b)brendbutik\.ru(?:\b|)" 1;
|
|
"~*(?:\b)brewdom\.ru(?:\b|)" 1;
|
|
"~*(?:\b)brg8\.com(?:\b|)" 1;
|
|
"~*(?:\b)brianhenry\.co(?:\b|)" 1;
|
|
"~*(?:\b)brillianty\.info(?:\b|)" 1;
|
|
"~*(?:\b)brimstonehillfortress\.org(?:\b|)" 1;
|
|
"~*(?:\b)briomotor\.co(?:\b|)" 1;
|
|
"~*(?:\b)bristolhostel\.com(?:\b|)" 1;
|
|
"~*(?:\b)bristolhotel\.com(?:\b|)" 1;
|
|
"~*(?:\b)bristolhotel\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)brk\-rti\.ru(?:\b|)" 1;
|
|
"~*(?:\b)brokergid\.ru(?:\b|)" 1;
|
|
"~*(?:\b)bronzeaid\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)brothers\-smaller\.ru(?:\b|)" 1;
|
|
"~*(?:\b)browsepulse\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)browserprotecter\.com(?:\b|)" 1;
|
|
"~*(?:\b)brus\.city(?:\b|)" 1;
|
|
"~*(?:\b)brus\-vsem\.ru(?:\b|)" 1;
|
|
"~*(?:\b)bryansk\.zrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)bscodecs\.com(?:\b|)" 1;
|
|
"~*(?:\b)b\-styles\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)btc4u\.ru(?:\b|)" 1;
|
|
"~*(?:\b)btnativenav\.com(?:\b|)" 1;
|
|
"~*(?:\b)btvn\.ru(?:\b|)" 1;
|
|
"~*(?:\b)buchananshardware\.com(?:\b|)" 1;
|
|
"~*(?:\b)buckspar\.gq(?:\b|)" 1;
|
|
"~*(?:\b)budilneg\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)budpost\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)buehne\-fuer\-menschenrechte\.de(?:\b|)" 1;
|
|
"~*(?:\b)bugof\.gq(?:\b|)" 1;
|
|
"~*(?:\b)buigas\.00it\.com(?:\b|)" 1;
|
|
"~*(?:\b)builtwith\.com(?:\b|)" 1;
|
|
"~*(?:\b)buketeg\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)bukleteg\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)bumascloset\.com(?:\b|)" 1;
|
|
"~*(?:\b)bumble\.cheapwebsitehoster\.com(?:\b|)" 1;
|
|
"~*(?:\b)bum\.com\.ru(?:\b|)" 1;
|
|
"~*(?:\b)bumskontakte\.org(?:\b|)" 1;
|
|
"~*(?:\b)buntube\.net(?:\b|)" 1;
|
|
"~*(?:\b)bupropion\-sr\-150\-mg\.us(?:\b|)" 1;
|
|
"~*(?:\b)buqayy0\.livejournal\.com(?:\b|)" 1;
|
|
"~*(?:\b)buqyxa\.rincian\.info(?:\b|)" 1;
|
|
"~*(?:\b)burger\-imperia\.com(?:\b|)" 1;
|
|
"~*(?:\b)burger\-tycoon\.com(?:\b|)" 1;
|
|
"~*(?:\b)burkesales\.com(?:\b|)" 1;
|
|
"~*(?:\b)burn\-fat\.ga(?:\b|)" 1;
|
|
"~*(?:\b)buron\.pw(?:\b|)" 1;
|
|
"~*(?:\b)businescoop\.men(?:\b|)" 1;
|
|
"~*(?:\b)businesn\.men(?:\b|)" 1;
|
|
"~*(?:\b)business\-made\-fun\.com(?:\b|)" 1;
|
|
"~*(?:\b)business\-suggested\.tk(?:\b|)" 1;
|
|
"~*(?:\b)businesxxl\.com(?:\b|)" 1;
|
|
"~*(?:\b)bus\-offer\.com(?:\b|)" 1;
|
|
"~*(?:\b)butstrap\.space(?:\b|)" 1;
|
|
"~*(?:\b)buttons\-for\-website\.com(?:\b|)" 1;
|
|
"~*(?:\b)buttons\-for\-your\-website\.com(?:\b|)" 1;
|
|
"~*(?:\b)buyantiviralwp\.com(?:\b|)" 1;
|
|
"~*(?:\b)buybest1\.biz(?:\b|)" 1;
|
|
"~*(?:\b)buy\-cheap\-online\.info(?:\b|)" 1;
|
|
"~*(?:\b)buy\-cheap\-pills\-order\-online\.com(?:\b|)" 1;
|
|
"~*(?:\b)buyclomidonlaine\.com(?:\b|)" 1;
|
|
"~*(?:\b)buydissertation\.net(?:\b|)" 1;
|
|
"~*(?:\b)buyessay3\.blogspot\.ru(?:\b|)" 1;
|
|
"~*(?:\b)buyessaynow\.biz(?:\b|)" 1;
|
|
"~*(?:\b)buyessayonline19\.blogspot\.ru(?:\b|)" 1;
|
|
"~*(?:\b)buy\-forum\.ru(?:\b|)" 1;
|
|
"~*(?:\b)buyfriend\.ru(?:\b|)" 1;
|
|
"~*(?:\b)buyhoverboard\.com(?:\b|)" 1;
|
|
"~*(?:\b)buyk\.host\.sk(?:\b|)" 1;
|
|
"~*(?:\b)buy\-loft\.ru(?:\b|)" 1;
|
|
"~*(?:\b)buy\-meds24\.com(?:\b|)" 1;
|
|
"~*(?:\b)buynorxx\.com(?:\b|)" 1;
|
|
"~*(?:\b)buypanicdisorderpill\.com(?:\b|)" 1;
|
|
"~*(?:\b)buyparajumpers\.online(?:\b|)" 1;
|
|
"~*(?:\b)buypillsorderonline\.com(?:\b|)" 1;
|
|
"~*(?:\b)buypuppies\.ca(?:\b|)" 1;
|
|
"~*(?:\b)buyscabiescream\.com(?:\b|)" 1;
|
|
"~*(?:\b)buytizanidineonline\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)buytizanidineonlinenoprescription\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)buyviagraa\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)buzzonclick\.com(?:\b|)" 1;
|
|
"~*(?:\b)buzz\-porno\.info(?:\b|)" 1;
|
|
"~*(?:\b)buzzsumo\.com(?:\b|)" 1;
|
|
"~*(?:\b)buzzurl\.jp(?:\b|)" 1;
|
|
"~*(?:\b)buzzzg\.men(?:\b|)" 1;
|
|
"~*(?:\b)bvlgaribracelet\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)bvlgariring\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)bvlgariwallet\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)bwlx\.prepedu\.cn(?:\b|)" 1;
|
|
"~*(?:\b)bycontext\.com(?:\b|)" 1;
|
|
"~*(?:\b)byme\.se(?:\b|)" 1;
|
|
"~*(?:\b)bytimedance\.ru(?:\b|)" 1;
|
|
"~*(?:\b)bzero1jewelry\.net(?:\b|)" 1;
|
|
"~*(?:\b)c1\.onedmp\.com(?:\b|)" 1;
|
|
"~*(?:\b)cablecar\.us(?:\b|)" 1;
|
|
"~*(?:\b)cacheimages\.com(?:\b|)" 1;
|
|
"~*(?:\b)cactussoft\.biz(?:\b|)" 1;
|
|
"~*(?:\b)cakemediahq\.com\.au(?:\b|)" 1;
|
|
"~*(?:\b)cakesplus\.com\.au(?:\b|)" 1;
|
|
"~*(?:\b)calc\-for\-credit\.ru(?:\b|)" 1;
|
|
"~*(?:\b)calcularpagerank\.com(?:\b|)" 1;
|
|
"~*(?:\b)californianews\.cf(?:\b|)" 1;
|
|
"~*(?:\b)callawaygolfoutlet\.online(?:\b|)" 1;
|
|
"~*(?:\b)callawaygolfstore\.online(?:\b|)" 1;
|
|
"~*(?:\b)callcafe\.info(?:\b|)" 1;
|
|
"~*(?:\b)callejondelpozo\.es(?:\b|)" 1;
|
|
"~*(?:\b)callmd5map\.com(?:\b|)" 1;
|
|
"~*(?:\b)call\-of\-duty\.info(?:\b|)" 1;
|
|
"~*(?:\b)callstevens\.com(?:\b|)" 1;
|
|
"~*(?:\b)calstaterealty\.us(?:\b|)" 1;
|
|
"~*(?:\b)calvet\.altervista\.org(?:\b|)" 1;
|
|
"~*(?:\b)camdenmemorials\.com(?:\b|)" 1;
|
|
"~*(?:\b)camdolls\.com(?:\b|)" 1;
|
|
"~*(?:\b)camel\-beach\.com(?:\b|)" 1;
|
|
"~*(?:\b)cam\-kontakte\.org(?:\b|)" 1;
|
|
"~*(?:\b)camsex\.xxx\-cam\.webcam(?:\b|)" 1;
|
|
"~*(?:\b)canacopegdl\.com(?:\b|)" 1;
|
|
"~*(?:\b)candcstuccoandstone\.com(?:\b|)" 1;
|
|
"~*(?:\b)candelluxsklep\.pl(?:\b|)" 1;
|
|
"~*(?:\b)candiceloves\.us(?:\b|)" 1;
|
|
"~*(?:\b)cand\.jp(?:\b|)" 1;
|
|
"~*(?:\b)candlehandmade\.com(?:\b|)" 1;
|
|
"~*(?:\b)candlewooddentalcentre\.com\.au(?:\b|)" 1;
|
|
"~*(?:\b)candycrushshop\.com(?:\b|)" 1;
|
|
"~*(?:\b)candy\-glam\-hp\.com(?:\b|)" 1;
|
|
"~*(?:\b)candypeople\.se(?:\b|)" 1;
|
|
"~*(?:\b)candytiner\.com(?:\b|)" 1;
|
|
"~*(?:\b)canoncdriverq3\.pen\.io(?:\b|)" 1;
|
|
"~*(?:\b)canrioloadm\.gq(?:\b|)" 1;
|
|
"~*(?:\b)canrole\.com(?:\b|)" 1;
|
|
"~*(?:\b)canvas\.gloverid\.site(?:\b|)" 1;
|
|
"~*(?:\b)canyougethighofftizanidine\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)canzoni\.ru(?:\b|)" 1;
|
|
"~*(?:\b)capacitacionyaprendizaje\.com(?:\b|)" 1;
|
|
"~*(?:\b)capture\-room\.com(?:\b|)" 1;
|
|
"~*(?:\b)carabela\.com\.do(?:\b|)" 1;
|
|
"~*(?:\b)carapics\.com(?:\b|)" 1;
|
|
"~*(?:\b)cardiosport\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)cardsdumps\.com(?:\b|)" 1;
|
|
"~*(?:\b)cardsharp1\.ru(?:\b|)" 1;
|
|
"~*(?:\b)cardul\.ru(?:\b|)" 1;
|
|
"~*(?:\b)carfax\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)carina\-sy\.de(?:\b|)" 1;
|
|
"~*(?:\b)carloans\.com(?:\b|)" 1;
|
|
"~*(?:\b)carmuffler\.net(?:\b|)" 1;
|
|
"~*(?:\b)carrauterie\.be(?:\b|)" 1;
|
|
"~*(?:\b)carsdined\.org(?:\b|)" 1;
|
|
"~*(?:\b)cars\-modification\.net(?:\b|)" 1;
|
|
"~*(?:\b)carson\.getenjoyment\.net(?:\b|)" 1;
|
|
"~*(?:\b)carsplate\.com(?:\b|)" 1;
|
|
"~*(?:\b)carstrends2015\.com(?:\b|)" 1;
|
|
"~*(?:\b)cartechnic\.ru(?:\b|)" 1;
|
|
"~*(?:\b)cartierbraceletsreplica\.pw(?:\b|)" 1;
|
|
"~*(?:\b)cartierbracelet\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)cartierjusteunclou\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)cartierlove2u\.com(?:\b|)" 1;
|
|
"~*(?:\b)cartierlove2u\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)cartierlovebraceletreplica\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)cartierlovebracelet\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)cartierloveringreplica\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)cartierlovestore\.com(?:\b|)" 1;
|
|
"~*(?:\b)cartierlovestore\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)cartierlove\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)cartierreplica\.pw(?:\b|)" 1;
|
|
"~*(?:\b)cartierreplica\.top(?:\b|)" 1;
|
|
"~*(?:\b)cartierreplica\.win(?:\b|)" 1;
|
|
"~*(?:\b)cartierreplica\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)cartierring\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)cartiertrinity\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)cartierwatch\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)cartujano\-pre\.de(?:\b|)" 1;
|
|
"~*(?:\b)casablancamanor\.co\.za(?:\b|)" 1;
|
|
"~*(?:\b)cascadelink\.org(?:\b|)" 1;
|
|
"~*(?:\b)cashkitten\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)cashonads\.com(?:\b|)" 1;
|
|
"~*(?:\b)casinorewards\.info(?:\b|)" 1;
|
|
"~*(?:\b)casinos4dummies\.co\.uk(?:\b|)" 1;
|
|
"~*(?:\b)casite\-513049\.cloudaccess\.net(?:\b|)" 1;
|
|
"~*(?:\b)castingbank\.ru(?:\b|)" 1;
|
|
"~*(?:\b)catalogs\-parts\.com(?:\b|)" 1;
|
|
"~*(?:\b)caulderwoodkennels\.com(?:\b|)" 1;
|
|
"~*(?:\b)caveavins\.fr(?:\b|)" 1;
|
|
"~*(?:\b)cayado\.snn\.gr(?:\b|)" 1;
|
|
"~*(?:\b)cbb1smartlist12\.click(?:\b|)" 1;
|
|
"~*(?:\b)cbcseward\.com(?:\b|)" 1;
|
|
"~*(?:\b)cb\.iphantom\.com(?:\b|)" 1;
|
|
"~*(?:\b)cbox\.ws(?:\b|)" 1;
|
|
"~*(?:\b)cbozhe\.com(?:\b|)" 1;
|
|
"~*(?:\b)ccbill\.com(?:\b|)" 1;
|
|
"~*(?:\b)ccjp\.eu(?:\b|)" 1;
|
|
"~*(?:\b)cctva\.tv(?:\b|)" 1;
|
|
"~*(?:\b)cdnanalytics\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)cdncash\.com(?:\b|)" 1;
|
|
"~*(?:\b)cdncash\.net(?:\b|)" 1;
|
|
"~*(?:\b)cdncash\.org(?:\b|)" 1;
|
|
"~*(?:\b)cdnnetwok\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)cdn\.walkme\.com(?:\b|)" 1;
|
|
"~*(?:\b)cejewelry\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)celebsopics\.com(?:\b|)" 1;
|
|
"~*(?:\b)celejihad\.info(?:\b|)" 1;
|
|
"~*(?:\b)cellfun\.mobi(?:\b|)" 1;
|
|
"~*(?:\b)cementaresearch\.se(?:\b|)" 1;
|
|
"~*(?:\b)c\-english\.ru(?:\b|)" 1;
|
|
"~*(?:\b)cenokos\.ru(?:\b|)" 1;
|
|
"~*(?:\b)cenoval\.ru(?:\b|)" 1;
|
|
"~*(?:\b)centraletermice\.us(?:\b|)" 1;
|
|
"~*(?:\b)centrdebut\.ru(?:\b|)" 1;
|
|
"~*(?:\b)centre\-indigo\.org\.ua(?:\b|)" 1;
|
|
"~*(?:\b)centrumcoachingu\.com(?:\b|)" 1;
|
|
"~*(?:\b)ceotrk\.com(?:\b|)" 1;
|
|
"~*(?:\b)cercacamion\.it(?:\b|)" 1;
|
|
"~*(?:\b)cerev\.info(?:\b|)" 1;
|
|
"~*(?:\b)cete\.ru(?:\b|)" 1;
|
|
"~*(?:\b)cezartabac\.ro(?:\b|)" 1;
|
|
"~*(?:\b)cfacarrosserie74\.com(?:\b|)" 1;
|
|
"~*(?:\b)cfcl\.co\.uk(?:\b|)" 1;
|
|
"~*(?:\b)cfjump\.com(?:\b|)" 1;
|
|
"~*(?:\b)cfsrating\.sonicwall\.com(?:\b|)" 1;
|
|
"~*(?:\b)c\-gainsbourg\.com(?:\b|)" 1;
|
|
"~*(?:\b)cgi2\.nintendo\.co\.jp(?:\b|)" 1;
|
|
"~*(?:\b)changde\.58\.com(?:\b|)" 1;
|
|
"~*(?:\b)charmstroy\.info(?:\b|)" 1;
|
|
"~*(?:\b)chastnoeporno\.com(?:\b|)" 1;
|
|
"~*(?:\b)chatroulette\.life(?:\b|)" 1;
|
|
"~*(?:\b)chatroulette\.online(?:\b|)" 1;
|
|
"~*(?:\b)chatroulette\.si(?:\b|)" 1;
|
|
"~*(?:\b)chatroulette\.video(?:\b|)" 1;
|
|
"~*(?:\b)chatroulette\.world(?:\b|)" 1;
|
|
"~*(?:\b)chatseo\.com(?:\b|)" 1;
|
|
"~*(?:\b)chcu\.net(?:\b|)" 1;
|
|
"~*(?:\b)cheapbarbour\.online(?:\b|)" 1;
|
|
"~*(?:\b)cheapbelstaff\.online(?:\b|)" 1;
|
|
"~*(?:\b)cheapcigarettesc\.info(?:\b|)" 1;
|
|
"~*(?:\b)cheapestjerseysonwholesale\.com(?:\b|)" 1;
|
|
"~*(?:\b)cheapestjerseys\-wholesale\.com(?:\b|)" 1;
|
|
"~*(?:\b)cheapjerseysa\.com(?:\b|)" 1;
|
|
"~*(?:\b)cheapjerseysap\.com(?:\b|)" 1;
|
|
"~*(?:\b)cheapjerseysbizwholesale\.us(?:\b|)" 1;
|
|
"~*(?:\b)cheapjerseysfootballshop\.com(?:\b|)" 1;
|
|
"~*(?:\b)cheapmarmot\.online(?:\b|)" 1;
|
|
"~*(?:\b)cheapmoncler\.pw(?:\b|)" 1;
|
|
"~*(?:\b)cheapmoncler\.win(?:\b|)" 1;
|
|
"~*(?:\b)cheapmoncler\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)cheap\-pills\-norx\.com(?:\b|)" 1;
|
|
"~*(?:\b)cheapsergiorossi\.online(?:\b|)" 1;
|
|
"~*(?:\b)cheap\-trusted\-backlinks\.com(?:\b|)" 1;
|
|
"~*(?:\b)cheapwebsitehoster\.com(?:\b|)" 1;
|
|
"~*(?:\b)cheatcode\-lita12\.rhcloud\.com(?:\b|)" 1;
|
|
"~*(?:\b)checkhit\.com(?:\b|)" 1;
|
|
"~*(?:\b)check\-host\.net(?:\b|)" 1;
|
|
"~*(?:\b)checkm8\.com(?:\b|)" 1;
|
|
"~*(?:\b)checkpagerank\.net(?:\b|)" 1;
|
|
"~*(?:\b)checktext\.org(?:\b|)" 1;
|
|
"~*(?:\b)chee\-by\.biz(?:\b|)" 1;
|
|
"~*(?:\b)chelnytruck\.ru(?:\b|)" 1;
|
|
"~*(?:\b)chelyabinsk\.xrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)cherrypointplace\.ca(?:\b|)" 1;
|
|
"~*(?:\b)cherubinimobili\.it(?:\b|)" 1;
|
|
"~*(?:\b)chiblackhawks\-jerseys\.com(?:\b|)" 1;
|
|
"~*(?:\b)chidporn\.com(?:\b|)" 1;
|
|
"~*(?:\b)children\-learningreading\.info(?:\b|)" 1;
|
|
"~*(?:\b)chimiver\.info(?:\b|)" 1;
|
|
"~*(?:\b)chinacheapelitejerseys\.com(?:\b|)" 1;
|
|
"~*(?:\b)chinaelitecheapjerseys\.com(?:\b|)" 1;
|
|
"~*(?:\b)chinajerseyswholesalecoupons\.com(?:\b|)" 1;
|
|
"~*(?:\b)chinese\-amezon\.com(?:\b|)" 1;
|
|
"~*(?:\b)chiptuninger\.com(?:\b|)" 1;
|
|
"~*(?:\b)chlooe\.com(?:\b|)" 1;
|
|
"~*(?:\b)chocolateslim\-en\-espana\.com(?:\b|)" 1;
|
|
"~*(?:\b)chocolateslim\-en\-france\.com(?:\b|)" 1;
|
|
"~*(?:\b)chocolateslim\-original\.com(?:\b|)" 1;
|
|
"~*(?:\b)chocolateslim\-u\-srbiji\.com(?:\b|)" 1;
|
|
"~*(?:\b)chocoslim\.pro(?:\b|)" 1;
|
|
"~*(?:\b)choice\-credit\.ru(?:\b|)" 1;
|
|
"~*(?:\b)choosecuisine\.com(?:\b|)" 1;
|
|
"~*(?:\b)chorus\.terakeet\.com(?:\b|)" 1;
|
|
"~*(?:\b)christianlouboutinoutlet\.win(?:\b|)" 1;
|
|
"~*(?:\b)christianlouboutinreplica\.pw(?:\b|)" 1;
|
|
"~*(?:\b)christianlouboutinreplica\.win(?:\b|)" 1;
|
|
"~*(?:\b)christianlouboutinsaleonline\.us(?:\b|)" 1;
|
|
"~*(?:\b)christianlouboutinsaleoutletonline\.us(?:\b|)" 1;
|
|
"~*(?:\b)christianlouboutinshoes\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)chuckguilford\.com(?:\b|)" 1;
|
|
"~*(?:\b)cialgenisrx\.com(?:\b|)" 1;
|
|
"~*(?:\b)cialischmrx\.com(?:\b|)" 1;
|
|
"~*(?:\b)cialischsrx\.com(?:\b|)" 1;
|
|
"~*(?:\b)cialischstgerts\.com(?:\b|)" 1;
|
|
"~*(?:\b)cialisovercounteratwalmartusa\.com(?:\b|)" 1;
|
|
"~*(?:\b)cialis\-samples\.com(?:\b|)" 1;
|
|
"~*(?:\b)cialiswithoutadoctor\.net(?:\b|)" 1;
|
|
"~*(?:\b)cibpenonptib\.flu\.cc(?:\b|)" 1;
|
|
"~*(?:\b)cicaki\.net(?:\b|)" 1;
|
|
"~*(?:\b)ciceros\.co(?:\b|)" 1;
|
|
"~*(?:\b)ciekawinki\.pl(?:\b|)" 1;
|
|
"~*(?:\b)cienum\.fr(?:\b|)" 1;
|
|
"~*(?:\b)cigarpass\.com(?:\b|)" 1;
|
|
"~*(?:\b)cindymatches\.com(?:\b|)" 1;
|
|
"~*(?:\b)cineacademy\.ru(?:\b|)" 1;
|
|
"~*(?:\b)cinemaenergy\-hd\.ru(?:\b|)" 1;
|
|
"~*(?:\b)cinemaflix\.website(?:\b|)" 1;
|
|
"~*(?:\b)ciproandtizanidine\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)circlesl\.com(?:\b|)" 1;
|
|
"~*(?:\b)citetick\.com(?:\b|)" 1;
|
|
"~*(?:\b)citizenclsdriveri7\.pen\.io(?:\b|)" 1;
|
|
"~*(?:\b)cityadspix\.com(?:\b|)" 1;
|
|
"~*(?:\b)citysecurity\.nu(?:\b|)" 1;
|
|
"~*(?:\b)ci\.ua(?:\b|)" 1;
|
|
"~*(?:\b)civilwartheater\.com(?:\b|)" 1;
|
|
"~*(?:\b)cjmc\.info(?:\b|)" 1;
|
|
"~*(?:\b)cjs\.com\.ru(?:\b|)" 1;
|
|
"~*(?:\b)clarithromycin500mg\.com(?:\b|)" 1;
|
|
"~*(?:\b)clash\-clans\.ru(?:\b|)" 1;
|
|
"~*(?:\b)classicakuhni\.ru(?:\b|)" 1;
|
|
"~*(?:\b)classiquebijoux\.ru(?:\b|)" 1;
|
|
"~*(?:\b)claytransformations\.info(?:\b|)" 1;
|
|
"~*(?:\b)clayvasedesigns\.tk(?:\b|)" 1;
|
|
"~*(?:\b)cleanallspyware\.com(?:\b|)" 1;
|
|
"~*(?:\b)cleanallvirus\.com(?:\b|)" 1;
|
|
"~*(?:\b)cleanersoft\.com(?:\b|)" 1;
|
|
"~*(?:\b)cleanmypc\.com(?:\b|)" 1;
|
|
"~*(?:\b)cleanpcnow\.com(?:\b|)" 1;
|
|
"~*(?:\b)cleansearch\.net(?:\b|)" 1;
|
|
"~*(?:\b)clean\-start\.net(?:\b|)" 1;
|
|
"~*(?:\b)clean\-virus\-mac\.com(?:\b|)" 1;
|
|
"~*(?:\b)clevernt\.com(?:\b|)" 1;
|
|
"~*(?:\b)click2pawn\.com(?:\b|)" 1;
|
|
"~*(?:\b)clickaider\.com(?:\b|)" 1;
|
|
"~*(?:\b)clickbank\.net(?:\b|)" 1;
|
|
"~*(?:\b)clickbanksites\.info(?:\b|)" 1;
|
|
"~*(?:\b)clickcash\.com(?:\b|)" 1;
|
|
"~*(?:\b)clickhype\.com(?:\b|)" 1;
|
|
"~*(?:\b)clickintext\.net(?:\b|)" 1;
|
|
"~*(?:\b)clickpapa\.com(?:\b|)" 1;
|
|
"~*(?:\b)clickprotects\.com(?:\b|)" 1;
|
|
"~*(?:\b)clickso\.com(?:\b|)" 1;
|
|
"~*(?:\b)clicksor\.com(?:\b|)" 1;
|
|
"~*(?:\b)clicksor\.net(?:\b|)" 1;
|
|
"~*(?:\b)clicksotrk\.com(?:\b|)" 1;
|
|
"~*(?:\b)clickzzs\.nl(?:\b|)" 1;
|
|
"~*(?:\b)clipartnew\.com(?:\b|)" 1;
|
|
"~*(?:\b)clippingphotoindia\.com(?:\b|)" 1;
|
|
"~*(?:\b)clips\.ua\.ac\.be(?:\b|)" 1;
|
|
"~*(?:\b)clknsee\.com(?:\b|)" 1;
|
|
"~*(?:\b)clksite\.com(?:\b|)" 1;
|
|
"~*(?:\b)clmforexeu\.com(?:\b|)" 1;
|
|
"~*(?:\b)clodo\.ru(?:\b|)" 1;
|
|
"~*(?:\b)clothesforcash\.com(?:\b|)" 1;
|
|
"~*(?:\b)cl\.s7\.exct\.net(?:\b|)" 1;
|
|
"~*(?:\b)clubfashionista\.com(?:\b|)" 1;
|
|
"~*(?:\b)club\-lukojl\.ru(?:\b|)" 1;
|
|
"~*(?:\b)club\-musics\.ru(?:\b|)" 1;
|
|
"~*(?:\b)club\-samodelkin\.ru(?:\b|)" 1;
|
|
"~*(?:\b)cmd\.kz(?:\b|)" 1;
|
|
"~*(?:\b)cmhomestayagency\.com(?:\b|)" 1;
|
|
"~*(?:\b)cntravelre\.com(?:\b|)" 1;
|
|
"~*(?:\b)coaching\-netz\.info(?:\b|)" 1;
|
|
"~*(?:\b)cobaltpro\.ru(?:\b|)" 1;
|
|
"~*(?:\b)cocyq\.inwtrade\.com(?:\b|)" 1;
|
|
"~*(?:\b)coderstate\.com(?:\b|)" 1;
|
|
"~*(?:\b)codq\.info(?:\b|)" 1;
|
|
"~*(?:\b)codysbbq\.com(?:\b|)" 1;
|
|
"~*(?:\b)cognitiveseo\.com(?:\b|)" 1;
|
|
"~*(?:\b)coindirect\.io(?:\b|)" 1;
|
|
"~*(?:\b)coin\-hive\.com(?:\b|)" 1;
|
|
"~*(?:\b)coinsspb\.com(?:\b|)" 1;
|
|
"~*(?:\b)coldfilm\.ru(?:\b|)" 1;
|
|
"~*(?:\b)colehaanoutlet\.store(?:\b|)" 1;
|
|
"~*(?:\b)collegeessay19\.blogspot\.ru(?:\b|)" 1;
|
|
"~*(?:\b)collegerentals\.com(?:\b|)" 1;
|
|
"~*(?:\b)colobit\.biz(?:\b|)" 1;
|
|
"~*(?:\b)co\.lumb\.co(?:\b|)" 1;
|
|
"~*(?:\b)com\-cleaner\.systems(?:\b|)" 1;
|
|
"~*(?:\b)comeondog\.info(?:\b|)" 1;
|
|
"~*(?:\b)cometorussia\.net(?:\b|)" 1;
|
|
"~*(?:\b)comissionka\.net(?:\b|)" 1;
|
|
"~*(?:\b)communisave\.co\.za(?:\b|)" 1;
|
|
"~*(?:\b)community\.allhiphop\.com(?:\b|)" 1;
|
|
"~*(?:\b)com\-onlinesupport\.host(?:\b|)" 1;
|
|
"~*(?:\b)com\-onlinesupport\.site(?:\b|)" 1;
|
|
"~*(?:\b)companies\-catalog\.com(?:\b|)" 1;
|
|
"~*(?:\b)compiko\.info(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-alexa\.top(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-alexa\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-alex\.top(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-alex\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-andrew\.top(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-andrew\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-barak\.top(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-barak\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-brian\.top(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-brian\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-checker\-7\.info(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-checker\.info(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-donald\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-don\.top(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-don\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-elena\.top(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-elena\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-fred\.top(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-fred\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-george\.top(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-george\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-irvin\.top(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-irvin\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-ivan\.top(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-ivan\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-jack\.top(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-jane\.top(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-jessica\.top(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-jess\.top(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-john\.top(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-josh\.top(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-julianna\.top(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-julia\.top(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-margo\.top(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-mark\.top(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-mary\.top(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-nelson\.top(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-olga\.top(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-viktor\.top(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-walter\.top(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-walt\.top(?:\b|)" 1;
|
|
"~*(?:\b)compliance\-willy\.top(?:\b|)" 1;
|
|
"~*(?:\b)compucelunlock\.net(?:\b|)" 1;
|
|
"~*(?:\b)computernetworksonline\.com(?:\b|)" 1;
|
|
"~*(?:\b)com\-secure\.download(?:\b|)" 1;
|
|
"~*(?:\b)com\-supportcenter\.website(?:\b|)" 1;
|
|
"~*(?:\b)comsysnet\.com(?:\b|)" 1;
|
|
"~*(?:\b)conboy\.us(?:\b|)" 1;
|
|
"~*(?:\b)concealthyself\.com(?:\b|)" 1;
|
|
"~*(?:\b)conciergegroup\.org(?:\b|)" 1;
|
|
"~*(?:\b)concordexoticrentals\.com(?:\b|)" 1;
|
|
"~*(?:\b)confib\.ifmo\.ru(?:\b|)" 1;
|
|
"~*(?:\b)connectingsingles\.com(?:\b|)" 1;
|
|
"~*(?:\b)connectionstrenth\.com(?:\b|)" 1;
|
|
"~*(?:\b)conocer\-sanabria\.com(?:\b|)" 1;
|
|
"~*(?:\b)consorzioilmosaico\.org(?:\b|)" 1;
|
|
"~*(?:\b)constantaservice\.net(?:\b|)" 1;
|
|
"~*(?:\b)construmac\.com\.mx(?:\b|)" 1;
|
|
"~*(?:\b)contentlook\.co(?:\b|)" 1;
|
|
"~*(?:\b)contentsexpress\.com(?:\b|)" 1;
|
|
"~*(?:\b)contextualyield\.com(?:\b|)" 1;
|
|
"~*(?:\b)continent\-e\.tv(?:\b|)" 1;
|
|
"~*(?:\b)converse\.ddsoldes\.fr(?:\b|)" 1;
|
|
"~*(?:\b)cookielawblog\.wordpress\.com(?:\b|)" 1;
|
|
"~*(?:\b)cookie\-law\-enforcement\-aa\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)cookie\-law\-enforcement\-ee\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)cookie\-law\-enforcement\-ff\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)cookie\-law\-enforcement\-hh\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)cookingmeat\.ru(?:\b|)" 1;
|
|
"~*(?:\b)coolbar\.pro(?:\b|)" 1;
|
|
"~*(?:\b)coolgamechannel\.com(?:\b|)" 1;
|
|
"~*(?:\b)coolgramgoods\.com(?:\b|)" 1;
|
|
"~*(?:\b)coolingoods\.com(?:\b|)" 1;
|
|
"~*(?:\b)coolwallpapers\-hd\.com(?:\b|)" 1;
|
|
"~*(?:\b)cool\-wedding\.net(?:\b|)" 1;
|
|
"~*(?:\b)coolyarddecorations\.com(?:\b|)" 1;
|
|
"~*(?:\b)coop\-gamers\.ru(?:\b|)" 1;
|
|
"~*(?:\b)copblock\.org(?:\b|)" 1;
|
|
"~*(?:\b)copenergo\.ru(?:\b|)" 1;
|
|
"~*(?:\b)coprofam\.org(?:\b|)" 1;
|
|
"~*(?:\b)copro\.pw(?:\b|)" 1;
|
|
"~*(?:\b)copypaste\.traderzplanet\.in(?:\b|)" 1;
|
|
"~*(?:\b)copyrightclaims\.org(?:\b|)" 1;
|
|
"~*(?:\b)cordstrap\.cc(?:\b|)" 1;
|
|
"~*(?:\b)cornerstone\-countertops\.com(?:\b|)" 1;
|
|
"~*(?:\b)cornomase\.win(?:\b|)" 1;
|
|
"~*(?:\b)corta\.co(?:\b|)" 1;
|
|
"~*(?:\b)coslab\.club(?:\b|)" 1;
|
|
"~*(?:\b)cosmetic\.donna7753191\.ru(?:\b|)" 1;
|
|
"~*(?:\b)cosmeticswomens\-womensports\.rhcloud\.com(?:\b|)" 1;
|
|
"~*(?:\b)cottageofgrace\.com(?:\b|)" 1;
|
|
"~*(?:\b)cougfan\.info(?:\b|)" 1;
|
|
"~*(?:\b)counciltally\.com(?:\b|)" 1;
|
|
"~*(?:\b)countbertwistdisp26\.soup\.io(?:\b|)" 1;
|
|
"~*(?:\b)counter\.bloke\.com(?:\b|)" 1;
|
|
"~*(?:\b)counterbot\.com(?:\b|)" 1;
|
|
"~*(?:\b)countercrazy\.com(?:\b|)" 1;
|
|
"~*(?:\b)counter\.yadro\.ru(?:\b|)" 1;
|
|
"~*(?:\b)country\-chic\.ru(?:\b|)" 1;
|
|
"~*(?:\b)courtshipgift\.com(?:\b|)" 1;
|
|
"~*(?:\b)covadhosting\.biz(?:\b|)" 1;
|
|
"~*(?:\b)covetnica\.com(?:\b|)" 1;
|
|
"~*(?:\b)cowblog\.fr(?:\b|)" 1;
|
|
"~*(?:\b)cowlmash\.com(?:\b|)" 1;
|
|
"~*(?:\b)cpabegins\.ru(?:\b|)" 1;
|
|
"~*(?:\b)cpajunkies\.com(?:\b|)" 1;
|
|
"~*(?:\b)crackguru\.tk(?:\b|)" 1;
|
|
"~*(?:\b)cracksplanet\.com(?:\b|)" 1;
|
|
"~*(?:\b)crackzplanet\.com(?:\b|)" 1;
|
|
"~*(?:\b)craftburg\.ru(?:\b|)" 1;
|
|
"~*(?:\b)crafthubs\.com(?:\b|)" 1;
|
|
"~*(?:\b)craftinsta\.ru(?:\b|)" 1;
|
|
"~*(?:\b)cranly\.net(?:\b|)" 1;
|
|
"~*(?:\b)crazyboost\.pro(?:\b|)" 1;
|
|
"~*(?:\b)crazyprotocol\.com(?:\b|)" 1;
|
|
"~*(?:\b)crd\.clan\.su(?:\b|)" 1;
|
|
"~*(?:\b)creams\.makeforum\.eu(?:\b|)" 1;
|
|
"~*(?:\b)creativehutindia\.com(?:\b|)" 1;
|
|
"~*(?:\b)creatives\.adbetclickin\.pink(?:\b|)" 1;
|
|
"~*(?:\b)creditmoney\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)creditnation\.ru(?:\b|)" 1;
|
|
"~*(?:\b)credit\-respect\.ru(?:\b|)" 1;
|
|
"~*(?:\b)creditwell\.ru(?:\b|)" 1;
|
|
"~*(?:\b)crest3d\.ru(?:\b|)" 1;
|
|
"~*(?:\b)crest\-poloski\.ru(?:\b|)" 1;
|
|
"~*(?:\b)crirussian\.ru(?:\b|)" 1;
|
|
"~*(?:\b)crynet\.cc(?:\b|)" 1;
|
|
"~*(?:\b)cryptoswap\.biz(?:\b|)" 1;
|
|
"~*(?:\b)crystalslot\.com(?:\b|)" 1;
|
|
"~*(?:\b)cscwtalkto\.site(?:\b|)" 1;
|
|
"~*(?:\b)csgo4\.win(?:\b|)" 1;
|
|
"~*(?:\b)cs\-passion\.pl(?:\b|)" 1;
|
|
"~*(?:\b)cubook\.supernew\.org(?:\b|)" 1;
|
|
"~*(?:\b)cubs\-jerseys\.us(?:\b|)" 1;
|
|
"~*(?:\b)culad\.com(?:\b|)" 1;
|
|
"~*(?:\b)culmimg\.pw(?:\b|)" 1;
|
|
"~*(?:\b)culturevie\.info(?:\b|)" 1;
|
|
"~*(?:\b)cupday\.com(?:\b|)" 1;
|
|
"~*(?:\b)custodieva\.ru(?:\b|)" 1;
|
|
"~*(?:\b)customboxes4less\.com(?:\b|)" 1;
|
|
"~*(?:\b)customcatchcan\.com(?:\b|)" 1;
|
|
"~*(?:\b)customchocolate\.business\-for\-home\.com(?:\b|)" 1;
|
|
"~*(?:\b)customcollegeessays\.net(?:\b|)" 1;
|
|
"~*(?:\b)custom\-electric\-guitar\.com(?:\b|)" 1;
|
|
"~*(?:\b)customergrowthsystems\.com(?:\b|)" 1;
|
|
"~*(?:\b)customerguru\.in(?:\b|)" 1;
|
|
"~*(?:\b)customerpromos\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)custom\-product\-labels\.com(?:\b|)" 1;
|
|
"~*(?:\b)customsua\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)cutalltheshit\.com(?:\b|)" 1;
|
|
"~*(?:\b)cvety24\.by(?:\b|)" 1;
|
|
"~*(?:\b)cv\.wallhade\.co(?:\b|)" 1;
|
|
"~*(?:\b)cxpromote\.com(?:\b|)" 1;
|
|
"~*(?:\b)cyclobenzaprinevstizanidine\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)cymbaltaandtizanidine\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)cypernhuset\.se(?:\b|)" 1;
|
|
"~*(?:\b)cyprusbuyproperties\.com(?:\b|)" 1;
|
|
"~*(?:\b)cyse\.tk(?:\b|)" 1;
|
|
"~*(?:\b)czat\.wp\.pl(?:\b|)" 1;
|
|
"~*(?:\b)czeshop\.info(?:\b|)" 1;
|
|
"~*(?:\b)d0t\.ru(?:\b|)" 1;
|
|
"~*(?:\b)d2jsp\.org(?:\b|)" 1;
|
|
"~*(?:\b)dafatiri\.com(?:\b|)" 1;
|
|
"~*(?:\b)dailyfinancefix\.com(?:\b|)" 1;
|
|
"~*(?:\b)dailyrank\.net(?:\b|)" 1;
|
|
"~*(?:\b)dailystrength\.org(?:\b|)" 1;
|
|
"~*(?:\b)dairyindia\.in(?:\b|)" 1;
|
|
"~*(?:\b)daisye\.top(?:\b|)" 1;
|
|
"~*(?:\b)dalavia\.ru(?:\b|)" 1;
|
|
"~*(?:\b)damasarenai\.info(?:\b|)" 1;
|
|
"~*(?:\b)damedingel\.ya\.ru(?:\b|)" 1;
|
|
"~*(?:\b)dame\-ns\.kz(?:\b|)" 1;
|
|
"~*(?:\b)danashop\.ru(?:\b|)" 1;
|
|
"~*(?:\b)danceuniverse\.ru(?:\b|)" 1;
|
|
"~*(?:\b)dandiyabeats\.in(?:\b|)" 1;
|
|
"~*(?:\b)daneshetabiat\.com(?:\b|)" 1;
|
|
"~*(?:\b)dangphoto\.trade(?:\b|)" 1;
|
|
"~*(?:\b)danschawbel\.com(?:\b|)" 1;
|
|
"~*(?:\b)daooda\.com(?:\b|)" 1;
|
|
"~*(?:\b)daptravel\.com(?:\b|)" 1;
|
|
"~*(?:\b)daretodonate\.co(?:\b|)" 1;
|
|
"~*(?:\b)darkages\.info(?:\b|)" 1;
|
|
"~*(?:\b)darkbooks\.org(?:\b|)" 1;
|
|
"~*(?:\b)darmebel\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)darodar\.com(?:\b|)" 1;
|
|
"~*(?:\b)data1\.scopich\.com(?:\b|)" 1;
|
|
"~*(?:\b)dataloading\.net(?:\b|)" 1;
|
|
"~*(?:\b)data\-mining\.tk(?:\b|)" 1;
|
|
"~*(?:\b)data\.vtc\.pw(?:\b|)" 1;
|
|
"~*(?:\b)date\-withme\.com(?:\b|)" 1;
|
|
"~*(?:\b)dating\-app\.ru(?:\b|)" 1;
|
|
"~*(?:\b)dating\-time\-now\.com(?:\b|)" 1;
|
|
"~*(?:\b)datract\.com(?:\b|)" 1;
|
|
"~*(?:\b)datsun\-do\.com(?:\b|)" 1;
|
|
"~*(?:\b)davebestdeals\.com(?:\b|)" 1;
|
|
"~*(?:\b)davidovic\.info(?:\b|)" 1;
|
|
"~*(?:\b)dawlenie\.com(?:\b|)" 1;
|
|
"~*(?:\b)daydream\-studio\.ru(?:\b|)" 1;
|
|
"~*(?:\b)dayibiao\.com(?:\b|)" 1;
|
|
"~*(?:\b)daymusam\.com(?:\b|)" 1;
|
|
"~*(?:\b)day\-news\.info(?:\b|)" 1;
|
|
"~*(?:\b)d\-black\.bz(?:\b|)" 1;
|
|
"~*(?:\b)dbmkfhqk\.bloger\.index\.hr(?:\b|)" 1;
|
|
"~*(?:\b)db\.speedup\.gdn(?:\b|)" 1;
|
|
"~*(?:\b)dcj\-nn\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ddlmega\.net(?:\b|)" 1;
|
|
"~*(?:\b)ddospanel\.com(?:\b|)" 1;
|
|
"~*(?:\b)ddpills\.com(?:\b|)" 1;
|
|
"~*(?:\b)ddsoldes\.fr(?:\b|)" 1;
|
|
"~*(?:\b)deadlinkchecker\.com(?:\b|)" 1;
|
|
"~*(?:\b)dealighted\.com(?:\b|)" 1;
|
|
"~*(?:\b)dealitright\.click(?:\b|)" 1;
|
|
"~*(?:\b)dealwifi\.com(?:\b|)" 1;
|
|
"~*(?:\b)deanmoore\.ie(?:\b|)" 1;
|
|
"~*(?:\b)dear\-diary\.ru(?:\b|)" 1;
|
|
"~*(?:\b)decenttools\.com(?:\b|)" 1;
|
|
"~*(?:\b)decoratinghomes\.ga(?:\b|)" 1;
|
|
"~*(?:\b)decorationspcs\.com(?:\b|)" 1;
|
|
"~*(?:\b)decorazilla\.com(?:\b|)" 1;
|
|
"~*(?:\b)deda\-moroza\-zakaz\.ru(?:\b|)" 1;
|
|
"~*(?:\b)defenderxtactical\.com(?:\b|)" 1;
|
|
"~*(?:\b)degerlund\.net(?:\b|)" 1;
|
|
"~*(?:\b)dekoration\.us(?:\b|)" 1;
|
|
"~*(?:\b)dekorkeramik\.ru(?:\b|)" 1;
|
|
"~*(?:\b)delayreferat\.ru(?:\b|)" 1;
|
|
"~*(?:\b)delfin\-aqua\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)delitime\.info(?:\b|)" 1;
|
|
"~*(?:\b)dellalimov\.com(?:\b|)" 1;
|
|
"~*(?:\b)delta\-line\.men(?:\b|)" 1;
|
|
"~*(?:\b)deluxedumps\.com(?:\b|)" 1;
|
|
"~*(?:\b)demenageur\.com(?:\b|)" 1;
|
|
"~*(?:\b)demian\.kz(?:\b|)" 1;
|
|
"~*(?:\b)dengi\-pod\-zalog\-nedvizhimosti\.ru(?:\b|)" 1;
|
|
"~*(?:\b)deniven\.1bb\.ru(?:\b|)" 1;
|
|
"~*(?:\b)den\-noch24\.ru(?:\b|)" 1;
|
|
"~*(?:\b)dentalpearls\.com\.au(?:\b|)" 1;
|
|
"~*(?:\b)deplim\.com(?:\b|)" 1;
|
|
"~*(?:\b)depositfiles\-porn\.ga(?:\b|)" 1;
|
|
"~*(?:\b)derevesendeco\.com(?:\b|)" 1;
|
|
"~*(?:\b)descargar\-musica\-gratis\.net(?:\b|)" 1;
|
|
"~*(?:\b)deshevo\-nedorogo\.ru(?:\b|)" 1;
|
|
"~*(?:\b)designdevise\.com(?:\b|)" 1;
|
|
"~*(?:\b)design\-ideas\.info(?:\b|)" 1;
|
|
"~*(?:\b)design\-lands\.ru(?:\b|)" 1;
|
|
"~*(?:\b)destinationrealestate\.com(?:\b|)" 1;
|
|
"~*(?:\b)detalizaciya\-tut\.biz(?:\b|)" 1;
|
|
"~*(?:\b)detective01\.ru(?:\b|)" 1;
|
|
"~*(?:\b)detki\-opt\.ru(?:\b|)" 1;
|
|
"~*(?:\b)detmebel\.su(?:\b|)" 1;
|
|
"~*(?:\b)detskie\-konstruktory\.ru(?:\b|)" 1;
|
|
"~*(?:\b)detskie\-zabavi\.ru(?:\b|)" 1;
|
|
"~*(?:\b)detsky\-nabytek\.info(?:\b|)" 1;
|
|
"~*(?:\b)deutschehobbyhuren\.net(?:\b|)" 1;
|
|
"~*(?:\b)deutschland123\.de(?:\b|)" 1;
|
|
"~*(?:\b)dev33\.dioniqlabb\.se(?:\b|)" 1;
|
|
"~*(?:\b)dev78\.dioniqlabb\.se(?:\b|)" 1;
|
|
"~*(?:\b)dev\.citetick\.com(?:\b|)" 1;
|
|
"~*(?:\b)devochki\.top(?:\b|)" 1;
|
|
"~*(?:\b)dev\-seo\.blog(?:\b|)" 1;
|
|
"~*(?:\b)de\.zapmeta\.com(?:\b|)" 1;
|
|
"~*(?:\b)dfiles\.me(?:\b|)" 1;
|
|
"~*(?:\b)dfwu1013\.info(?:\b|)" 1;
|
|
"~*(?:\b)dfwu1019\.info(?:\b|)" 1;
|
|
"~*(?:\b)dgfitness\.co(?:\b|)" 1;
|
|
"~*(?:\b)diamond\-necklace\.info(?:\b|)" 1;
|
|
"~*(?:\b)diarioaconcagua\.com(?:\b|)" 1;
|
|
"~*(?:\b)dichvuvesinhhanoi\.com(?:\b|)" 1;
|
|
"~*(?:\b)dickssportinggoods\.com(?:\b|)" 1;
|
|
"~*(?:\b)diegolopezcastan\.com(?:\b|)" 1;
|
|
"~*(?:\b)diesel\-parts28\.ru(?:\b|)" 1;
|
|
"~*(?:\b)dieswaene\.com(?:\b|)" 1;
|
|
"~*(?:\b)dieta\-personalna\.pl(?:\b|)" 1;
|
|
"~*(?:\b)diffbot\.com(?:\b|)" 1;
|
|
"~*(?:\b)digest\-project\.ru(?:\b|)" 1;
|
|
"~*(?:\b)digilander\.libero\.it(?:\b|)" 1;
|
|
"~*(?:\b)digitalassetmanagement\.site(?:\b|)" 1;
|
|
"~*(?:\b)digitalfaq\.com(?:\b|)" 1;
|
|
"~*(?:\b)digital\-sale\.su(?:\b|)" 1;
|
|
"~*(?:\b)digital\-video\-processing\.com(?:\b|)" 1;
|
|
"~*(?:\b)dignitasdata\.se(?:\b|)" 1;
|
|
"~*(?:\b)dikqlyremy\.info(?:\b|)" 1;
|
|
"~*(?:\b)dikx\.gdn(?:\b|)" 1;
|
|
"~*(?:\b)dildofotzen\.net(?:\b|)" 1;
|
|
"~*(?:\b)dimaka\.info(?:\b|)" 1;
|
|
"~*(?:\b)diminishedvalueoforegon\.com(?:\b|)" 1;
|
|
"~*(?:\b)dimkino\.ru(?:\b|)" 1;
|
|
"~*(?:\b)dinkolove\.ya\.ru(?:\b|)" 1;
|
|
"~*(?:\b)dinosaurus\.site(?:\b|)" 1;
|
|
"~*(?:\b)dipstar\.org(?:\b|)" 1;
|
|
"~*(?:\b)directivepub\.com(?:\b|)" 1;
|
|
"~*(?:\b)directrev\.com(?:\b|)" 1;
|
|
"~*(?:\b)dirtpics\.pw(?:\b|)" 1;
|
|
"~*(?:\b)discountbarbour\.online(?:\b|)" 1;
|
|
"~*(?:\b)discountliv\.com(?:\b|)" 1;
|
|
"~*(?:\b)discovertreasure\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)discovertreasurenow\.com(?:\b|)" 1;
|
|
"~*(?:\b)dispo\.de(?:\b|)" 1;
|
|
"~*(?:\b)disruptingdinnerparties\.com(?:\b|)" 1;
|
|
"~*(?:\b)distver\.ru(?:\b|)" 1;
|
|
"~*(?:\b)diusyawiga\.tk(?:\b|)" 1;
|
|
"~*(?:\b)div\.as(?:\b|)" 1;
|
|
"~*(?:\b)divatraffic\.com(?:\b|)" 1;
|
|
"~*(?:\b)divci\-hry\.info(?:\b|)" 1;
|
|
"~*(?:\b)dividendo\.ru(?:\b|)" 1;
|
|
"~*(?:\b)divisioncore\.com(?:\b|)" 1;
|
|
"~*(?:\b)divku\.ru(?:\b|)" 1;
|
|
"~*(?:\b)diy\-handmade\-ideas\.com(?:\b|)" 1;
|
|
"~*(?:\b)djekxa\.ru(?:\b|)" 1;
|
|
"~*(?:\b)djihispano\.com(?:\b|)" 1;
|
|
"~*(?:\b)djonwatch\.ru(?:\b|)" 1;
|
|
"~*(?:\b)djstools\.com(?:\b|)" 1;
|
|
"~*(?:\b)dktr\.ru(?:\b|)" 1;
|
|
"~*(?:\b)dkvorota\.ru(?:\b|)" 1;
|
|
"~*(?:\b)dlya\-android\.org(?:\b|)" 1;
|
|
"~*(?:\b)dmmspy\.com(?:\b|)" 1;
|
|
"~*(?:\b)dms\-sw\.ru(?:\b|)" 1;
|
|
"~*(?:\b)dnepr\-avtospar\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)dnepropetrovsk\.mistr\-x\.org(?:\b|)" 1;
|
|
"~*(?:\b)dneprsvet\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)dnsrsearch\.com(?:\b|)" 1;
|
|
"~*(?:\b)docs4all\.com(?:\b|)" 1;
|
|
"~*(?:\b)docsportal\.net(?:\b|)" 1;
|
|
"~*(?:\b)docstoc\.com(?:\b|)" 1;
|
|
"~*(?:\b)doctissimo\.fr(?:\b|)" 1;
|
|
"~*(?:\b)doctormakarova\.ru(?:\b|)" 1;
|
|
"~*(?:\b)documentbase\.net(?:\b|)" 1;
|
|
"~*(?:\b)documentsite\.net(?:\b|)" 1;
|
|
"~*(?:\b)dodlive\.mil(?:\b|)" 1;
|
|
"~*(?:\b)doeco\.ru(?:\b|)" 1;
|
|
"~*(?:\b)dogbreedspicture\.net(?:\b|)" 1;
|
|
"~*(?:\b)dogclothing\.store(?:\b|)" 1;
|
|
"~*(?:\b)dogoimage\.com(?:\b|)" 1;
|
|
"~*(?:\b)dogsrun\.net(?:\b|)" 1;
|
|
"~*(?:\b)dojki\-hd\.com(?:\b|)" 1;
|
|
"~*(?:\b)dokfilms\.net(?:\b|)" 1;
|
|
"~*(?:\b)doktoronline\.no(?:\b|)" 1;
|
|
"~*(?:\b)dokumentalkino\.net(?:\b|)" 1;
|
|
"~*(?:\b)dollartree\.info(?:\b|)" 1;
|
|
"~*(?:\b)dolohen\.com(?:\b|)" 1;
|
|
"~*(?:\b)domain2008\.com(?:\b|)" 1;
|
|
"~*(?:\b)domainanalyzing\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)domaincdn\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)domaincheck\.io(?:\b|)" 1;
|
|
"~*(?:\b)domaincrawler\.com(?:\b|)" 1;
|
|
"~*(?:\b)domaineaneblanc\.com(?:\b|)" 1;
|
|
"~*(?:\b)domainroam\.win(?:\b|)" 1;
|
|
"~*(?:\b)domainsatcost\.com(?:\b|)" 1;
|
|
"~*(?:\b)domainsphoto\.com(?:\b|)" 1;
|
|
"~*(?:\b)domain\-submit\.info(?:\b|)" 1;
|
|
"~*(?:\b)domain\-tracker\.com(?:\b|)" 1;
|
|
"~*(?:\b)domain\.webkeyit\.com(?:\b|)" 1;
|
|
"~*(?:\b)domashneeruporno\.com(?:\b|)" 1;
|
|
"~*(?:\b)domcran\.net(?:\b|)" 1;
|
|
"~*(?:\b)domik\-derevne\.ru(?:\b|)" 1;
|
|
"~*(?:\b)dominateforex\.ml(?:\b|)" 1;
|
|
"~*(?:\b)domination\.ml(?:\b|)" 1;
|
|
"~*(?:\b)domini\.cat(?:\b|)" 1;
|
|
"~*(?:\b)dominterior\.org(?:\b|)" 1;
|
|
"~*(?:\b)domoysshop\.ru(?:\b|)" 1;
|
|
"~*(?:\b)domznaniy\.ru(?:\b|)" 1;
|
|
"~*(?:\b)donna7753191\.ru(?:\b|)" 1;
|
|
"~*(?:\b)donvito\.unas\.cz(?:\b|)" 1;
|
|
"~*(?:\b)dood\.live(?:\b|)" 1;
|
|
"~*(?:\b)dorratex\.tn(?:\b|)" 1;
|
|
"~*(?:\b)doska\-vsem\.ru(?:\b|)" 1;
|
|
"~*(?:\b)dostavimvdom\.ru(?:\b|)" 1;
|
|
"~*(?:\b)dostavka\-v\-krym\.com(?:\b|)" 1;
|
|
"~*(?:\b)dostavka\-v\-ukrainu\.ru(?:\b|)" 1;
|
|
"~*(?:\b)dosug\-lux\.ru(?:\b|)" 1;
|
|
"~*(?:\b)dosugrostov\.site(?:\b|)" 1;
|
|
"~*(?:\b)dotmass\.top(?:\b|)" 1;
|
|
"~*(?:\b)dotnetdotcom\.org(?:\b|)" 1;
|
|
"~*(?:\b)doublepimp\.com(?:\b|)" 1;
|
|
"~*(?:\b)downloaddy\.net(?:\b|)" 1;
|
|
"~*(?:\b)downloadeer\.net(?:\b|)" 1;
|
|
"~*(?:\b)downloader12\.ru(?:\b|)" 1;
|
|
"~*(?:\b)downloadkakaotalk\.com(?:\b|)" 1;
|
|
"~*(?:\b)downloadmefiranaratb1972\.xpg\.com\.br(?:\b|)" 1;
|
|
"~*(?:\b)download\-of\-the\-warez\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)downloads\-whatsapp\.com(?:\b|)" 1;
|
|
"~*(?:\b)download\-wallpaper\.net(?:\b|)" 1;
|
|
"~*(?:\b)downtuptv\.gq(?:\b|)" 1;
|
|
"~*(?:\b)downvids\.net(?:\b|)" 1;
|
|
"~*(?:\b)doxyporno\.com(?:\b|)" 1;
|
|
"~*(?:\b)doxysexy\.com(?:\b|)" 1;
|
|
"~*(?:\b)doyouknowtheword\-flummox\.ml(?:\b|)" 1;
|
|
"~*(?:\b)dpihatinh\.gov\.vn(?:\b|)" 1;
|
|
"~*(?:\b)dprtb\.com(?:\b|)" 1;
|
|
"~*(?:\b)dptaughtme\.com(?:\b|)" 1;
|
|
"~*(?:\b)draniki\.org(?:\b|)" 1;
|
|
"~*(?:\b)drev\.biz(?:\b|)" 1;
|
|
"~*(?:\b)drhomes\.biz(?:\b|)" 1;
|
|
"~*(?:\b)drillsaw\.ru(?:\b|)" 1;
|
|
"~*(?:\b)driving\.kiev\.ua(?:\b|)" 1;
|
|
"~*(?:\b)drivotracker\.com(?:\b|)" 1;
|
|
"~*(?:\b)droidlook\.net(?:\b|)" 1;
|
|
"~*(?:\b)drpornogratisx\.xxx(?:\b|)" 1;
|
|
"~*(?:\b)drugs\-no\-rx\.info(?:\b|)" 1;
|
|
"~*(?:\b)drugspowerstore\.com(?:\b|)" 1;
|
|
"~*(?:\b)drugstoreforyou\.com(?:\b|)" 1;
|
|
"~*(?:\b)drunkenstepfather\.com(?:\b|)" 1;
|
|
"~*(?:\b)drunkmoms\.net(?:\b|)" 1;
|
|
"~*(?:\b)drupa\.com(?:\b|)" 1;
|
|
"~*(?:\b)druzhbany\.ru(?:\b|)" 1;
|
|
"~*(?:\b)druzhininevgeniy63\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)dstroy\.su(?:\b|)" 1;
|
|
"~*(?:\b)dtm\-spain\.com(?:\b|)" 1;
|
|
"~*(?:\b)dtnlyss\.com(?:\b|)" 1;
|
|
"~*(?:\b)dumpsmania24\.com(?:\b|)" 1;
|
|
"~*(?:\b)duplicashapp\.com(?:\b|)" 1;
|
|
"~*(?:\b)dustyorate\.com(?:\b|)" 1;
|
|
"~*(?:\b)dvd\-famille\.com(?:\b|)" 1;
|
|
"~*(?:\b)dverimegapolis\.ru(?:\b|)" 1;
|
|
"~*(?:\b)dvervmoskvu\.ru(?:\b|)" 1;
|
|
"~*(?:\b)dvr\.biz\.ua(?:\b|)" 1;
|
|
"~*(?:\b)dvrlists\.com(?:\b|)" 1;
|
|
"~*(?:\b)dwomlink\.info(?:\b|)" 1;
|
|
"~*(?:\b)dynainbox\.com(?:\b|)" 1;
|
|
"~*(?:\b)dyshagi\.ru(?:\b|)" 1;
|
|
"~*(?:\b)dyt\.net(?:\b|)" 1;
|
|
"~*(?:\b)e2click\.com(?:\b|)" 1;
|
|
"~*(?:\b)e705\.net(?:\b|)" 1;
|
|
"~*(?:\b)eachdayisagift\.review(?:\b|)" 1;
|
|
"~*(?:\b)eandsgallery\.com(?:\b|)" 1;
|
|
"~*(?:\b)eaplay\.ru(?:\b|)" 1;
|
|
"~*(?:\b)earl\-brown\.info(?:\b|)" 1;
|
|
"~*(?:\b)earncash\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)earn\-from\-articles\.com(?:\b|)" 1;
|
|
"~*(?:\b)earthmagic\.info(?:\b|)" 1;
|
|
"~*(?:\b)eas\-seo\.com(?:\b|)" 1;
|
|
"~*(?:\b)easycommerce\.cf(?:\b|)" 1;
|
|
"~*(?:\b)easync\.io(?:\b|)" 1;
|
|
"~*(?:\b)easyshoppermac\.com(?:\b|)" 1;
|
|
"~*(?:\b)easytuningshop\.ru(?:\b|)" 1;
|
|
"~*(?:\b)easyukraine\.com(?:\b|)" 1;
|
|
"~*(?:\b)e\-avon\.ru(?:\b|)" 1;
|
|
"~*(?:\b)e\-biznes\.info(?:\b|)" 1;
|
|
"~*(?:\b)ebooknovel\.club(?:\b|)" 1;
|
|
"~*(?:\b)e\-buyeasy\.com(?:\b|)" 1;
|
|
"~*(?:\b)e\-c\.al(?:\b|)" 1;
|
|
"~*(?:\b)ec\-file\.info(?:\b|)" 1;
|
|
"~*(?:\b)e\-collantes\.com(?:\b|)" 1;
|
|
"~*(?:\b)e\-commerce\-seo1\.com(?:\b|)" 1;
|
|
"~*(?:\b)e\-commerce\-seo\.com(?:\b|)" 1;
|
|
"~*(?:\b)ecommerce\-seo\.com(?:\b|)" 1;
|
|
"~*(?:\b)ecommerce\-seo\.org(?:\b|)" 1;
|
|
"~*(?:\b)econom\.co(?:\b|)" 1;
|
|
"~*(?:\b)ecookna\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)ecxtracking\.com(?:\b|)" 1;
|
|
"~*(?:\b)edelstahlschornstein\-123\.de(?:\b|)" 1;
|
|
"~*(?:\b)edge\.sharethis\.com(?:\b|)" 1;
|
|
"~*(?:\b)editmedios\.com(?:\b|)" 1;
|
|
"~*(?:\b)editors\.choice6912650\.hulfingtonpost\.com(?:\b|)" 1;
|
|
"~*(?:\b)ednorxmed\.com(?:\b|)" 1;
|
|
"~*(?:\b)ed\-shop01\.ru(?:\b|)" 1;
|
|
"~*(?:\b)educatemetv\.com(?:\b|)" 1;
|
|
"~*(?:\b)education\-cz\.ru(?:\b|)" 1;
|
|
"~*(?:\b)educontest\.net(?:\b|)" 1;
|
|
"~*(?:\b)edudocs\.net(?:\b|)" 1;
|
|
"~*(?:\b)eduinfosite\.com(?:\b|)" 1;
|
|
"~*(?:\b)eduserver\.net(?:\b|)" 1;
|
|
"~*(?:\b)edwinkonijn\.com\.au(?:\b|)" 1;
|
|
"~*(?:\b)ee77ee\.com(?:\b|)" 1;
|
|
"~*(?:\b)efkt\.jp(?:\b|)" 1;
|
|
"~*(?:\b)efnor\-ac\.com(?:\b|)" 1;
|
|
"~*(?:\b)ege\-essay\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ege\-russian\.ru(?:\b|)" 1;
|
|
"~*(?:\b)egovaleo\.it(?:\b|)" 1;
|
|
"~*(?:\b)egvar\.net(?:\b|)" 1;
|
|
"~*(?:\b)ekaterinburg\.xrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)ekn\-art\.se(?:\b|)" 1;
|
|
"~*(?:\b)ekobata\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ekosmetyki\.net\.pl(?:\b|)" 1;
|
|
"~*(?:\b)ekspertmed\.com(?:\b|)" 1;
|
|
"~*(?:\b)ekspresihati\.info(?:\b|)" 1;
|
|
"~*(?:\b)ekto\.ee(?:\b|)" 1;
|
|
"~*(?:\b)e\-kwiaciarz\.pl(?:\b|)" 1;
|
|
"~*(?:\b)eladkarako\.com(?:\b|)" 1;
|
|
"~*(?:\b)eladkarako\.github\.io(?:\b|)" 1;
|
|
"~*(?:\b)eldiariodeguadalajara\.com(?:\b|)" 1;
|
|
"~*(?:\b)election\.interferencer\.ru(?:\b|)" 1;
|
|
"~*(?:\b)electricwheelchairsarea\.com(?:\b|)" 1;
|
|
"~*(?:\b)electrik\-avenue\.com(?:\b|)" 1;
|
|
"~*(?:\b)electronicadirect\.com(?:\b|)" 1;
|
|
"~*(?:\b)electro\-prom\.com(?:\b|)" 1;
|
|
"~*(?:\b)eleimgo\.pw(?:\b|)" 1;
|
|
"~*(?:\b)elektir\.ru(?:\b|)" 1;
|
|
"~*(?:\b)elektrischezi\.canalblog\.com(?:\b|)" 1;
|
|
"~*(?:\b)elektrischeziga\.livejournal\.com(?:\b|)" 1;
|
|
"~*(?:\b)elektrischezigarette1\.blog\.pl(?:\b|)" 1;
|
|
"~*(?:\b)elektrischezigarette1\.onsugar\.com(?:\b|)" 1;
|
|
"~*(?:\b)elektrischezigarette2\.devhub\.com(?:\b|)" 1;
|
|
"~*(?:\b)elektrischezigarette2\.onsugar\.com(?:\b|)" 1;
|
|
"~*(?:\b)elektrischezigarettekaufen2\.cowblog\.fr(?:\b|)" 1;
|
|
"~*(?:\b)elektrischezigaretten1\.blogse\.nl(?:\b|)" 1;
|
|
"~*(?:\b)elektrischezigaretten2\.beeplog\.com(?:\b|)" 1;
|
|
"~*(?:\b)elektroniksigaraankara\.info(?:\b|)" 1;
|
|
"~*(?:\b)elektronischezigarette2\.mex\.tl(?:\b|)" 1;
|
|
"~*(?:\b)elektronischezigarettekaufen1\.beeplog\.com(?:\b|)" 1;
|
|
"~*(?:\b)elektronischezigarettekaufen1\.myblog\.de(?:\b|)" 1;
|
|
"~*(?:\b)elektronischezigarettekaufen2\.tumblr\.com(?:\b|)" 1;
|
|
"~*(?:\b)elektronischezi\.livejournal\.com(?:\b|)" 1;
|
|
"~*(?:\b)elektrozigarette1\.dreamwidth\.org(?:\b|)" 1;
|
|
"~*(?:\b)elektrozigarette2\.webs\.com(?:\b|)" 1;
|
|
"~*(?:\b)elektrozigarette2\.wordpressy\.pl(?:\b|)" 1;
|
|
"~*(?:\b)elektrozigarettekaufen1\.devhub\.com(?:\b|)" 1;
|
|
"~*(?:\b)elektrozigarettekaufen2\.blogse\.nl(?:\b|)" 1;
|
|
"~*(?:\b)elektrozigaretten1\.postbit\.com(?:\b|)" 1;
|
|
"~*(?:\b)elektrozigaretten1\.tumblr\.com(?:\b|)" 1;
|
|
"~*(?:\b)elektrozigaretten1\.webs\.com(?:\b|)" 1;
|
|
"~*(?:\b)elektrozigaretten2\.yn\.lt(?:\b|)" 1;
|
|
"~*(?:\b)elidelcream\.weebly\.com(?:\b|)" 1;
|
|
"~*(?:\b)elitedollars\.com(?:\b|)" 1;
|
|
"~*(?:\b)elitepcgames\.com(?:\b|)" 1;
|
|
"~*(?:\b)elite\-sex\-finders\.com(?:\b|)" 1;
|
|
"~*(?:\b)elitesportsadvisor\.com(?:\b|)" 1;
|
|
"~*(?:\b)elkacentr\.ru(?:\b|)" 1;
|
|
"~*(?:\b)elmacho\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)elmifarhangi\.com(?:\b|)" 1;
|
|
"~*(?:\b)el\-nation\.com(?:\b|)" 1;
|
|
"~*(?:\b)eloconcream\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)eloxal\.ru(?:\b|)" 1;
|
|
"~*(?:\b)elstal\.com\.pl(?:\b|)" 1;
|
|
"~*(?:\b)eluxer\.net(?:\b|)" 1;
|
|
"~*(?:\b)elvel\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)elvenar\.com(?:\b|)" 1;
|
|
"~*(?:\b)elvenmachine\.com(?:\b|)" 1;
|
|
"~*(?:\b)emailaccountlogin\.co(?:\b|)" 1;
|
|
"~*(?:\b)embedle\.com(?:\b|)" 1;
|
|
"~*(?:\b)emediate\.eu(?:\b|)" 1;
|
|
"~*(?:\b)emergencyneeds\.org(?:\b|)" 1;
|
|
"~*(?:\b)emerson\-rus\.ru(?:\b|)" 1;
|
|
"~*(?:\b)empathica\.com(?:\b|)" 1;
|
|
"~*(?:\b)empirepoker\.com(?:\b|)" 1;
|
|
"~*(?:\b)empis\.magix\.net(?:\b|)" 1;
|
|
"~*(?:\b)en\.altezza\.travel(?:\b|)" 1;
|
|
"~*(?:\b)enbersoft\.com(?:\b|)" 1;
|
|
"~*(?:\b)encodable\.com(?:\b|)" 1;
|
|
"~*(?:\b)energydiet24\.ru(?:\b|)" 1;
|
|
"~*(?:\b)energydiet\-info\.ru(?:\b|)" 1;
|
|
"~*(?:\b)energy\-ua\.com(?:\b|)" 1;
|
|
"~*(?:\b)enews\.tech(?:\b|)" 1;
|
|
"~*(?:\b)enge\-fotzen\.info(?:\b|)" 1;
|
|
"~*(?:\b)enginebay\.ru(?:\b|)" 1;
|
|
"~*(?:\b)engines\-usa\.com(?:\b|)" 1;
|
|
"~*(?:\b)englate\.com(?:\b|)" 1;
|
|
"~*(?:\b)englishdictionaryfree\.com(?:\b|)" 1;
|
|
"~*(?:\b)englishgamer\.com(?:\b|)" 1;
|
|
"~*(?:\b)eng\-lyrics\.com(?:\b|)" 1;
|
|
"~*(?:\b)enhand\.se(?:\b|)" 1;
|
|
"~*(?:\b)en\.home\-task\.com(?:\b|)" 1;
|
|
"~*(?:\b)enskedesquashclub\.se(?:\b|)" 1;
|
|
"~*(?:\b)enternet\.ee(?:\b|)" 1;
|
|
"~*(?:\b)enthuse\.computernetworksonline\.com(?:\b|)" 1;
|
|
"~*(?:\b)envaseslotusama\.com(?:\b|)" 1;
|
|
"~*(?:\b)eonpal\.com(?:\b|)" 1;
|
|
"~*(?:\b)eorogo\.top(?:\b|)" 1;
|
|
"~*(?:\b)epicbrogaming\.com(?:\b|)" 1;
|
|
"~*(?:\b)epngo\.bz(?:\b|)" 1;
|
|
"~*(?:\b)e\-poker\-2005\.com(?:\b|)" 1;
|
|
"~*(?:\b)eralph\.tk(?:\b|)" 1;
|
|
"~*(?:\b)erectile\.bid(?:\b|)" 1;
|
|
"~*(?:\b)eredijovon\.com(?:\b|)" 1;
|
|
"~*(?:\b)ereko\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ero\-advertising\.com(?:\b|)" 1;
|
|
"~*(?:\b)eropho\.com(?:\b|)" 1;
|
|
"~*(?:\b)eropornosex\.ru(?:\b|)" 1;
|
|
"~*(?:\b)erot\.co(?:\b|)" 1;
|
|
"~*(?:\b)erotik0049\.com(?:\b|)" 1;
|
|
"~*(?:\b)erotikchat\-24\.com(?:\b|)" 1;
|
|
"~*(?:\b)erotik\-kostenlos\.net(?:\b|)" 1;
|
|
"~*(?:\b)erotikstories\.ru(?:\b|)" 1;
|
|
"~*(?:\b)erotiktreff24\.info(?:\b|)" 1;
|
|
"~*(?:\b)erotische\-geschichten\-xxl\.com(?:\b|)" 1;
|
|
"~*(?:\b)errorfixing\.space(?:\b|)" 1;
|
|
"~*(?:\b)ertelecom\.ru(?:\b|)" 1;
|
|
"~*(?:\b)es5\.com(?:\b|)" 1;
|
|
"~*(?:\b)escortplius\.com(?:\b|)" 1;
|
|
"~*(?:\b)escort\-russian\.com(?:\b|)" 1;
|
|
"~*(?:\b)escortslet\.net(?:\b|)" 1;
|
|
"~*(?:\b)esfchat\.tk(?:\b|)" 1;
|
|
"~*(?:\b)eshop4u\.jp(?:\b|)" 1;
|
|
"~*(?:\b)eshop\.md(?:\b|)" 1;
|
|
"~*(?:\b)esnm\.ru(?:\b|)" 1;
|
|
"~*(?:\b)esopini\.com(?:\b|)" 1;
|
|
"~*(?:\b)espaceinventoristes\.com(?:\b|)" 1;
|
|
"~*(?:\b)essayassist\.com(?:\b|)" 1;
|
|
"~*(?:\b)essay\-edu\.biz(?:\b|)" 1;
|
|
"~*(?:\b)essaypro\.com(?:\b|)" 1;
|
|
"~*(?:\b)essayservicewriting\.org(?:\b|)" 1;
|
|
"~*(?:\b)essay\-writing\.work(?:\b|)" 1;
|
|
"~*(?:\b)estelight\.ru(?:\b|)" 1;
|
|
"~*(?:\b)este\-line\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)estibot\.com(?:\b|)" 1;
|
|
"~*(?:\b)etenininrade\.ga(?:\b|)" 1;
|
|
"~*(?:\b)etm\-consult\.de(?:\b|)" 1;
|
|
"~*(?:\b)etotupo\.ru(?:\b|)" 1;
|
|
"~*(?:\b)etur\.ru(?:\b|)" 1;
|
|
"~*(?:\b)eu\-cookie\-law\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)eu\-cookie\-law\.info(?:\b|)" 1;
|
|
"~*(?:\b)eugenevaultstorage\.com(?:\b|)" 1;
|
|
"~*(?:\b)eupornstar\.info(?:\b|)" 1;
|
|
"~*(?:\b)euromasterclass\.ru(?:\b|)" 1;
|
|
"~*(?:\b)euronis\-free\.com(?:\b|)" 1;
|
|
"~*(?:\b)europages\.com\.ru(?:\b|)" 1;
|
|
"~*(?:\b)european\-torches\.ru(?:\b|)" 1;
|
|
"~*(?:\b)europeanwatches\.ru(?:\b|)" 1;
|
|
"~*(?:\b)eurosamodelki\.ru(?:\b|)" 1;
|
|
"~*(?:\b)euroskat\.ru(?:\b|)" 1;
|
|
"~*(?:\b)evaashop\.ru(?:\b|)" 1;
|
|
"~*(?:\b)evehemming\.blogspot\.com\.au(?:\b|)" 1;
|
|
"~*(?:\b)evening\-dating\-club\.info(?:\b|)" 1;
|
|
"~*(?:\b)event\-tracking\.com(?:\b|)" 1;
|
|
"~*(?:\b)everflora\.ru(?:\b|)" 1;
|
|
"~*(?:\b)everypony\.ru(?:\b|)" 1;
|
|
"~*(?:\b)everytalk\.tv(?:\b|)" 1;
|
|
"~*(?:\b)evidencecleanergold\.com(?:\b|)" 1;
|
|
"~*(?:\b)evogarage\.com(?:\b|)" 1;
|
|
"~*(?:\b)evrotekhservis\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ewebarticle\.info(?:\b|)" 1;
|
|
"~*(?:\b)excaliburfilms\.com(?:\b|)" 1;
|
|
"~*(?:\b)exchangeit\.gq(?:\b|)" 1;
|
|
"~*(?:\b)exchanges\-bet\.com(?:\b|)" 1;
|
|
"~*(?:\b)excitacao\.com(?:\b|)" 1;
|
|
"~*(?:\b)excitacion\.info(?:\b|)" 1;
|
|
"~*(?:\b)exct\.net(?:\b|)" 1;
|
|
"~*(?:\b)exdocsfiles\.com(?:\b|)" 1;
|
|
"~*(?:\b)executehosting\.com(?:\b|)" 1;
|
|
"~*(?:\b)exhibitionplus\.eu(?:\b|)" 1;
|
|
"~*(?:\b)exlarseva\.webblog\.es(?:\b|)" 1;
|
|
"~*(?:\b)exmasters\.com(?:\b|)" 1;
|
|
"~*(?:\b)exoclick\.com(?:\b|)" 1;
|
|
"~*(?:\b)exoneration\-project\.us(?:\b|)" 1;
|
|
"~*(?:\b)exonline\.info(?:\b|)" 1;
|
|
"~*(?:\b)expdom\.com(?:\b|)" 1;
|
|
"~*(?:\b)expertblog\.info(?:\b|)" 1;
|
|
"~*(?:\b)expertnaya\-ocenka\.ru(?:\b|)" 1;
|
|
"~*(?:\b)expolicenciaslatam\.co(?:\b|)" 1;
|
|
"~*(?:\b)exportshop\.us(?:\b|)" 1;
|
|
"~*(?:\b)expresstoplivo\.ru(?:\b|)" 1;
|
|
"~*(?:\b)extads\.net(?:\b|)" 1;
|
|
"~*(?:\b)extener\.org(?:\b|)" 1;
|
|
"~*(?:\b)extlabs\.io(?:\b|)" 1;
|
|
"~*(?:\b)extlinks\.com(?:\b|)" 1;
|
|
"~*(?:\b)extrabot\.com(?:\b|)" 1;
|
|
"~*(?:\b)extractorandburner\.com(?:\b|)" 1;
|
|
"~*(?:\b)extremal\-blog\.com(?:\b|)" 1;
|
|
"~*(?:\b)extremepornos\.net(?:\b|)" 1;
|
|
"~*(?:\b)extremez\.net(?:\b|)" 1;
|
|
"~*(?:\b)extstat\.com(?:\b|)" 1;
|
|
"~*(?:\b)eyelike\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)eyemagination\.com(?:\b|)" 1;
|
|
"~*(?:\b)eyes\-on\-you\.ga(?:\b|)" 1;
|
|
"~*(?:\b)eyessurgery\.ru(?:\b|)" 1;
|
|
"~*(?:\b)eywords\-monitoring\-your\-success\.com(?:\b|)" 1;
|
|
"~*(?:\b)ez8motelseaworldsandiego\.com(?:\b|)" 1;
|
|
"~*(?:\b)ezaz\.info(?:\b|)" 1;
|
|
"~*(?:\b)ezb\.elvenmachine\.com(?:\b|)" 1;
|
|
"~*(?:\b)ezigarettekaufen1\.hpage\.com(?:\b|)" 1;
|
|
"~*(?:\b)ezigarettekaufen2\.blox\.pl(?:\b|)" 1;
|
|
"~*(?:\b)ezigarettekaufen2\.mpbloggar\.se(?:\b|)" 1;
|
|
"~*(?:\b)ezigarettekaufen2\.yolasite\.com(?:\b|)" 1;
|
|
"~*(?:\b)ezigarettekaufen\.myblog\.de(?:\b|)" 1;
|
|
"~*(?:\b)ezigarettenkaufen1\.deviantart\.com(?:\b|)" 1;
|
|
"~*(?:\b)ezigarettenkaufen1\.pagina\.gr(?:\b|)" 1;
|
|
"~*(?:\b)ezigarettenkaufen2\.dreamwidth\.org(?:\b|)" 1;
|
|
"~*(?:\b)ezigarettenshop1\.yolasite\.com(?:\b|)" 1;
|
|
"~*(?:\b)ezigarettenshop2\.myblog\.de(?:\b|)" 1;
|
|
"~*(?:\b)ezigarettenshop2\.postbit\.com(?:\b|)" 1;
|
|
"~*(?:\b)ezigaretteshop2\.mywapblog\.com(?:\b|)" 1;
|
|
"~*(?:\b)ezigaretteshop2\.vefblog\.net(?:\b|)" 1;
|
|
"~*(?:\b)ezigaretteshop\.webs\.com(?:\b|)" 1;
|
|
"~*(?:\b)ezofest\.sk(?:\b|)" 1;
|
|
"~*(?:\b)ezrvrentals\.com(?:\b|)" 1;
|
|
"~*(?:\b)f00kclan\.de(?:\b|)" 1;
|
|
"~*(?:\b)f012\.de(?:\b|)" 1;
|
|
"~*(?:\b)f07\.de(?:\b|)" 1;
|
|
"~*(?:\b)f0815\.de(?:\b|)" 1;
|
|
"~*(?:\b)f1nder\.org(?:\b|)" 1;
|
|
"~*(?:\b)f5mtrack\.com(?:\b|)" 1;
|
|
"~*(?:\b)fable\.in\.ua(?:\b|)" 1;
|
|
"~*(?:\b)facebook\-mobile\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)facecup\.top(?:\b|)" 1;
|
|
"~*(?:\b)face\.hostingx\.eu(?:\b|)" 1;
|
|
"~*(?:\b)factorynightclub\.com(?:\b|)" 1;
|
|
"~*(?:\b)failingmarriege\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)fakehandbags\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)falcoware\.com(?:\b|)" 1;
|
|
"~*(?:\b)falllow\.gq(?:\b|)" 1;
|
|
"~*(?:\b)falopicm\.pw(?:\b|)" 1;
|
|
"~*(?:\b)familienzahnaerzte\.com(?:\b|)" 1;
|
|
"~*(?:\b)family1st\.ca(?:\b|)" 1;
|
|
"~*(?:\b)familyholiday\.ml(?:\b|)" 1;
|
|
"~*(?:\b)familyphysician\.ru(?:\b|)" 1;
|
|
"~*(?:\b)famix\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)fandlr\.com(?:\b|)" 1;
|
|
"~*(?:\b)fanoboi\.com(?:\b|)" 1;
|
|
"~*(?:\b)fanpagerobot\.com(?:\b|)" 1;
|
|
"~*(?:\b)fanrto\.com(?:\b|)" 1;
|
|
"~*(?:\b)fantasticpixcool\.com(?:\b|)" 1;
|
|
"~*(?:\b)faptitans\.com(?:\b|)" 1;
|
|
"~*(?:\b)faracontrol\.ir(?:\b|)" 1;
|
|
"~*(?:\b)farm26\.ru(?:\b|)" 1;
|
|
"~*(?:\b)farmingworm\.com(?:\b|)" 1;
|
|
"~*(?:\b)farmprofi\.net(?:\b|)" 1;
|
|
"~*(?:\b)fashionavenuegame\.com(?:\b|)" 1;
|
|
"~*(?:\b)fashionindeed\.ml(?:\b|)" 1;
|
|
"~*(?:\b)fashion\-mk\.net(?:\b|)" 1;
|
|
"~*(?:\b)fashion\.stellaconstance\.co(?:\b|)" 1;
|
|
"~*(?:\b)fashion\-stickers\.ru(?:\b|)" 1;
|
|
"~*(?:\b)fastcrawl\.com(?:\b|)" 1;
|
|
"~*(?:\b)fastfixing\.tech(?:\b|)" 1;
|
|
"~*(?:\b)fast\-wordpress\-start\.com(?:\b|)" 1;
|
|
"~*(?:\b)fatfasts\-4tmz\.com(?:\b|)" 1;
|
|
"~*(?:\b)fatmaelgarny\.com(?:\b|)" 1;
|
|
"~*(?:\b)favorcosmetics\.com(?:\b|)" 1;
|
|
"~*(?:\b)favoritemoney\.ru(?:\b|)" 1;
|
|
"~*(?:\b)favornews\.com(?:\b|)" 1;
|
|
"~*(?:\b)faz99\.com(?:\b|)" 1;
|
|
"~*(?:\b)fba\-mexico\.com(?:\b|)" 1;
|
|
"~*(?:\b)fbdownloader\.com(?:\b|)" 1;
|
|
"~*(?:\b)fdzone\.org(?:\b|)" 1;
|
|
"~*(?:\b)fealq\.com(?:\b|)" 1;
|
|
"~*(?:\b)fearcrow\.com(?:\b|)" 1;
|
|
"~*(?:\b)feargames\.ru(?:\b|)" 1;
|
|
"~*(?:\b)feel\-planet\.com(?:\b|)" 1;
|
|
"~*(?:\b)feeriaclub\.ru(?:\b|)" 1;
|
|
"~*(?:\b)fefo\.gdn(?:\b|)" 1;
|
|
"~*(?:\b)felizporno\.com(?:\b|)" 1;
|
|
"~*(?:\b)fellowshipoftheminds\.com(?:\b|)" 1;
|
|
"~*(?:\b)femdom\.twiclub\.in(?:\b|)" 1;
|
|
"~*(?:\b)femmesdenudees\.com(?:\b|)" 1;
|
|
"~*(?:\b)fenoyl\.batcave\.net(?:\b|)" 1;
|
|
"~*(?:\b)feorina\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ferieboligkbh\.dk(?:\b|)" 1;
|
|
"~*(?:\b)fermersovet\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ferretsoft\.com(?:\b|)" 1;
|
|
"~*(?:\b)ferrotodo\.com(?:\b|)" 1;
|
|
"~*(?:\b)fertilitetsradgivningen\.se(?:\b|)" 1;
|
|
"~*(?:\b)fetishinside\.com(?:\b|)" 1;
|
|
"~*(?:\b)fetlifeblog\.com(?:\b|)" 1;
|
|
"~*(?:\b)fetroshok\.ru(?:\b|)" 1;
|
|
"~*(?:\b)fettefrauen\.net(?:\b|)" 1;
|
|
"~*(?:\b)ff30236ddef1465f88547e760973d70a\.com(?:\b|)" 1;
|
|
"~*(?:\b)fickblock18\.com(?:\b|)" 1;
|
|
"~*(?:\b)fickenbumsen\.net(?:\b|)" 1;
|
|
"~*(?:\b)fickenprivat\.info(?:\b|)" 1;
|
|
"~*(?:\b)fickkontaktehobbyhuren\.com(?:\b|)" 1;
|
|
"~*(?:\b)fickkontakte\.org(?:\b|)" 1;
|
|
"~*(?:\b)fickluder69\.com(?:\b|)" 1;
|
|
"~*(?:\b)fidelityfunding\.com(?:\b|)" 1;
|
|
"~*(?:\b)fifa\-coins\.online(?:\b|)" 1;
|
|
"~*(?:\b)figuringmoneyout\.com(?:\b|)" 1;
|
|
"~*(?:\b)fikasound\.tk(?:\b|)" 1;
|
|
"~*(?:\b)filefilter\.weebly\.com(?:\b|)" 1;
|
|
"~*(?:\b)filerockstar298\.weebly\.com(?:\b|)" 1;
|
|
"~*(?:\b)filesclub\.net(?:\b|)" 1;
|
|
"~*(?:\b)filesdatabase\.net(?:\b|)" 1;
|
|
"~*(?:\b)filesmonster\.porn(?:\b|)" 1;
|
|
"~*(?:\b)filesvine\.com(?:\b|)" 1;
|
|
"~*(?:\b)filkhbr\.com(?:\b|)" 1;
|
|
"~*(?:\b)fillmewithhappiness\.com(?:\b|)" 1;
|
|
"~*(?:\b)filmbokep69\.com(?:\b|)" 1;
|
|
"~*(?:\b)filmci\.pro(?:\b|)" 1;
|
|
"~*(?:\b)filmetricsasia\.com(?:\b|)" 1;
|
|
"~*(?:\b)filmfanatic\.com(?:\b|)" 1;
|
|
"~*(?:\b)filmgo\.ru(?:\b|)" 1;
|
|
"~*(?:\b)filmidivx\.com(?:\b|)" 1;
|
|
"~*(?:\b)filmi\-onlain\.info(?:\b|)" 1;
|
|
"~*(?:\b)filmi\-v\.online(?:\b|)" 1;
|
|
"~*(?:\b)film\-one\.ru(?:\b|)" 1;
|
|
"~*(?:\b)fil\.ru(?:\b|)" 1;
|
|
"~*(?:\b)filunika\.com\.ru(?:\b|)" 1;
|
|
"~*(?:\b)financehint\.eu(?:\b|)" 1;
|
|
"~*(?:\b)financeloan\.us(?:\b|)" 1;
|
|
"~*(?:\b)financepoints\.eu(?:\b|)" 1;
|
|
"~*(?:\b)financetip\.eu(?:\b|)" 1;
|
|
"~*(?:\b)finansov\.info(?:\b|)" 1;
|
|
"~*(?:\b)find1friend\.com(?:\b|)" 1;
|
|
"~*(?:\b)findacheaplawyers\.com(?:\b|)" 1;
|
|
"~*(?:\b)findanysex\.com(?:\b|)" 1;
|
|
"~*(?:\b)findclan\.org(?:\b|)" 1;
|
|
"~*(?:\b)findpik\.com(?:\b|)" 1;
|
|
"~*(?:\b)findsexguide\.com(?:\b|)" 1;
|
|
"~*(?:\b)findthe\.pet(?:\b|)" 1;
|
|
"~*(?:\b)finejewelryshop\.ru(?:\b|)" 1;
|
|
"~*(?:\b)finemanteam\.com(?:\b|)" 1;
|
|
"~*(?:\b)finstroy\.net(?:\b|)" 1;
|
|
"~*(?:\b)finteks\.ru(?:\b|)" 1;
|
|
"~*(?:\b)finuse\.com(?:\b|)" 1;
|
|
"~*(?:\b)fireads\.men(?:\b|)" 1;
|
|
"~*(?:\b)firesub\.pl(?:\b|)" 1;
|
|
"~*(?:\b)firma\-legion\.ru(?:\b|)" 1;
|
|
"~*(?:\b)firstdrugmall\.ru(?:\b|)" 1;
|
|
"~*(?:\b)firstsiteguide\.com(?:\b|)" 1;
|
|
"~*(?:\b)fishingwholesale\.us(?:\b|)" 1;
|
|
"~*(?:\b)fishtauto\.ru(?:\b|)" 1;
|
|
"~*(?:\b)fitfloponline\.store(?:\b|)" 1;
|
|
"~*(?:\b)fitnesspiks\.com(?:\b|)" 1;
|
|
"~*(?:\b)fitness\-video\.net(?:\b|)" 1;
|
|
"~*(?:\b)fiuxy\.com(?:\b|)" 1;
|
|
"~*(?:\b)fivedwld\.cf(?:\b|)" 1;
|
|
"~*(?:\b)fiverr\.com(?:\b|)" 1;
|
|
"~*(?:\b)fix\-website\-errors\.com(?:\b|)" 1;
|
|
"~*(?:\b)flagcounter\.me(?:\b|)" 1;
|
|
"~*(?:\b)flash4fun\.com(?:\b|)" 1;
|
|
"~*(?:\b)flashahead\.info(?:\b|)" 1;
|
|
"~*(?:\b)flashbannernow\.com(?:\b|)" 1;
|
|
"~*(?:\b)flashlarevista\.com(?:\b|)" 1;
|
|
"~*(?:\b)flauntyoursite\.com(?:\b|)" 1;
|
|
"~*(?:\b)flavors\.me(?:\b|)" 1;
|
|
"~*(?:\b)flex4launch\.ru(?:\b|)" 1;
|
|
"~*(?:\b)flipper\.top(?:\b|)" 1;
|
|
"~*(?:\b)flirt4free\.com(?:\b|)" 1;
|
|
"~*(?:\b)f\-loaded\.de(?:\b|)" 1;
|
|
"~*(?:\b)floating\-share\-buttons\.com(?:\b|)" 1;
|
|
"~*(?:\b)flooringinstallation\-edmonton\.com(?:\b|)" 1;
|
|
"~*(?:\b)floridahuntingfishingadventures\.com(?:\b|)" 1;
|
|
"~*(?:\b)floridamhca\.org(?:\b|)" 1;
|
|
"~*(?:\b)floridamobilebillboards\.com(?:\b|)" 1;
|
|
"~*(?:\b)florida\-tourism\.net(?:\b|)" 1;
|
|
"~*(?:\b)flowersbazar\.com(?:\b|)" 1;
|
|
"~*(?:\b)flowwwers\.com(?:\b|)" 1;
|
|
"~*(?:\b)flprog\.com(?:\b|)" 1;
|
|
"~*(?:\b)flytourisme\.org(?:\b|)" 1;
|
|
"~*(?:\b)fm\-upgrade\.ru(?:\b|)" 1;
|
|
"~*(?:\b)focalink\.com(?:\b|)" 1;
|
|
"~*(?:\b)fodelsedagspresenter\.nu(?:\b|)" 1;
|
|
"~*(?:\b)fok\.nl(?:\b|)" 1;
|
|
"~*(?:\b)folowsite\.com(?:\b|)" 1;
|
|
"~*(?:\b)f\-online\.de(?:\b|)" 1;
|
|
"~*(?:\b)foodcrafts\.website(?:\b|)" 1;
|
|
"~*(?:\b)food\.dtu\.dk(?:\b|)" 1;
|
|
"~*(?:\b)footbalive\.org(?:\b|)" 1;
|
|
"~*(?:\b)footballfarrago\.com(?:\b|)" 1;
|
|
"~*(?:\b)fordsonmajbor\.cf(?:\b|)" 1;
|
|
"~*(?:\b)forensicpsychiatry\.ru(?:\b|)" 1;
|
|
"~*(?:\b)forex21\.ru(?:\b|)" 1;
|
|
"~*(?:\b)forexgb\.ru(?:\b|)" 1;
|
|
"~*(?:\b)forex\-indextop20\.ru(?:\b|)" 1;
|
|
"~*(?:\b)forex\.osobye\.ru(?:\b|)" 1;
|
|
"~*(?:\b)forex\-procto\.ru(?:\b|)" 1;
|
|
"~*(?:\b)forexunion\.net(?:\b|)" 1;
|
|
"~*(?:\b)forminecrafters\.ru(?:\b|)" 1;
|
|
"~*(?:\b)formseo\.com(?:\b|)" 1;
|
|
"~*(?:\b)forms\-mtm\.ru(?:\b|)" 1;
|
|
"~*(?:\b)formulaantiuban\.com(?:\b|)" 1;
|
|
"~*(?:\b)formularz\-konkurs\.tk(?:\b|)" 1;
|
|
"~*(?:\b)forodvd\.com(?:\b|)" 1;
|
|
"~*(?:\b)forpackningsutveckling\.se(?:\b|)" 1;
|
|
"~*(?:\b)forpostlock\.ru(?:\b|)" 1;
|
|
"~*(?:\b)forsex\.info(?:\b|)" 1;
|
|
"~*(?:\b)fortevidyoze\.net(?:\b|)" 1;
|
|
"~*(?:\b)fortunejack\.com(?:\b|)" 1;
|
|
"~*(?:\b)fortwosmartcar\.pw(?:\b|)" 1;
|
|
"~*(?:\b)forum20\.smailik\.org(?:\b|)" 1;
|
|
"~*(?:\b)forum69\.info(?:\b|)" 1;
|
|
"~*(?:\b)forum\.doctissimo\.fr(?:\b|)" 1;
|
|
"~*(?:\b)forum\-engineering\.ru(?:\b|)" 1;
|
|
"~*(?:\b)forum\.poker4life\.ru(?:\b|)" 1;
|
|
"~*(?:\b)forumprofi\.de(?:\b|)" 1;
|
|
"~*(?:\b)forums\.d2jsp\.org(?:\b|)" 1;
|
|
"~*(?:\b)forums\.toucharcade\.com(?:\b|)" 1;
|
|
"~*(?:\b)forum\.tvmir\.org(?:\b|)" 1;
|
|
"~*(?:\b)foto\-basa\.com(?:\b|)" 1;
|
|
"~*(?:\b)fotopop\.club(?:\b|)" 1;
|
|
"~*(?:\b)fotosfotos\.eu(?:\b|)" 1;
|
|
"~*(?:\b)foto\-sisek\.porngalleries\.top(?:\b|)" 1;
|
|
"~*(?:\b)foto\-telok\.net(?:\b|)" 1;
|
|
"~*(?:\b)fototravel\.eu(?:\b|)" 1;
|
|
"~*(?:\b)foto\-weinberger\.at(?:\b|)" 1;
|
|
"~*(?:\b)fotoxxxru\.com(?:\b|)" 1;
|
|
"~*(?:\b)fotzen\-ficken\.com(?:\b|)" 1;
|
|
"~*(?:\b)foxinsocks\.ru(?:\b|)" 1;
|
|
"~*(?:\b)foxjuegos\.com(?:\b|)" 1;
|
|
"~*(?:\b)foxtechfpv\.com(?:\b|)" 1;
|
|
"~*(?:\b)foxweber\.com(?:\b|)" 1;
|
|
"~*(?:\b)foxydeal\.com(?:\b|)" 1;
|
|
"~*(?:\b)frameimage\.org(?:\b|)" 1;
|
|
"~*(?:\b)franch\.info(?:\b|)" 1;
|
|
"~*(?:\b)franecki\.net(?:\b|)" 1;
|
|
"~*(?:\b)franklinfire\.co(?:\b|)" 1;
|
|
"~*(?:\b)fr\-bearings\.ru(?:\b|)" 1;
|
|
"~*(?:\b)frbizlist\.com(?:\b|)" 1;
|
|
"~*(?:\b)frcls\.fr(?:\b|)" 1;
|
|
"~*(?:\b)freakycheats\.com(?:\b|)" 1;
|
|
"~*(?:\b)free411games\.com(?:\b|)" 1;
|
|
"~*(?:\b)freecamdollars\.com(?:\b|)" 1;
|
|
"~*(?:\b)free\-deals\.faith(?:\b|)" 1;
|
|
"~*(?:\b)free\-fbook\-traffic\.com(?:\b|)" 1;
|
|
"~*(?:\b)free\-fb\-traffic\.com(?:\b|)" 1;
|
|
"~*(?:\b)free\-floating\-buttons\.com(?:\b|)" 1;
|
|
"~*(?:\b)freegamesplay\.online(?:\b|)" 1;
|
|
"~*(?:\b)free\-gluten\.ru(?:\b|)" 1;
|
|
"~*(?:\b)freejabs\.com(?:\b|)" 1;
|
|
"~*(?:\b)free\-laptop\-reward\.com(?:\b|)" 1;
|
|
"~*(?:\b)freelifetimefuckbook\.com(?:\b|)" 1;
|
|
"~*(?:\b)freelinkbuilding\.website\.tk(?:\b|)" 1;
|
|
"~*(?:\b)freelotto\.com(?:\b|)" 1;
|
|
"~*(?:\b)freemags\.cc(?:\b|)" 1;
|
|
"~*(?:\b)freemaintenancesysforpcandmac\.top(?:\b|)" 1;
|
|
"~*(?:\b)freenode\.info(?:\b|)" 1;
|
|
"~*(?:\b)freenom\.link(?:\b|)" 1;
|
|
"~*(?:\b)freeseedsonline\.com(?:\b|)" 1;
|
|
"~*(?:\b)free\-share\-buttons\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)free\-share\-buttons\.com(?:\b|)" 1;
|
|
"~*(?:\b)free\-share\-buttons\.top(?:\b|)" 1;
|
|
"~*(?:\b)freesitetest\.com(?:\b|)" 1;
|
|
"~*(?:\b)free\-social\-buttons\.com(?:\b|)" 1;
|
|
"~*(?:\b)free\-social\-buttons\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)free\-stock\-illustration\.com(?:\b|)" 1;
|
|
"~*(?:\b)freetangodownload\.com(?:\b|)" 1;
|
|
"~*(?:\b)free\-today\.com(?:\b|)" 1;
|
|
"~*(?:\b)free\-traffic\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)freeuploader\.com(?:\b|)" 1;
|
|
"~*(?:\b)freeuploader\.ml(?:\b|)" 1;
|
|
"~*(?:\b)free\-video\-tool\.com(?:\b|)" 1;
|
|
"~*(?:\b)freewareseek\.com(?:\b|)" 1;
|
|
"~*(?:\b)freewebs\.com(?:\b|)" 1;
|
|
"~*(?:\b)freewhatsappload\.com(?:\b|)" 1;
|
|
"~*(?:\b)freewlan\.info(?:\b|)" 1;
|
|
"~*(?:\b)frequiry\.com(?:\b|)" 1;
|
|
"~*(?:\b)freshberry\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)freshdz\.com(?:\b|)" 1;
|
|
"~*(?:\b)freshmac\.space(?:\b|)" 1;
|
|
"~*(?:\b)freshsuperbloop\.com(?:\b|)" 1;
|
|
"~*(?:\b)freshwallpapers\.info(?:\b|)" 1;
|
|
"~*(?:\b)freza\-sverlo\.ru(?:\b|)" 1;
|
|
"~*(?:\b)frighteningremain\.cf(?:\b|)" 1;
|
|
"~*(?:\b)frivgame250\.com(?:\b|)" 1;
|
|
"~*(?:\b)fr\.netlog\.com(?:\b|)" 1;
|
|
"~*(?:\b)froggytube\.com(?:\b|)" 1;
|
|
"~*(?:\b)front\.ru(?:\b|)" 1;
|
|
"~*(?:\b)front\.to(?:\b|)" 1;
|
|
"~*(?:\b)frustrated\-favorable\.gq(?:\b|)" 1;
|
|
"~*(?:\b)frvo\.alptandem\.ru(?:\b|)" 1;
|
|
"~*(?:\b)fsakhalin\.ru(?:\b|)" 1;
|
|
"~*(?:\b)fsalas\.com(?:\b|)" 1;
|
|
"~*(?:\b)ftns\.ru(?:\b|)" 1;
|
|
"~*(?:\b)fuckbuddybestgilf\.info(?:\b|)" 1;
|
|
"~*(?:\b)fuckingawesome\.com(?:\b|)" 1;
|
|
"~*(?:\b)fuckmill\.com(?:\b|)" 1;
|
|
"~*(?:\b)fuck\-paid\-share\-buttons\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)fuel\-gas\.com(?:\b|)" 1;
|
|
"~*(?:\b)fugarif\.ga(?:\b|)" 1;
|
|
"~*(?:\b)fullfileaccess\.com(?:\b|)" 1;
|
|
"~*(?:\b)fullgirl\.ru(?:\b|)" 1;
|
|
"~*(?:\b)fun2cell\.net(?:\b|)" 1;
|
|
"~*(?:\b)funcrushgames\.com(?:\b|)" 1;
|
|
"~*(?:\b)fungamelands\.com(?:\b|)" 1;
|
|
"~*(?:\b)fungirlsgames\.net(?:\b|)" 1;
|
|
"~*(?:\b)fun\-mobi\.pl(?:\b|)" 1;
|
|
"~*(?:\b)funnel\.co\.za(?:\b|)" 1;
|
|
"~*(?:\b)funnymama\.com(?:\b|)" 1;
|
|
"~*(?:\b)funnypica\.com(?:\b|)" 1;
|
|
"~*(?:\b)funponsel\.com(?:\b|)" 1;
|
|
"~*(?:\b)funtoonez\.com(?:\b|)" 1;
|
|
"~*(?:\b)fusoradio\.info(?:\b|)" 1;
|
|
"~*(?:\b)futbolkisales\.ru(?:\b|)" 1;
|
|
"~*(?:\b)fx\-brokers\-review\.com(?:\b|)" 1;
|
|
"~*(?:\b)fxgallery\.com(?:\b|)" 1;
|
|
"~*(?:\b)fxtips\.ru(?:\b|)" 1;
|
|
"~*(?:\b)fyl\.com\.ru(?:\b|)" 1;
|
|
"~*(?:\b)fym\.com\.ru(?:\b|)" 1;
|
|
"~*(?:\b)fyxabomiw\.ru(?:\b|)" 1;
|
|
"~*(?:\b)fz139\.ttk\.ru(?:\b|)" 1;
|
|
"~*(?:\b)g33\.org(?:\b|)" 1;
|
|
"~*(?:\b)g7m\.pl(?:\b|)" 1;
|
|
"~*(?:\b)gabeshop\.ru(?:\b|)" 1;
|
|
"~*(?:\b)gael\-s\.ru(?:\b|)" 1;
|
|
"~*(?:\b)gagrasector\.ru(?:\b|)" 1;
|
|
"~*(?:\b)galaxy\-family\.ru(?:\b|)" 1;
|
|
"~*(?:\b)galaxyflowers\.ru(?:\b|)" 1;
|
|
"~*(?:\b)galaxys6manual\.info(?:\b|)" 1;
|
|
"~*(?:\b)galeon\.com(?:\b|)" 1;
|
|
"~*(?:\b)galeria\-zdjec\.com(?:\b|)" 1;
|
|
"~*(?:\b)gallerily\.com(?:\b|)" 1;
|
|
"~*(?:\b)galleryawesome\.com(?:\b|)" 1;
|
|
"~*(?:\b)gallerylisting\.com(?:\b|)" 1;
|
|
"~*(?:\b)gallery\.rennlist\.com(?:\b|)" 1;
|
|
"~*(?:\b)gallictures\.com(?:\b|)" 1;
|
|
"~*(?:\b)gambarkatabaru\.com(?:\b|)" 1;
|
|
"~*(?:\b)gambarkataku\.co(?:\b|)" 1;
|
|
"~*(?:\b)gambarxkata\.co(?:\b|)" 1;
|
|
"~*(?:\b)gamblingnerd\.com(?:\b|)" 1;
|
|
"~*(?:\b)game300\.ru(?:\b|)" 1;
|
|
"~*(?:\b)gamebackyard\.com(?:\b|)" 1;
|
|
"~*(?:\b)gamedayassist\.com(?:\b|)" 1;
|
|
"~*(?:\b)gamedayhouse\.com(?:\b|)" 1;
|
|
"~*(?:\b)game\-mmorpg\.net(?:\b|)" 1;
|
|
"~*(?:\b)gameonasia\.com(?:\b|)" 1;
|
|
"~*(?:\b)gameplexcity\.com(?:\b|)" 1;
|
|
"~*(?:\b)gameprimary\.com(?:\b|)" 1;
|
|
"~*(?:\b)gamerextra\.com(?:\b|)" 1;
|
|
"~*(?:\b)gamerscorps\.com(?:\b|)" 1;
|
|
"~*(?:\b)games\.kolossale\.ru(?:\b|)" 1;
|
|
"~*(?:\b)gamesprite\.me(?:\b|)" 1;
|
|
"~*(?:\b)game\-top\.su(?:\b|)" 1;
|
|
"~*(?:\b)gamevalue7\.weebly\.com(?:\b|)" 1;
|
|
"~*(?:\b)gamewrath\.com(?:\b|)" 1;
|
|
"~*(?:\b)gamezblox\.com(?:\b|)" 1;
|
|
"~*(?:\b)gaming\-journal\.com(?:\b|)" 1;
|
|
"~*(?:\b)gamingspark\.com(?:\b|)" 1;
|
|
"~*(?:\b)garciniaxt\.us(?:\b|)" 1;
|
|
"~*(?:\b)gardene\.ru(?:\b|)" 1;
|
|
"~*(?:\b)gate5\.co\.za(?:\b|)" 1;
|
|
"~*(?:\b)gateway\.zscalerone\.net(?:\b|)" 1;
|
|
"~*(?:\b)gateway\.zscalertwo\.net(?:\b|)" 1;
|
|
"~*(?:\b)gavuer\.ru(?:\b|)" 1;
|
|
"~*(?:\b)gay\.adultgalls\.com(?:\b|)" 1;
|
|
"~*(?:\b)gay\-file\.com(?:\b|)" 1;
|
|
"~*(?:\b)gaygalls\.net(?:\b|)" 1;
|
|
"~*(?:\b)gay\-site\.store(?:\b|)" 1;
|
|
"~*(?:\b)gaytube\.com(?:\b|)" 1;
|
|
"~*(?:\b)gayxperience\.com(?:\b|)" 1;
|
|
"~*(?:\b)gazobeton\-p\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)gazoblok\.net\.ua(?:\b|)" 1;
|
|
"~*(?:\b)gazporno\.com(?:\b|)" 1;
|
|
"~*(?:\b)gaz\-voshod\.ru(?:\b|)" 1;
|
|
"~*(?:\b)gcup\.ru(?:\b|)" 1;
|
|
"~*(?:\b)gdcentre\.ru(?:\b|)" 1;
|
|
"~*(?:\b)gdebestkupit\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ge0ip\.com(?:\b|)" 1;
|
|
"~*(?:\b)ge0ip\.net(?:\b|)" 1;
|
|
"~*(?:\b)ge0ip\.org(?:\b|)" 1;
|
|
"~*(?:\b)gearcraft\.us(?:\b|)" 1;
|
|
"~*(?:\b)gearsadspromo\.club(?:\b|)" 1;
|
|
"~*(?:\b)geckoandfly\.com(?:\b|)" 1;
|
|
"~*(?:\b)geilehausfrauen\.net(?:\b|)" 1;
|
|
"~*(?:\b)geile\-lelly\.eu(?:\b|)" 1;
|
|
"~*(?:\b)geileweiber\.tk(?:\b|)" 1;
|
|
"~*(?:\b)gelezki\.com(?:\b|)" 1;
|
|
"~*(?:\b)gemara\.com(?:\b|)" 1;
|
|
"~*(?:\b)gembird\.com(?:\b|)" 1;
|
|
"~*(?:\b)gemgrab\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)generalporn\.org(?:\b|)" 1;
|
|
"~*(?:\b)genericlowlatencyasiodriverhq\.aircus\.com(?:\b|)" 1;
|
|
"~*(?:\b)generic\-pills\-online\.com(?:\b|)" 1;
|
|
"~*(?:\b)genericviagrasildenafiled\.net(?:\b|)" 1;
|
|
"~*(?:\b)generousdeal\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)genetworx\.com(?:\b|)" 1;
|
|
"~*(?:\b)gentamicineyedrops\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)geoads\.com(?:\b|)" 1;
|
|
"~*(?:\b)gepezz\.info(?:\b|)" 1;
|
|
"~*(?:\b)gerhardhealer\.com(?:\b|)" 1;
|
|
"~*(?:\b)germes\-trans\.com(?:\b|)" 1;
|
|
"~*(?:\b)germetiki\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)getaclueamerica\.com(?:\b|)" 1;
|
|
"~*(?:\b)getdot\.ru(?:\b|)" 1;
|
|
"~*(?:\b)get\-free\-social\-traffic\.com(?:\b|)" 1;
|
|
"~*(?:\b)get\-free\-traffic\-now\.com(?:\b|)" 1;
|
|
"~*(?:\b)getlaid\-xxxhookupdirect\.com(?:\b|)" 1;
|
|
"~*(?:\b)getlamborghini\.ga(?:\b|)" 1;
|
|
"~*(?:\b)getmiro\.com(?:\b|)" 1;
|
|
"~*(?:\b)getmyads24\.com(?:\b|)" 1;
|
|
"~*(?:\b)getoutofdebtfree\.org(?:\b|)" 1;
|
|
"~*(?:\b)getpopunder\.com(?:\b|)" 1;
|
|
"~*(?:\b)getprismatic\.com(?:\b|)" 1;
|
|
"~*(?:\b)getresponse\.com(?:\b|)" 1;
|
|
"~*(?:\b)getridofstretchmarks\.org(?:\b|)" 1;
|
|
"~*(?:\b)get\-seo\-domain\.com(?:\b|)" 1;
|
|
"~*(?:\b)gettpromos\.com(?:\b|)" 1;
|
|
"~*(?:\b)getyourimage\.club(?:\b|)" 1;
|
|
"~*(?:\b)get\-your\-social\-buttons\.info(?:\b|)" 1;
|
|
"~*(?:\b)gfaq\.ru(?:\b|)" 1;
|
|
"~*(?:\b)gg\-arena\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ggiaro\.com(?:\b|)" 1;
|
|
"~*(?:\b)gg\.zzyjxs\.com(?:\b|)" 1;
|
|
"~*(?:\b)ghazel\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ghernnqr\.skyrock\.com(?:\b|)" 1;
|
|
"~*(?:\b)gheus\.altervista\.org(?:\b|)" 1;
|
|
"~*(?:\b)ghostvisitor\.com(?:\b|)" 1;
|
|
"~*(?:\b)gidonline\.one(?:\b|)" 1;
|
|
"~*(?:\b)gifspics\.com(?:\b|)" 1;
|
|
"~*(?:\b)gigablast\.com(?:\b|)" 1;
|
|
"~*(?:\b)gigapeta\.com(?:\b|)" 1;
|
|
"~*(?:\b)gilbertbanda\.net(?:\b|)" 1;
|
|
"~*(?:\b)gilsonchiro\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)girlgamerdaily\.com(?:\b|)" 1;
|
|
"~*(?:\b)girlporn\.ru(?:\b|)" 1;
|
|
"~*(?:\b)girlsatgames\.ru(?:\b|)" 1;
|
|
"~*(?:\b)girlsfuckdick\.com(?:\b|)" 1;
|
|
"~*(?:\b)girlspicsa\.com(?:\b|)" 1;
|
|
"~*(?:\b)girls\-ufa\.ru(?:\b|)" 1;
|
|
"~*(?:\b)given2\.com(?:\b|)" 1;
|
|
"~*(?:\b)gk170\.ru(?:\b|)" 1;
|
|
"~*(?:\b)gk\-atlant\.info(?:\b|)" 1;
|
|
"~*(?:\b)gktt\.ru(?:\b|)" 1;
|
|
"~*(?:\b)gkvector\.ru(?:\b|)" 1;
|
|
"~*(?:\b)glall\.ru(?:\b|)" 1;
|
|
"~*(?:\b)glasof\.es(?:\b|)" 1;
|
|
"~*(?:\b)glass\-msk\.ru(?:\b|)" 1;
|
|
"~*(?:\b)glastecfilms\.com\.my(?:\b|)" 1;
|
|
"~*(?:\b)glavprofit\.ru(?:\b|)" 1;
|
|
"~*(?:\b)glavtral\.ru(?:\b|)" 1;
|
|
"~*(?:\b)glcomputers\.ru(?:\b|)" 1;
|
|
"~*(?:\b)glicol\.kz(?:\b|)" 1;
|
|
"~*(?:\b)global\-ics\.co\.za(?:\b|)" 1;
|
|
"~*(?:\b)globalscam\.ga(?:\b|)" 1;
|
|
"~*(?:\b)globalsurfari\.com(?:\b|)" 1;
|
|
"~*(?:\b)globatur\.ru(?:\b|)" 1;
|
|
"~*(?:\b)globetrotting\-culture\.ru(?:\b|)" 1;
|
|
"~*(?:\b)glogow\.pl(?:\b|)" 1;
|
|
"~*(?:\b)glopages\.ru(?:\b|)" 1;
|
|
"~*(?:\b)gloverid\.site(?:\b|)" 1;
|
|
"~*(?:\b)gne8\.com(?:\b|)" 1;
|
|
"~*(?:\b)gnuetella\.com(?:\b|)" 1;
|
|
"~*(?:\b)go2album\.com(?:\b|)" 1;
|
|
"~*(?:\b)go2jump\.org(?:\b|)" 1;
|
|
"~*(?:\b)go2mike\.ru(?:\b|)" 1;
|
|
"~*(?:\b)goatse\.ru(?:\b|)" 1;
|
|
"~*(?:\b)gobongo\.info(?:\b|)" 1;
|
|
"~*(?:\b)goforexvps\.com(?:\b|)" 1;
|
|
"~*(?:\b)gogalleryawesome\.com(?:\b|)" 1;
|
|
"~*(?:\b)gogps\.me(?:\b|)" 1;
|
|
"~*(?:\b)gojiberriess\.apishops\.ru(?:\b|)" 1;
|
|
"~*(?:\b)gok\-kasten\.net(?:\b|)" 1;
|
|
"~*(?:\b)golaya\.pw(?:\b|)" 1;
|
|
"~*(?:\b)goldadpremium\.com(?:\b|)" 1;
|
|
"~*(?:\b)goldandcard\.ru(?:\b|)" 1;
|
|
"~*(?:\b)golden\-catalog\.pro(?:\b|)" 1;
|
|
"~*(?:\b)goldenggames\.com(?:\b|)" 1;
|
|
"~*(?:\b)golden\-praga\.ru(?:\b|)" 1;
|
|
"~*(?:\b)goldpanningtools\.com(?:\b|)" 1;
|
|
"~*(?:\b)golfresa\.lucania\.se(?:\b|)" 1;
|
|
"~*(?:\b)golmau\.host\.sk(?:\b|)" 1;
|
|
"~*(?:\b)gombita\.info(?:\b|)" 1;
|
|
"~*(?:\b)gomusix\.com(?:\b|)" 1;
|
|
"~*(?:\b)gonextmedia\.com(?:\b|)" 1;
|
|
"~*(?:\b)goodhousekeeping\.com(?:\b|)" 1;
|
|
"~*(?:\b)goodhumor24\.com(?:\b|)" 1;
|
|
"~*(?:\b)good\-mummy\.ru(?:\b|)" 1;
|
|
"~*(?:\b)goodnightjournal\.com(?:\b|)" 1;
|
|
"~*(?:\b)goodprotein\.ru(?:\b|)" 1;
|
|
"~*(?:\b)goodwinmetals\.co(?:\b|)" 1;
|
|
"~*(?:\b)goodwriterssales\.com(?:\b|)" 1;
|
|
"~*(?:\b)googglet\.com(?:\b|)" 1;
|
|
"~*(?:\b)googlefeud\.com(?:\b|)" 1;
|
|
"~*(?:\b)google\-liar\.ru(?:\b|)" 1;
|
|
"~*(?:\b)googlemare\.com(?:\b|)" 1;
|
|
"~*(?:\b)googlepositions\.com(?:\b|)" 1;
|
|
"~*(?:\b)googlsucks\.com(?:\b|)" 1;
|
|
"~*(?:\b)googst2\.ru(?:\b|)" 1;
|
|
"~*(?:\b)goo\.ne\.jp(?:\b|)" 1;
|
|
"~*(?:\b)goosefishpost\.bid(?:\b|)" 1;
|
|
"~*(?:\b)gopixdatabase\.com(?:\b|)" 1;
|
|
"~*(?:\b)gopro\-online\.info(?:\b|)" 1;
|
|
"~*(?:\b)gorabagrata\.ru(?:\b|)" 1;
|
|
"~*(?:\b)goroda\-vsego\-mira\.ru(?:\b|)" 1;
|
|
"~*(?:\b)gorodservis\.ru(?:\b|)" 1;
|
|
"~*(?:\b)gosarhivrt\.ru(?:\b|)" 1;
|
|
"~*(?:\b)gosmeb\.ru(?:\b|)" 1;
|
|
"~*(?:\b)gosreg\.amchs\.ru(?:\b|)" 1;
|
|
"~*(?:\b)gotcher\.us(?:\b|)" 1;
|
|
"~*(?:\b)gotomontenegro\.net(?:\b|)" 1;
|
|
"~*(?:\b)gotorussia\.com(?:\b|)" 1;
|
|
"~*(?:\b)gotwebsite1\.com(?:\b|)" 1;
|
|
"~*(?:\b)gourcy\.altervista\.org(?:\b|)" 1;
|
|
"~*(?:\b)gov\.yanao\.ru(?:\b|)" 1;
|
|
"~*(?:\b)gowreckdiving\.com(?:\b|)" 1;
|
|
"~*(?:\b)gox\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)gpirate\.com(?:\b|)" 1;
|
|
"~*(?:\b)gpms\.org\.my(?:\b|)" 1;
|
|
"~*(?:\b)gq\-catalog\.gq(?:\b|)" 1;
|
|
"~*(?:\b)grand\-chlen\.ru(?:\b|)" 1;
|
|
"~*(?:\b)graphics8\.info(?:\b|)" 1;
|
|
"~*(?:\b)graphicwe\.org(?:\b|)" 1;
|
|
"~*(?:\b)graphid\.com(?:\b|)" 1;
|
|
"~*(?:\b)gratis\-sexkontakte\.com(?:\b|)" 1;
|
|
"~*(?:\b)gratuitbaise\.com(?:\b|)" 1;
|
|
"~*(?:\b)gratuitxblcodes\.com(?:\b|)" 1;
|
|
"~*(?:\b)greatdealshop\.com(?:\b|)" 1;
|
|
"~*(?:\b)greatfind\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)greatgrace\.ru(?:\b|)" 1;
|
|
"~*(?:\b)greatzip\.com(?:\b|)" 1;
|
|
"~*(?:\b)greendream\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)greenidesign\.co(?:\b|)" 1;
|
|
"~*(?:\b)green\-tea\.tv(?:\b|)" 1;
|
|
"~*(?:\b)greenzaim\.ru(?:\b|)" 1;
|
|
"~*(?:\b)gribkovye\-zabolevaniya\.com(?:\b|)" 1;
|
|
"~*(?:\b)gribokstop\.com(?:\b|)" 1;
|
|
"~*(?:\b)grizzlysgrill\.com(?:\b|)" 1;
|
|
"~*(?:\b)groupmoney\.ru(?:\b|)" 1;
|
|
"~*(?:\b)growboxbl\.ru(?:\b|)" 1;
|
|
"~*(?:\b)growmyfunds\.ca(?:\b|)" 1;
|
|
"~*(?:\b)growshop\.es(?:\b|)" 1;
|
|
"~*(?:\b)grtyi\.com(?:\b|)" 1;
|
|
"~*(?:\b)grupografico\-pilar\.com\.ar(?:\b|)" 1;
|
|
"~*(?:\b)gsasearchenginerankerdiscount\.com(?:\b|)" 1;
|
|
"~*(?:\b)gsasearchenginerankerhelp\.com(?:\b|)" 1;
|
|
"~*(?:\b)gsasearchengineranker\.pw(?:\b|)" 1;
|
|
"~*(?:\b)gsasearchengineranker\.site(?:\b|)" 1;
|
|
"~*(?:\b)gsasearchengineranker\.space(?:\b|)" 1;
|
|
"~*(?:\b)gsasearchengineranker\.top(?:\b|)" 1;
|
|
"~*(?:\b)gsasearchengineranker\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)gsbs\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)gsmlab\.pl(?:\b|)" 1;
|
|
"~*(?:\b)gsmtlf\.ru(?:\b|)" 1;
|
|
"~*(?:\b)gsou\.cf(?:\b|)" 1;
|
|
"~*(?:\b)g\.starmoe\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)gstatey\.net(?:\b|)" 1;
|
|
"~*(?:\b)gta\-club\.ru(?:\b|)" 1;
|
|
"~*(?:\b)gta\-top\.ru(?:\b|)" 1;
|
|
"~*(?:\b)gtopstats\.com(?:\b|)" 1;
|
|
"~*(?:\b)guardlink\.com(?:\b|)" 1;
|
|
"~*(?:\b)guardlink\.org(?:\b|)" 1;
|
|
"~*(?:\b)guarrasdelporno\.xxx(?:\b|)" 1;
|
|
"~*(?:\b)guge\.io(?:\b|)" 1;
|
|
"~*(?:\b)guiadeserraazul\.com(?:\b|)" 1;
|
|
"~*(?:\b)guigyverpo\.cf(?:\b|)" 1;
|
|
"~*(?:\b)guildebzh\.info(?:\b|)" 1;
|
|
"~*(?:\b)guitar\-master\.org(?:\b|)" 1;
|
|
"~*(?:\b)gungamesz\.com(?:\b|)" 1;
|
|
"~*(?:\b)guod\.me(?:\b|)" 1;
|
|
"~*(?:\b)guruofcasino\.com(?:\b|)" 1;
|
|
"~*(?:\b)gwagka\.com(?:\b|)" 1;
|
|
"~*(?:\b)gwebtools\.com(?:\b|)" 1;
|
|
"~*(?:\b)gwebtools\.com\.br(?:\b|)" 1;
|
|
"~*(?:\b)gwhwpxbw\.bloger\.index\.hr(?:\b|)" 1;
|
|
"~*(?:\b)gyffu\.com(?:\b|)" 1;
|
|
"~*(?:\b)gz2\.bbsoldes\.fr(?:\b|)" 1;
|
|
"~*(?:\b)h2monline\.com(?:\b|)" 1;
|
|
"~*(?:\b)habermetre\.com(?:\b|)" 1;
|
|
"~*(?:\b)hackers\-crackers\.tk(?:\b|)" 1;
|
|
"~*(?:\b)hacktougroup\.ru(?:\b|)" 1;
|
|
"~*(?:\b)hahashka\.ru(?:\b|)" 1;
|
|
"~*(?:\b)haikuware\.com(?:\b|)" 1;
|
|
"~*(?:\b)hamacapty\.com(?:\b|)" 1;
|
|
"~*(?:\b)hamilton\.ca(?:\b|)" 1;
|
|
"~*(?:\b)hamptonoaks\.ca(?:\b|)" 1;
|
|
"~*(?:\b)handicapbathtubarea\.com(?:\b|)" 1;
|
|
"~*(?:\b)handicapvansarea\.com(?:\b|)" 1;
|
|
"~*(?:\b)handicapvantoday\.com(?:\b|)" 1;
|
|
"~*(?:\b)handsandlegs\.ru(?:\b|)" 1;
|
|
"~*(?:\b)hanink\.biz\.ly(?:\b|)" 1;
|
|
"~*(?:\b)hannasolution\.ru(?:\b|)" 1;
|
|
"~*(?:\b)hanwei\.us(?:\b|)" 1;
|
|
"~*(?:\b)hao123\.com(?:\b|)" 1;
|
|
"~*(?:\b)happy\.new\.yeartwit\.com(?:\b|)" 1;
|
|
"~*(?:\b)hard\-porn\.mobi(?:\b|)" 1;
|
|
"~*(?:\b)harmonyglen\.us(?:\b|)" 1;
|
|
"~*(?:\b)hasfun\.com(?:\b|)" 1;
|
|
"~*(?:\b)hasshe\.com(?:\b|)" 1;
|
|
"~*(?:\b)hatdc\.org(?:\b|)" 1;
|
|
"~*(?:\b)hatedriveapart\.com(?:\b|)" 1;
|
|
"~*(?:\b)hauleddes\.com(?:\b|)" 1;
|
|
"~*(?:\b)hausfrauensex18\.com(?:\b|)" 1;
|
|
"~*(?:\b)haveinc\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)havepussy\.com(?:\b|)" 1;
|
|
"~*(?:\b)hawaiielectriclight\.com(?:\b|)" 1;
|
|
"~*(?:\b)hawaiisurf\.com(?:\b|)" 1;
|
|
"~*(?:\b)hayate\.biz(?:\b|)" 1;
|
|
"~*(?:\b)hazardky\.net(?:\b|)" 1;
|
|
"~*(?:\b)hcate\.com(?:\b|)" 1;
|
|
"~*(?:\b)hccoder\.info(?:\b|)" 1;
|
|
"~*(?:\b)hchha\.com(?:\b|)" 1;
|
|
"~*(?:\b)hd720kino\.ru(?:\b|)" 1;
|
|
"~*(?:\b)hdapp1008\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)hd\-film\.pl(?:\b|)" 1;
|
|
"~*(?:\b)hd\-filmy\.net(?:\b|)" 1;
|
|
"~*(?:\b)hdfreeporno\.net(?:\b|)" 1;
|
|
"~*(?:\b)hdhc\.ru(?:\b|)" 1;
|
|
"~*(?:\b)hdimagegallery\.net(?:\b|)" 1;
|
|
"~*(?:\b)hdimagelib\.com(?:\b|)" 1;
|
|
"~*(?:\b)hdpixent\.com(?:\b|)" 1;
|
|
"~*(?:\b)hdpixion\.com(?:\b|)" 1;
|
|
"~*(?:\b)hdseriale\.pl(?:\b|)" 1;
|
|
"~*(?:\b)hdwallpapers\-free\.com(?:\b|)" 1;
|
|
"~*(?:\b)hdwalls\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)hdxnxxtube\.mobi(?:\b|)" 1;
|
|
"~*(?:\b)headpharmacy\.com(?:\b|)" 1;
|
|
"~*(?:\b)headpress\.ru(?:\b|)" 1;
|
|
"~*(?:\b)healbio\.ru(?:\b|)" 1;
|
|
"~*(?:\b)healgastro\.com(?:\b|)" 1;
|
|
"~*(?:\b)healing\-dysplasia\.ru(?:\b|)" 1;
|
|
"~*(?:\b)healmytrauma\.info(?:\b|)" 1;
|
|
"~*(?:\b)healthcarestore\.info(?:\b|)" 1;
|
|
"~*(?:\b)health\-medical\-portal\.info(?:\b|)" 1;
|
|
"~*(?:\b)heartofbeijing\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)heartofpayne\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)heatpower\.ru(?:\b|)" 1;
|
|
"~*(?:\b)hebr\.myddns\-flir\.com(?:\b|)" 1;
|
|
"~*(?:\b)helicalpile\.us(?:\b|)" 1;
|
|
"~*(?:\b)heliko\.no(?:\b|)" 1;
|
|
"~*(?:\b)helpmymacfaster\.trade(?:\b|)" 1;
|
|
"~*(?:\b)help\.tpu\.ru(?:\b|)" 1;
|
|
"~*(?:\b)helvetia\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)hem\.passagen\.se(?:\b|)" 1;
|
|
"~*(?:\b)hentaiheroes\.com(?:\b|)" 1;
|
|
"~*(?:\b)hentai\-manga\.porn(?:\b|)" 1;
|
|
"~*(?:\b)herehloadibs\.cf(?:\b|)" 1;
|
|
"~*(?:\b)hermesbelts\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)hermesbirkinhandbagoutlets\.com(?:\b|)" 1;
|
|
"~*(?:\b)hermesbracelets\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)hermesreplica\.pw(?:\b|)" 1;
|
|
"~*(?:\b)hermesreplica\.win(?:\b|)" 1;
|
|
"~*(?:\b)herokuapp\.com(?:\b|)" 1;
|
|
"~*(?:\b)heroz\.fr(?:\b|)" 1;
|
|
"~*(?:\b)hesteel\.pl(?:\b|)" 1;
|
|
"~*(?:\b)hetmanship\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)hexpilot\.com(?:\b|)" 1;
|
|
"~*(?:\b)heygidday\.biz(?:\b|)" 1;
|
|
"~*(?:\b)hidefiles\.org(?:\b|)" 1;
|
|
"~*(?:\b)hidemyass\.com(?:\b|)" 1;
|
|
"~*(?:\b)hifidesign\.ru(?:\b|)" 1;
|
|
"~*(?:\b)highland\-homes\.com(?:\b|)" 1;
|
|
"~*(?:\b)high\-speed1\.net(?:\b|)" 1;
|
|
"~*(?:\b)highspeed5\.net(?:\b|)" 1;
|
|
"~*(?:\b)highstairs\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)hikesearch\.net(?:\b|)" 1;
|
|
"~*(?:\b)hildinghr\.se(?:\b|)" 1;
|
|
"~*(?:\b)himazin\.info(?:\b|)" 1;
|
|
"~*(?:\b)himgaws\.pw(?:\b|)" 1;
|
|
"~*(?:\b)histats\.com(?:\b|)" 1;
|
|
"~*(?:\b)histock\.info(?:\b|)" 1;
|
|
"~*(?:\b)historichometeam\.com(?:\b|)" 1;
|
|
"~*(?:\b)hitcpm\.com(?:\b|)" 1;
|
|
"~*(?:\b)hit\-kino\.ru(?:\b|)" 1;
|
|
"~*(?:\b)hit\-men\.men(?:\b|)" 1;
|
|
"~*(?:\b)hitsbox\.info(?:\b|)" 1;
|
|
"~*(?:\b)hiwibyh\.bugs3\.com(?:\b|)" 1;
|
|
"~*(?:\b)hjaoopoa\.top(?:\b|)" 1;
|
|
"~*(?:\b)hkdiiohi\.skyrock\.com(?:\b|)" 1;
|
|
"~*(?:\b)hkladys\.com(?:\b|)" 1;
|
|
"~*(?:\b)hledejvshopech\.cz(?:\b|)" 1;
|
|
"~*(?:\b)hmmm\.cz(?:\b|)" 1;
|
|
"~*(?:\b)hmywwogw\.bloger\.index\.hr(?:\b|)" 1;
|
|
"~*(?:\b)hobbyhuren24\.net(?:\b|)" 1;
|
|
"~*(?:\b)hobbyhuren\-datenbank\.com(?:\b|)" 1;
|
|
"~*(?:\b)hobild\.net(?:\b|)" 1;
|
|
"~*(?:\b)hoholikik\.club(?:\b|)" 1;
|
|
"~*(?:\b)hol\.es(?:\b|)" 1;
|
|
"~*(?:\b)holidaypics\.org(?:\b|)" 1;
|
|
"~*(?:\b)hollywoodactress\.info(?:\b|)" 1;
|
|
"~*(?:\b)homeandhealth\.ru(?:\b|)" 1;
|
|
"~*(?:\b)homeart\.space(?:\b|)" 1;
|
|
"~*(?:\b)homedecoguide\.info(?:\b|)" 1;
|
|
"~*(?:\b)homedecorpicture\.us(?:\b|)" 1;
|
|
"~*(?:\b)homedo\.fabpage\.com(?:\b|)" 1;
|
|
"~*(?:\b)homegardenlova\.com(?:\b|)" 1;
|
|
"~*(?:\b)homeinns\.com(?:\b|)" 1;
|
|
"~*(?:\b)homelygarden\.com(?:\b|)" 1;
|
|
"~*(?:\b)homemade\.gq(?:\b|)" 1;
|
|
"~*(?:\b)homemature\.net(?:\b|)" 1;
|
|
"~*(?:\b)home\.myplaycity\.com(?:\b|)" 1;
|
|
"~*(?:\b)home\-task\.com(?:\b|)" 1;
|
|
"~*(?:\b)homik\.pw(?:\b|)" 1;
|
|
"~*(?:\b)honyaku\.yahoofs\.jp(?:\b|)" 1;
|
|
"~*(?:\b)hop\.clickbank\.net(?:\b|)" 1;
|
|
"~*(?:\b)hopeonthestreet\.co\.uk(?:\b|)" 1;
|
|
"~*(?:\b)hoporno\.com(?:\b|)" 1;
|
|
"~*(?:\b)hornymatches\.com(?:\b|)" 1;
|
|
"~*(?:\b)horoshieokna\.com(?:\b|)" 1;
|
|
"~*(?:\b)hostcritique\.com(?:\b|)" 1;
|
|
"~*(?:\b)hoste\.octopis\.com(?:\b|)" 1;
|
|
"~*(?:\b)hostingclub\.lk(?:\b|)" 1;
|
|
"~*(?:\b)hosting\-tracker\.com(?:\b|)" 1;
|
|
"~*(?:\b)hostnow\.men(?:\b|)" 1;
|
|
"~*(?:\b)host\-protection\.com(?:\b|)" 1;
|
|
"~*(?:\b)hostsshop\.ru(?:\b|)" 1;
|
|
"~*(?:\b)host\-tracker\.com(?:\b|)" 1;
|
|
"~*(?:\b)hotblognetwork\.com(?:\b|)" 1;
|
|
"~*(?:\b)hotblog\.top(?:\b|)" 1;
|
|
"~*(?:\b)hotchatdate\.com(?:\b|)" 1;
|
|
"~*(?:\b)hotdl\.in(?:\b|)" 1;
|
|
"~*(?:\b)hotelcrocenzi\.sm(?:\b|)" 1;
|
|
"~*(?:\b)hotel\-mkad\.ru(?:\b|)" 1;
|
|
"~*(?:\b)hotenergy\.ru(?:\b|)" 1;
|
|
"~*(?:\b)hotgirlhdwallpaper\.com(?:\b|)" 1;
|
|
"~*(?:\b)hothor\.se(?:\b|)" 1;
|
|
"~*(?:\b)hothot\.ru(?:\b|)" 1;
|
|
"~*(?:\b)hotkeys\.com(?:\b|)" 1;
|
|
"~*(?:\b)hotloans\.ru(?:\b|)" 1;
|
|
"~*(?:\b)hotshoppymac\.com(?:\b|)" 1;
|
|
"~*(?:\b)hotsocialz\.com(?:\b|)" 1;
|
|
"~*(?:\b)hotxnights\.info(?:\b|)" 1;
|
|
"~*(?:\b)houdom\.net(?:\b|)" 1;
|
|
"~*(?:\b)housediz\.com(?:\b|)" 1;
|
|
"~*(?:\b)housekuba\.org(?:\b|)" 1;
|
|
"~*(?:\b)housemilan\.ru(?:\b|)" 1;
|
|
"~*(?:\b)houseofgaga\.ru(?:\b|)" 1;
|
|
"~*(?:\b)houseofrose\.com(?:\b|)" 1;
|
|
"~*(?:\b)house\.sieraddns\.com(?:\b|)" 1;
|
|
"~*(?:\b)houston\-vikings\.com(?:\b|)" 1;
|
|
"~*(?:\b)hoverboard360\.at(?:\b|)" 1;
|
|
"~*(?:\b)hoverboard360\.de(?:\b|)" 1;
|
|
"~*(?:\b)hoverboard360\.es(?:\b|)" 1;
|
|
"~*(?:\b)hoverboard360\.nl(?:\b|)" 1;
|
|
"~*(?:\b)hoverboard360\.se(?:\b|)" 1;
|
|
"~*(?:\b)hoverboardforsaledirect\.com(?:\b|)" 1;
|
|
"~*(?:\b)howlongdoestizanidinestayinyoursystem\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)howmuchdoestizanidinecost\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)howopen\.ru(?:\b|)" 1;
|
|
"~*(?:\b)howtoclean\.club(?:\b|)" 1;
|
|
"~*(?:\b)howtowhitenteethfast\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)hoztorg\-opt\.ru(?:\b|)" 1;
|
|
"~*(?:\b)hplaserjetpdriver8y\.pen\.io(?:\b|)" 1;
|
|
"~*(?:\b)hptwaakw\.blog\.fc2\.com(?:\b|)" 1;
|
|
"~*(?:\b)hreade\.com(?:\b|)" 1;
|
|
"~*(?:\b)hscsscotland\.com(?:\b|)" 1;
|
|
"~*(?:\b)hspline\.com(?:\b|)" 1;
|
|
"~*(?:\b)htmlcorner\.com(?:\b|)" 1;
|
|
"~*(?:\b)https\-legalrc\.biz(?:\b|)" 1;
|
|
"~*(?:\b)hubbble\.com(?:\b|)" 1;
|
|
"~*(?:\b)huhn\.altervista\.org(?:\b|)" 1;
|
|
"~*(?:\b)huimin764128\.com(?:\b|)" 1;
|
|
"~*(?:\b)hulfingtonpost\.com(?:\b|)" 1;
|
|
"~*(?:\b)hully\.altervista\.org(?:\b|)" 1;
|
|
"~*(?:\b)humanelydrew\.com(?:\b|)" 1;
|
|
"~*(?:\b)humanorightswatch\.org(?:\b|)" 1;
|
|
"~*(?:\b)humbmosquina\.tk(?:\b|)" 1;
|
|
"~*(?:\b)hundejo\.com(?:\b|)" 1;
|
|
"~*(?:\b)hunterboots\.online(?:\b|)" 1;
|
|
"~*(?:\b)hunthillfarmtrust\.org(?:\b|)" 1;
|
|
"~*(?:\b)husky\-shop\.cz(?:\b|)" 1;
|
|
"~*(?:\b)hustoon\.over\-blog\.com(?:\b|)" 1;
|
|
"~*(?:\b)hut1\.ru(?:\b|)" 1;
|
|
"~*(?:\b)hvd\-store\.com(?:\b|)" 1;
|
|
"~*(?:\b)hybrid\.ru(?:\b|)" 1;
|
|
"~*(?:\b)hydropump\.su(?:\b|)" 1;
|
|
"~*(?:\b)hyhj\.info(?:\b|)" 1;
|
|
"~*(?:\b)hyiphunter\.org(?:\b|)" 1;
|
|
"~*(?:\b)hyipmanager\.in(?:\b|)" 1;
|
|
"~*(?:\b)hystersister\.com(?:\b|)" 1;
|
|
"~*(?:\b)i4track\.net(?:\b|)" 1;
|
|
"~*(?:\b)iamsport\.org(?:\b|)" 1;
|
|
"~*(?:\b)ibb\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)ibmdatamanagement\.co(?:\b|)" 1;
|
|
"~*(?:\b)iboss\.com(?:\b|)" 1;
|
|
"~*(?:\b)icaseclub\.ru(?:\b|)" 1;
|
|
"~*(?:\b)iccornacircri\.cf(?:\b|)" 1;
|
|
"~*(?:\b)ico\.re(?:\b|)" 1;
|
|
"~*(?:\b)ictizanidinehcl4mg\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)idc\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)idealtits\.net(?:\b|)" 1;
|
|
"~*(?:\b)ideashome\.id(?:\b|)" 1;
|
|
"~*(?:\b)ideawheel\.com(?:\b|)" 1;
|
|
"~*(?:\b)idegenvezeto\.eu(?:\b|)" 1;
|
|
"~*(?:\b)ideibiznesa2015\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ideoworld\.org(?:\b|)" 1;
|
|
"~*(?:\b)id\-forex\.com(?:\b|)" 1;
|
|
"~*(?:\b)ido3\.com(?:\b|)" 1;
|
|
"~*(?:\b)ie\.57883\.net(?:\b|)" 1;
|
|
"~*(?:\b)ifirestarter\.ru(?:\b|)" 1;
|
|
"~*(?:\b)iflycapetown\.co\.za(?:\b|)" 1;
|
|
"~*(?:\b)ifmo\.ru(?:\b|)" 1;
|
|
"~*(?:\b)igadgetsworld\.com(?:\b|)" 1;
|
|
"~*(?:\b)igithab\.com(?:\b|)" 1;
|
|
"~*(?:\b)igrovyeavtomaty777\.ru(?:\b|)" 1;
|
|
"~*(?:\b)igru\-xbox\.net(?:\b|)" 1;
|
|
"~*(?:\b)igtools\.club(?:\b|)" 1;
|
|
"~*(?:\b)ihc2015\.info(?:\b|)" 1;
|
|
"~*(?:\b)i\-hobot\.ru(?:\b|)" 1;
|
|
"~*(?:\b)iideaidekonkatu\.info(?:\b|)" 1;
|
|
"~*(?:\b)iinstalll\-fii1leis\.jus0wil\.pp\.ua(?:\b|)" 1;
|
|
"~*(?:\b)ikearugs\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)iklysha\.ml(?:\b|)" 1;
|
|
"~*(?:\b)ikritikimou\.gr(?:\b|)" 1;
|
|
"~*(?:\b)ilbe\.club(?:\b|)" 1;
|
|
"~*(?:\b)ilikevitaly\.com(?:\b|)" 1;
|
|
"~*(?:\b)ilmen\.net(?:\b|)" 1;
|
|
"~*(?:\b)ilmexico\.com(?:\b|)" 1;
|
|
"~*(?:\b)iloveitaly\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ilovevitaly\.com(?:\b|)" 1;
|
|
"~*(?:\b)ilovevitaly\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ilovevitaly\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)ilte\.info(?:\b|)" 1;
|
|
"~*(?:\b)imabase\.com(?:\b|)" 1;
|
|
"~*(?:\b)imadedinner\.net(?:\b|)" 1;
|
|
"~*(?:\b)imagecoolpub\.com(?:\b|)" 1;
|
|
"~*(?:\b)imagefinder\.site(?:\b|)" 1;
|
|
"~*(?:\b)imagerydatabase\.com(?:\b|)" 1;
|
|
"~*(?:\b)images\-free\.net(?:\b|)" 1;
|
|
"~*(?:\b)images\-graphics\-pics\.com(?:\b|)" 1;
|
|
"~*(?:\b)images\.gyffu\.com(?:\b|)" 1;
|
|
"~*(?:\b)imagine\-ex\.co(?:\b|)" 1;
|
|
"~*(?:\b)imagui\.eu(?:\b|)" 1;
|
|
"~*(?:\b)imediadesk\.com(?:\b|)" 1;
|
|
"~*(?:\b)imfamous\.info(?:\b|)" 1;
|
|
"~*(?:\b)imgarcade\.com(?:\b|)" 1;
|
|
"~*(?:\b)imgarit\.pw(?:\b|)" 1;
|
|
"~*(?:\b)imgata\.com(?:\b|)" 1;
|
|
"~*(?:\b)imguramx\.pw(?:\b|)" 1;
|
|
"~*(?:\b)img\.wallpaperstock\.net(?:\b|)" 1;
|
|
"~*(?:\b)imicrovision\.com(?:\b|)" 1;
|
|
"~*(?:\b)i\-midias\.net\.br(?:\b|)" 1;
|
|
"~*(?:\b)iminent\.com(?:\b|)" 1;
|
|
"~*(?:\b)imitex\-plus\.ru(?:\b|)" 1;
|
|
"~*(?:\b)imk\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)immobiliaremassaro\.com(?:\b|)" 1;
|
|
"~*(?:\b)imperia31\.ru(?:\b|)" 1;
|
|
"~*(?:\b)imperiafilm\.ru(?:\b|)" 1;
|
|
"~*(?:\b)impisr\.edunsk\.ru(?:\b|)" 1;
|
|
"~*(?:\b)impisr\.ru(?:\b|)" 1;
|
|
"~*(?:\b)importchinacoach\-teach\.com(?:\b|)" 1;
|
|
"~*(?:\b)import\-sales\.com(?:\b|)" 1;
|
|
"~*(?:\b)impotentik\.com(?:\b|)" 1;
|
|
"~*(?:\b)impresagaia\.it(?:\b|)" 1;
|
|
"~*(?:\b)inbabes\.sexushost\.com(?:\b|)" 1;
|
|
"~*(?:\b)inboundlinks\.win(?:\b|)" 1;
|
|
"~*(?:\b)inboxdollars\.com(?:\b|)" 1;
|
|
"~*(?:\b)incanto\.in\.ua(?:\b|)" 1;
|
|
"~*(?:\b)incep\.imagine\-ex\.co(?:\b|)" 1;
|
|
"~*(?:\b)incest\-ru\.com(?:\b|)" 1;
|
|
"~*(?:\b)inclk\.com(?:\b|)" 1;
|
|
"~*(?:\b)incolors\.club(?:\b|)" 1;
|
|
"~*(?:\b)incomekey\.net(?:\b|)" 1;
|
|
"~*(?:\b)increasewwwtraffic\.info(?:\b|)" 1;
|
|
"~*(?:\b)indetiske\.ya\.ru(?:\b|)" 1;
|
|
"~*(?:\b)indiakino\.net(?:\b|)" 1;
|
|
"~*(?:\b)indianmedicaltourismshop\.com(?:\b|)" 1;
|
|
"~*(?:\b)indiasourcemart\.in(?:\b|)" 1;
|
|
"~*(?:\b)indo\-export\.ru(?:\b|)" 1;
|
|
"~*(?:\b)inet\-traffic\.com(?:\b|)" 1;
|
|
"~*(?:\b)infazavr\.ru(?:\b|)" 1;
|
|
"~*(?:\b)infektsii\.com(?:\b|)" 1;
|
|
"~*(?:\b)infobabki\.ru(?:\b|)" 1;
|
|
"~*(?:\b)infodocsportal\.com(?:\b|)" 1;
|
|
"~*(?:\b)infogame\.name(?:\b|)" 1;
|
|
"~*(?:\b)infokonkurs\.ru(?:\b|)" 1;
|
|
"~*(?:\b)informatiecentro\.be(?:\b|)" 1;
|
|
"~*(?:\b)infospot\.pt(?:\b|)" 1;
|
|
"~*(?:\b)infostatsvc\.com(?:\b|)" 1;
|
|
"~*(?:\b)infowarcraft\.ru(?:\b|)" 1;
|
|
"~*(?:\b)inmate\-locator\.us(?:\b|)" 1;
|
|
"~*(?:\b)innodgfdriverhm\.aircus\.com(?:\b|)" 1;
|
|
"~*(?:\b)innoslicon\.com(?:\b|)" 1;
|
|
"~*(?:\b)inome\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)insider\.pro(?:\b|)" 1;
|
|
"~*(?:\b)insomniagamingfestival\.com(?:\b|)" 1;
|
|
"~*(?:\b)inspiring\-desperate\.tk(?:\b|)" 1;
|
|
"~*(?:\b)insta\-add\.pro(?:\b|)" 1;
|
|
"~*(?:\b)instabid\.tech(?:\b|)" 1;
|
|
"~*(?:\b)instakink\.com(?:\b|)" 1;
|
|
"~*(?:\b)instasexyblog\.com(?:\b|)" 1;
|
|
"~*(?:\b)insurple\.com(?:\b|)" 1;
|
|
"~*(?:\b)in\-tandem\.co(?:\b|)" 1;
|
|
"~*(?:\b)integritylandscapeservices\.com(?:\b|)" 1;
|
|
"~*(?:\b)intelhdgraphicsgtdrive6w\.metroblog\.com(?:\b|)" 1;
|
|
"~*(?:\b)intellego\.info(?:\b|)" 1;
|
|
"~*(?:\b)intellekt21\.ru(?:\b|)" 1;
|
|
"~*(?:\b)intellektmedia\.at(?:\b|)" 1;
|
|
"~*(?:\b)interesnie\-faktu\.ru(?:\b|)" 1;
|
|
"~*(?:\b)interferencer\.ru(?:\b|)" 1;
|
|
"~*(?:\b)interfucks\.net(?:\b|)" 1;
|
|
"~*(?:\b)interior\-stickers\.ru(?:\b|)" 1;
|
|
"~*(?:\b)intermesh\.net(?:\b|)" 1;
|
|
"~*(?:\b)internet\-apteka\.ru(?:\b|)" 1;
|
|
"~*(?:\b)internetartfair\.com(?:\b|)" 1;
|
|
"~*(?:\b)internetproviderstucson\.com(?:\b|)" 1;
|
|
"~*(?:\b)intervsem\.ru(?:\b|)" 1;
|
|
"~*(?:\b)intimshop\-fantasy\.ru(?:\b|)" 1;
|
|
"~*(?:\b)intim\-uslugi\.info(?:\b|)" 1;
|
|
"~*(?:\b)int\.search\.mywebsearch\.com(?:\b|)" 1;
|
|
"~*(?:\b)int\.search\.tb\.ask\.com(?:\b|)" 1;
|
|
"~*(?:\b)investingclub\.ru(?:\b|)" 1;
|
|
"~*(?:\b)investmac\.com(?:\b|)" 1;
|
|
"~*(?:\b)invest\-pamm\.ru(?:\b|)" 1;
|
|
"~*(?:\b)investpamm\.ru(?:\b|)" 1;
|
|
"~*(?:\b)investsuccess\.org(?:\b|)" 1;
|
|
"~*(?:\b)investyb\.com(?:\b|)" 1;
|
|
"~*(?:\b)investzalog\.ru(?:\b|)" 1;
|
|
"~*(?:\b)invitefashion\.com(?:\b|)" 1;
|
|
"~*(?:\b)invivo\.hu(?:\b|)" 1;
|
|
"~*(?:\b)inzn\.ru(?:\b|)" 1;
|
|
"~*(?:\b)io9\.com(?:\b|)" 1;
|
|
"~*(?:\b)iomoio\.net(?:\b|)" 1;
|
|
"~*(?:\b)iopeninghours\.co\.uk(?:\b|)" 1;
|
|
"~*(?:\b)ipchicken\.com(?:\b|)" 1;
|
|
"~*(?:\b)ip\-guide\.com(?:\b|)" 1;
|
|
"~*(?:\b)iphantom\.com(?:\b|)" 1;
|
|
"~*(?:\b)iplogger\.org(?:\b|)" 1;
|
|
"~*(?:\b)iplusbit\.blogspot\.co\.za(?:\b|)" 1;
|
|
"~*(?:\b)ipornox\.xxx(?:\b|)" 1;
|
|
"~*(?:\b)ipostroika\.ru(?:\b|)" 1;
|
|
"~*(?:\b)iptool\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)iqbazar\.ru(?:\b|)" 1;
|
|
"~*(?:\b)iqoption\-bin\.com(?:\b|)" 1;
|
|
"~*(?:\b)iqoption\.com(?:\b|)" 1;
|
|
"~*(?:\b)iqoption\.pro(?:\b|)" 1;
|
|
"~*(?:\b)iqs\.biz\.ua(?:\b|)" 1;
|
|
"~*(?:\b)iqupdatetmz\.win(?:\b|)" 1;
|
|
"~*(?:\b)iradiology\.ru(?:\b|)" 1;
|
|
"~*(?:\b)irkutsk\.online\-podarki\.com(?:\b|)" 1;
|
|
"~*(?:\b)irkutsk\.zrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)iron\-age\.info(?:\b|)" 1;
|
|
"~*(?:\b)irunfar\.com(?:\b|)" 1;
|
|
"~*(?:\b)iscblog\.info(?:\b|)" 1;
|
|
"~*(?:\b)i\-service\.kz(?:\b|)" 1;
|
|
"~*(?:\b)isistaylorporn\.info(?:\b|)" 1;
|
|
"~*(?:\b)isitpaleo\.info(?:\b|)" 1;
|
|
"~*(?:\b)iskalko\.ru(?:\b|)" 1;
|
|
"~*(?:\b)islamtoday\.co\.za(?:\b|)" 1;
|
|
"~*(?:\b)islandminingsupply\.wordpress\.com(?:\b|)" 1;
|
|
"~*(?:\b)isotoner\.com(?:\b|)" 1;
|
|
"~*(?:\b)isoveti\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ispaniya\-costa\-blanca\.ru(?:\b|)" 1;
|
|
"~*(?:\b)istanbulit\.com(?:\b|)" 1;
|
|
"~*(?:\b)istizanidineacontrolledsubstance\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)istizanidineanarcoticdrug\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)istizanidineanopiate\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)istizanidinelikexanax\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)istmira\.ru(?:\b|)" 1;
|
|
"~*(?:\b)istock\-mebel\.ru(?:\b|)" 1;
|
|
"~*(?:\b)istripper\.com(?:\b|)" 1;
|
|
"~*(?:\b)itag\.pw(?:\b|)" 1;
|
|
"~*(?:\b)itbc\.kiev\.ua(?:\b|)" 1;
|
|
"~*(?:\b)itch\.io(?:\b|)" 1;
|
|
"~*(?:\b)itis4you\.com(?:\b|)" 1;
|
|
"~*(?:\b)it\-max\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)itrevolution\.cf(?:\b|)" 1;
|
|
"~*(?:\b)itronics\.ca(?:\b|)" 1;
|
|
"~*(?:\b)itsdp3\.com(?:\b|)" 1;
|
|
"~*(?:\b)itservicesthatworkforyou\.com(?:\b|)" 1;
|
|
"~*(?:\b)iusstf\.org(?:\b|)" 1;
|
|
"~*(?:\b)ivanovo\.zrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)ivanstroi\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ivearchenceinflu\.cf(?:\b|)" 1;
|
|
"~*(?:\b)ivoiretechnocom\.ci(?:\b|)" 1;
|
|
"~*(?:\b)iwantedmoney\.com(?:\b|)" 1;
|
|
"~*(?:\b)iwantmyfreecash\.com(?:\b|)" 1;
|
|
"~*(?:\b)iwanttodeliver\.com(?:\b|)" 1;
|
|
"~*(?:\b)iweblist\.info(?:\b|)" 1;
|
|
"~*(?:\b)ix20\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ixora\.pro(?:\b|)" 1;
|
|
"~*(?:\b)iyasimasennka\.com(?:\b|)" 1;
|
|
"~*(?:\b)izhevsk\.xrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)izhevsk\.zrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)izismile\.com(?:\b|)" 1;
|
|
"~*(?:\b)izoll\.ru(?:\b|)" 1;
|
|
"~*(?:\b)j33x\.com(?:\b|)" 1;
|
|
"~*(?:\b)jabimgo\.pw(?:\b|)" 1;
|
|
"~*(?:\b)jacago\.com(?:\b|)" 1;
|
|
"~*(?:\b)jackpotchances\.com(?:\b|)" 1;
|
|
"~*(?:\b)jackwolfskinoutlet\.online(?:\b|)" 1;
|
|
"~*(?:\b)jagg\.info(?:\b|)" 1;
|
|
"~*(?:\b)james13prix\.info(?:\b|)" 1;
|
|
"~*(?:\b)jamiembrown\.com(?:\b|)" 1;
|
|
"~*(?:\b)janavibekken\.no(?:\b|)" 1;
|
|
"~*(?:\b)janerikholst\.se(?:\b|)" 1;
|
|
"~*(?:\b)janettabridal\.com(?:\b|)" 1;
|
|
"~*(?:\b)japan\-bearings\.ru(?:\b|)" 1;
|
|
"~*(?:\b)japfm\.com(?:\b|)" 1;
|
|
"~*(?:\b)jasonpartington\.com(?:\b|)" 1;
|
|
"~*(?:\b)javatex\.co\.id(?:\b|)" 1;
|
|
"~*(?:\b)javcoast\.com(?:\b|)" 1;
|
|
"~*(?:\b)jav\-fetish\.com(?:\b|)" 1;
|
|
"~*(?:\b)jav\-fetish\.site(?:\b|)" 1;
|
|
"~*(?:\b)javidol\.site(?:\b|)" 1;
|
|
"~*(?:\b)javitas\.info(?:\b|)" 1;
|
|
"~*(?:\b)javlibrary\.cc(?:\b|)" 1;
|
|
"~*(?:\b)javrip\.net(?:\b|)" 1;
|
|
"~*(?:\b)javspace\.net(?:\b|)" 1;
|
|
"~*(?:\b)javstock\.com(?:\b|)" 1;
|
|
"~*(?:\b)jav\-way\.site(?:\b|)" 1;
|
|
"~*(?:\b)javxxx18\.com(?:\b|)" 1;
|
|
"~*(?:\b)jaxcube\.info(?:\b|)" 1;
|
|
"~*(?:\b)jbl\-charge\.info(?:\b|)" 1;
|
|
"~*(?:\b)je7\.us(?:\b|)" 1;
|
|
"~*(?:\b)jennyfire\.ru(?:\b|)" 1;
|
|
"~*(?:\b)jeremyeaton\.co(?:\b|)" 1;
|
|
"~*(?:\b)jerseychinabizwholesale\.com(?:\b|)" 1;
|
|
"~*(?:\b)jerseychinabizwholesale\.us(?:\b|)" 1;
|
|
"~*(?:\b)jerseysbizwholesalecheap\.com(?:\b|)" 1;
|
|
"~*(?:\b)jerseyschinabizwholesale\.us(?:\b|)" 1;
|
|
"~*(?:\b)jerseyssportsshop\.com(?:\b|)" 1;
|
|
"~*(?:\b)jerseyswholesalechinalimited\.com(?:\b|)" 1;
|
|
"~*(?:\b)jerseywholesalebizchina\.com(?:\b|)" 1;
|
|
"~*(?:\b)jerseywholesalechinabiz\.com(?:\b|)" 1;
|
|
"~*(?:\b)jerseywholesaleelitestore\.com(?:\b|)" 1;
|
|
"~*(?:\b)jestr\.org(?:\b|)" 1;
|
|
"~*(?:\b)jetsli\.de(?:\b|)" 1;
|
|
"~*(?:\b)jewelryandfiligree\.com(?:\b|)" 1;
|
|
"~*(?:\b)jikoman\.info(?:\b|)" 1;
|
|
"~*(?:\b)jillepille\.com(?:\b|)" 1;
|
|
"~*(?:\b)jimmychoosale\.online(?:\b|)" 1;
|
|
"~*(?:\b)jjbabskoe\.ru(?:\b|)" 1;
|
|
"~*(?:\b)jmat\.cn(?:\b|)" 1;
|
|
"~*(?:\b)job\.icivil\.ir(?:\b|)" 1;
|
|
"~*(?:\b)jobmarket\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)joessmogtestonly\.com(?:\b|)" 1;
|
|
"~*(?:\b)johannesburgsingles\.co\.za(?:\b|)" 1;
|
|
"~*(?:\b)johnrobertsoninc\.com(?:\b|)" 1;
|
|
"~*(?:\b)joingames\.org(?:\b|)" 1;
|
|
"~*(?:\b)jolic2\.com(?:\b|)" 1;
|
|
"~*(?:\b)jongose\.ninja(?:\b|)" 1;
|
|
"~*(?:\b)jose\.mulinohouse\.co(?:\b|)" 1;
|
|
"~*(?:\b)journalhome\.com(?:\b|)" 1;
|
|
"~*(?:\b)journeydownthescale\.info(?:\b|)" 1;
|
|
"~*(?:\b)jovencitas\.gratis(?:\b|)" 1;
|
|
"~*(?:\b)jpcycles\.com(?:\b|)" 1;
|
|
"~*(?:\b)jrcigars\.com(?:\b|)" 1;
|
|
"~*(?:\b)jrpmakati\.com(?:\b|)" 1;
|
|
"~*(?:\b)j\-times\.ru(?:\b|)" 1;
|
|
"~*(?:\b)juliadiets\.com(?:\b|)" 1;
|
|
"~*(?:\b)juliaworld\.net(?:\b|)" 1;
|
|
"~*(?:\b)jumptap\.com(?:\b|)" 1;
|
|
"~*(?:\b)junglenet\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)jurajskie\.info(?:\b|)" 1;
|
|
"~*(?:\b)jus0wil\.pp\.ua(?:\b|)" 1;
|
|
"~*(?:\b)justbcause\.com(?:\b|)" 1;
|
|
"~*(?:\b)justdating\.online(?:\b|)" 1;
|
|
"~*(?:\b)justkillingti\.me(?:\b|)" 1;
|
|
"~*(?:\b)justprofit\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)justucalling32211123456789\.tk(?:\b|)" 1;
|
|
"~*(?:\b)jwss\.cc(?:\b|)" 1;
|
|
"~*(?:\b)jyvopys\.com(?:\b|)" 1;
|
|
"~*(?:\b)kaac\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kabbalah\-red\-bracelets\.com(?:\b|)" 1;
|
|
"~*(?:\b)kadashihotel\.com(?:\b|)" 1;
|
|
"~*(?:\b)kaidalibor\.de(?:\b|)" 1;
|
|
"~*(?:\b)kakablog\.net(?:\b|)" 1;
|
|
"~*(?:\b)kakadu\-interior\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)kalandranis\.gr(?:\b|)" 1;
|
|
"~*(?:\b)kalb\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kaliningrad\.zrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)kamagragelusa\.net(?:\b|)" 1;
|
|
"~*(?:\b)kamalsinha\.com(?:\b|)" 1;
|
|
"~*(?:\b)kambasoft\.com(?:\b|)" 1;
|
|
"~*(?:\b)kam\-dom\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kamen\-e\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kamorel\.com(?:\b|)" 1;
|
|
"~*(?:\b)kandidos\.com(?:\b|)" 1;
|
|
"~*(?:\b)kanimage\.com(?:\b|)" 1;
|
|
"~*(?:\b)karachev\-city\.ru(?:\b|)" 1;
|
|
"~*(?:\b)karadene\.com(?:\b|)" 1;
|
|
"~*(?:\b)karaganda\.xkaz\.org(?:\b|)" 1;
|
|
"~*(?:\b)kareliatobacco\.ru(?:\b|)" 1;
|
|
"~*(?:\b)karpun\-iris\.ru(?:\b|)" 1;
|
|
"~*(?:\b)karting196\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kartiniresto\.com(?:\b|)" 1;
|
|
"~*(?:\b)karusel\-market\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kashubadesign\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kasino\-money\.pw(?:\b|)" 1;
|
|
"~*(?:\b)katadhin\.co(?:\b|)" 1;
|
|
"~*(?:\b)katjimej\.blog\.fc2\.com(?:\b|)" 1;
|
|
"~*(?:\b)katushka\.net(?:\b|)" 1;
|
|
"~*(?:\b)kazan\.xrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)kazan\.zrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)kazinogames\.lv(?:\b|)" 1;
|
|
"~*(?:\b)kazka\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kaz\.kz(?:\b|)" 1;
|
|
"~*(?:\b)kazrent\.com(?:\b|)" 1;
|
|
"~*(?:\b)kchaxton\.com(?:\b|)" 1;
|
|
"~*(?:\b)keenoutlet\.online(?:\b|)" 1;
|
|
"~*(?:\b)keki\.info(?:\b|)" 1;
|
|
"~*(?:\b)kemerovo\.zrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)kenaba\.su(?:\b|)" 1;
|
|
"~*(?:\b)kerch\.site(?:\b|)" 1;
|
|
"~*(?:\b)kerei\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kerwinandcariza\.com(?:\b|)" 1;
|
|
"~*(?:\b)ketoanhanoi\.info(?:\b|)" 1;
|
|
"~*(?:\b)ketrzyn\.pl(?:\b|)" 1;
|
|
"~*(?:\b)kevblog\.top(?:\b|)" 1;
|
|
"~*(?:\b)keyhantercume\.com(?:\b|)" 1;
|
|
"~*(?:\b)keywesthideaways\.co(?:\b|)" 1;
|
|
"~*(?:\b)keywordblocks\.com(?:\b|)" 1;
|
|
"~*(?:\b)keywordglobal\.co\.za(?:\b|)" 1;
|
|
"~*(?:\b)keywordhouse\.com(?:\b|)" 1;
|
|
"~*(?:\b)keywordhut\.com(?:\b|)" 1;
|
|
"~*(?:\b)keywordsdoctor\.com(?:\b|)" 1;
|
|
"~*(?:\b)keywordsking\.com(?:\b|)" 1;
|
|
"~*(?:\b)keywords\-monitoring\-success\.com(?:\b|)" 1;
|
|
"~*(?:\b)keywords\-monitoring\-your\-success\.com(?:\b|)" 1;
|
|
"~*(?:\b)keyword\-suggestions\.com(?:\b|)" 1;
|
|
"~*(?:\b)keywordsuggest\.org(?:\b|)" 1;
|
|
"~*(?:\b)keywordsuggests\.com(?:\b|)" 1;
|
|
"~*(?:\b)keywordteam\.net(?:\b|)" 1;
|
|
"~*(?:\b)kfon\.eu(?:\b|)" 1;
|
|
"~*(?:\b)khafre\.us(?:\b|)" 1;
|
|
"~*(?:\b)kichenaid\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kicknights\.gq(?:\b|)" 1;
|
|
"~*(?:\b)kidd\.reunionwatch\.com(?:\b|)" 1;
|
|
"~*(?:\b)kidskunst\.info(?:\b|)" 1;
|
|
"~*(?:\b)kihi\.gdn(?:\b|)" 1;
|
|
"~*(?:\b)kiinomaniak\.pl(?:\b|)" 1;
|
|
"~*(?:\b)kimcurlrvsms\.com(?:\b|)" 1;
|
|
"~*(?:\b)kinky\-fetishes\.com(?:\b|)" 1;
|
|
"~*(?:\b)kino2018\.cc(?:\b|)" 1;
|
|
"~*(?:\b)kino2018\.club(?:\b|)" 1;
|
|
"~*(?:\b)kinobaks\.com(?:\b|)" 1;
|
|
"~*(?:\b)kinobest\.pl(?:\b|)" 1;
|
|
"~*(?:\b)kinocccp\.net(?:\b|)" 1;
|
|
"~*(?:\b)kinoduh\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kino\-ecran\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kinofak\.net(?:\b|)" 1;
|
|
"~*(?:\b)kino\-filmi\.com(?:\b|)" 1;
|
|
"~*(?:\b)kinoflux\.net(?:\b|)" 1;
|
|
"~*(?:\b)kino\-fun\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kinogolos\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kinogonew\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kinohall\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kinohit1\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kino\-key\.info(?:\b|)" 1;
|
|
"~*(?:\b)kinomaniatv\.pl(?:\b|)" 1;
|
|
"~*(?:\b)kinoplen\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kinopolet\.net(?:\b|)" 1;
|
|
"~*(?:\b)kino\-rating\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kinosed\.net(?:\b|)" 1;
|
|
"~*(?:\b)kinostorm\.net(?:\b|)" 1;
|
|
"~*(?:\b)kinotorka\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kiprinform\.com(?:\b|)" 1;
|
|
"~*(?:\b)kirov\.zrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)kiskinhouse\.com(?:\b|)" 1;
|
|
"~*(?:\b)kit\-opt\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kiwe\-analytics\.com(?:\b|)" 1;
|
|
"~*(?:\b)kiwi237au\.tk(?:\b|)" 1;
|
|
"~*(?:\b)kladrus\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kleine\-titten\.biz(?:\b|)" 1;
|
|
"~*(?:\b)klejonka\.info(?:\b|)" 1;
|
|
"~*(?:\b)kletkimehan\.ru(?:\b|)" 1;
|
|
"~*(?:\b)klikbonus\.com(?:\b|)" 1;
|
|
"~*(?:\b)kliksaya\.com(?:\b|)" 1;
|
|
"~*(?:\b)klin3952\.ru(?:\b|)" 1;
|
|
"~*(?:\b)klitimg\.pw(?:\b|)" 1;
|
|
"~*(?:\b)klosetkitten\.com(?:\b|)" 1;
|
|
"~*(?:\b)klumba55\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kmd\-pto\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kmgamex\.cf(?:\b|)" 1;
|
|
"~*(?:\b)kndxbkdx\.bloger\.index\.hr(?:\b|)" 1;
|
|
"~*(?:\b)knigonosha\.net(?:\b|)" 1;
|
|
"~*(?:\b)knogg\.net(?:\b|)" 1;
|
|
"~*(?:\b)knowsitall\.info(?:\b|)" 1;
|
|
"~*(?:\b)knowyournextmove\.com(?:\b|)" 1;
|
|
"~*(?:\b)kochanelli\.com(?:\b|)" 1;
|
|
"~*(?:\b)kol\-energo\.ru(?:\b|)" 1;
|
|
"~*(?:\b)koleso24\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)kollekcioner\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kollesa\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kolotiloff\.ru(?:\b|)" 1;
|
|
"~*(?:\b)komp\-pomosch\.ru(?:\b|)" 1;
|
|
"~*(?:\b)komputernaya\-pomosh\-moscow\.ru(?:\b|)" 1;
|
|
"~*(?:\b)komputers\-best\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kongoultry\.net(?:\b|)" 1;
|
|
"~*(?:\b)kongruan\.com(?:\b|)" 1;
|
|
"~*(?:\b)konica\.kz(?:\b|)" 1;
|
|
"~*(?:\b)konkursov\.net(?:\b|)" 1;
|
|
"~*(?:\b)konkursowo\-24\.pl(?:\b|)" 1;
|
|
"~*(?:\b)konoplisemena\.com(?:\b|)" 1;
|
|
"~*(?:\b)konpax\.com(?:\b|)" 1;
|
|
"~*(?:\b)konteiner24\.com(?:\b|)" 1;
|
|
"~*(?:\b)konturkrasoty\.ru(?:\b|)" 1;
|
|
"~*(?:\b)koopilka\.com(?:\b|)" 1;
|
|
"~*(?:\b)kopihijau\.info(?:\b|)" 1;
|
|
"~*(?:\b)koptims\.tiu\.ru(?:\b|)" 1;
|
|
"~*(?:\b)koral\.se(?:\b|)" 1;
|
|
"~*(?:\b)koronirealestate\.gr(?:\b|)" 1;
|
|
"~*(?:\b)kosmetyki\.tm\.pl(?:\b|)" 1;
|
|
"~*(?:\b)kosova\.de(?:\b|)" 1;
|
|
"~*(?:\b)kostenloser\-sex\.com(?:\b|)" 1;
|
|
"~*(?:\b)kostenlos\-sexvideos\.com(?:\b|)" 1;
|
|
"~*(?:\b)kosynka\-games\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kotaku\.com(?:\b|)" 1;
|
|
"~*(?:\b)kountrylife\.com(?:\b|)" 1;
|
|
"~*(?:\b)koversite\.info(?:\b|)" 1;
|
|
"~*(?:\b)kovesszucs\.atw\.hu(?:\b|)" 1;
|
|
"~*(?:\b)kovrenok\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kozhniebolezni\.com(?:\b|)" 1;
|
|
"~*(?:\b)krafte\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kraljeva\-sutjeska\.com(?:\b|)" 1;
|
|
"~*(?:\b)krasivoe\-hd\.com(?:\b|)" 1;
|
|
"~*(?:\b)krasivoe\-hd\.net(?:\b|)" 1;
|
|
"~*(?:\b)krasivye\-devushki\.net(?:\b|)" 1;
|
|
"~*(?:\b)krasnodar\-avtolombards\.ru(?:\b|)" 1;
|
|
"~*(?:\b)krasnodar\.ru(?:\b|)" 1;
|
|
"~*(?:\b)krasnodar\.xrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)krasnodar\.zrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)krassh\.ru(?:\b|)" 1;
|
|
"~*(?:\b)krasula\.pp\.ua(?:\b|)" 1;
|
|
"~*(?:\b)kreativperlen\.ch(?:\b|)" 1;
|
|
"~*(?:\b)kredit\-blog\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kredit\-pod\-zalog\-krasnodar\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kretpicf\.pw(?:\b|)" 1;
|
|
"~*(?:\b)kriokomora\.info(?:\b|)" 1;
|
|
"~*(?:\b)krynica\.info(?:\b|)" 1;
|
|
"~*(?:\b)ks1234\.com(?:\b|)" 1;
|
|
"~*(?:\b)ktotut\.net(?:\b|)" 1;
|
|
"~*(?:\b)ku6\.com(?:\b|)" 1;
|
|
"~*(?:\b)kumuk\.info(?:\b|)" 1;
|
|
"~*(?:\b)kung\-fu\-ru\.com(?:\b|)" 1;
|
|
"~*(?:\b)kunstaktien\.info(?:\b|)" 1;
|
|
"~*(?:\b)kupiproday\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)kupit\-adenu\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kurbappeal\.info(?:\b|)" 1;
|
|
"~*(?:\b)kursy\-ege\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kurwa\.win(?:\b|)" 1;
|
|
"~*(?:\b)kustanay\.kz(?:\b|)" 1;
|
|
"~*(?:\b)kutikomi\.net(?:\b|)" 1;
|
|
"~*(?:\b)kuzinsp\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kvartira\-sutochno\.com(?:\b|)" 1;
|
|
"~*(?:\b)kvartir\-remont\.biz(?:\b|)" 1;
|
|
"~*(?:\b)kvartiry\-remont\.ucoz\.ru(?:\b|)" 1;
|
|
"~*(?:\b)kw21\.org(?:\b|)" 1;
|
|
"~*(?:\b)kwzf\.net(?:\b|)" 1;
|
|
"~*(?:\b)laapp\.com(?:\b|)" 1;
|
|
"~*(?:\b)labafydjxa\.su(?:\b|)" 1;
|
|
"~*(?:\b)labelwater\.se(?:\b|)" 1;
|
|
"~*(?:\b)labplus\.ru(?:\b|)" 1;
|
|
"~*(?:\b)labvis\.host\.sk(?:\b|)" 1;
|
|
"~*(?:\b)lacapilla\.info(?:\b|)" 1;
|
|
"~*(?:\b)lacasamorett\.com(?:\b|)" 1;
|
|
"~*(?:\b)lacave\.ntic\.fr(?:\b|)" 1;
|
|
"~*(?:\b)lacloop\.info(?:\b|)" 1;
|
|
"~*(?:\b)ladov\.ru(?:\b|)" 1;
|
|
"~*(?:\b)laexotic\.com(?:\b|)" 1;
|
|
"~*(?:\b)la\-fa\.ru(?:\b|)" 1;
|
|
"~*(?:\b)lafourmiliaire\.com(?:\b|)" 1;
|
|
"~*(?:\b)lafriore\.ru(?:\b|)" 1;
|
|
"~*(?:\b)lakomka\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)lalalove\.ru(?:\b|)" 1;
|
|
"~*(?:\b)lampokrat\.ws(?:\b|)" 1;
|
|
"~*(?:\b)lanadelreyfans\.us(?:\b|)" 1;
|
|
"~*(?:\b)lanasshop\.ru(?:\b|)" 1;
|
|
"~*(?:\b)lancheck\.net(?:\b|)" 1;
|
|
"~*(?:\b)landinez\.co(?:\b|)" 1;
|
|
"~*(?:\b)landmania\.ru(?:\b|)" 1;
|
|
"~*(?:\b)landoftracking\.com(?:\b|)" 1;
|
|
"~*(?:\b)landreferat\.ru(?:\b|)" 1;
|
|
"~*(?:\b)landscaping\.center(?:\b|)" 1;
|
|
"~*(?:\b)languagecode\.com(?:\b|)" 1;
|
|
"~*(?:\b)lankarns\.com(?:\b|)" 1;
|
|
"~*(?:\b)laparfumotec\.com(?:\b|)" 1;
|
|
"~*(?:\b)lapitec\.eu(?:\b|)" 1;
|
|
"~*(?:\b)laptop\-4\-less\.com(?:\b|)" 1;
|
|
"~*(?:\b)laptoper\.net(?:\b|)" 1;
|
|
"~*(?:\b)larchik\.net(?:\b|)" 1;
|
|
"~*(?:\b)larger\.io(?:\b|)" 1;
|
|
"~*(?:\b)larose\.jb2c\.me(?:\b|)" 1;
|
|
"~*(?:\b)larutti\.ru(?:\b|)" 1;
|
|
"~*(?:\b)laserpen\.club(?:\b|)" 1;
|
|
"~*(?:\b)lashstudia\.ru(?:\b|)" 1;
|
|
"~*(?:\b)lasvegaslockandsafe\.com(?:\b|)" 1;
|
|
"~*(?:\b)laudit\.ru(?:\b|)" 1;
|
|
"~*(?:\b)laulini\.soclog\.se(?:\b|)" 1;
|
|
"~*(?:\b)law\-check\-eight\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)law\-check\-nine\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)law\-check\-seven\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)law\-check\-two\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)lawyers\.cafe(?:\b|)" 1;
|
|
"~*(?:\b)lawyersinfo\.org(?:\b|)" 1;
|
|
"~*(?:\b)laxdrills\.com(?:\b|)" 1;
|
|
"~*(?:\b)laxob\.com(?:\b|)" 1;
|
|
"~*(?:\b)layola\.biz\.tc(?:\b|)" 1;
|
|
"~*(?:\b)lazymanyoga\.com(?:\b|)" 1;
|
|
"~*(?:\b)lazy\-z\.com(?:\b|)" 1;
|
|
"~*(?:\b)ldrtrack\.com(?:\b|)" 1;
|
|
"~*(?:\b)leadn\.pl(?:\b|)" 1;
|
|
"~*(?:\b)leadwayau\.com(?:\b|)" 1;
|
|
"~*(?:\b)leboard\.ru(?:\b|)" 1;
|
|
"~*(?:\b)lecbter\-relationships\.ga(?:\b|)" 1;
|
|
"~*(?:\b)lechenie\-gemorroya\.com(?:\b|)" 1;
|
|
"~*(?:\b)lechtaczka\.net(?:\b|)" 1;
|
|
"~*(?:\b)le\-clos\-des\-alouettes\.com(?:\b|)" 1;
|
|
"~*(?:\b)ledis\.top(?:\b|)" 1;
|
|
"~*(?:\b)ledpolice\.ru(?:\b|)" 1;
|
|
"~*(?:\b)leftofcentrist\.com(?:\b|)" 1;
|
|
"~*(?:\b)legalrc\.biz(?:\b|)" 1;
|
|
"~*(?:\b)legionalpha\.com(?:\b|)" 1;
|
|
"~*(?:\b)lego4x4\.ru(?:\b|)" 1;
|
|
"~*(?:\b)lennatin\.info(?:\b|)" 1;
|
|
"~*(?:\b)lenvred\.org(?:\b|)" 1;
|
|
"~*(?:\b)lernur\.net(?:\b|)" 1;
|
|
"~*(?:\b)lerporn\.info(?:\b|)" 1;
|
|
"~*(?:\b)lesbian\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)lescinq\.com(?:\b|)" 1;
|
|
"~*(?:\b)letmacworkfaster\.site(?:\b|)" 1;
|
|
"~*(?:\b)letmacworkfaster\.world(?:\b|)" 1;
|
|
"~*(?:\b)letmacwork\.world(?:\b|)" 1;
|
|
"~*(?:\b)letolove\.ru(?:\b|)" 1;
|
|
"~*(?:\b)letsart\.ru(?:\b|)" 1;
|
|
"~*(?:\b)letslowbefast\.site(?:\b|)" 1;
|
|
"~*(?:\b)letslowbefast\.today(?:\b|)" 1;
|
|
"~*(?:\b)letsrepair\.in(?:\b|)" 1;
|
|
"~*(?:\b)letto\.by(?:\b|)" 1;
|
|
"~*(?:\b)levaquin750mg\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)lexaprogeneric\.link(?:\b|)" 1;
|
|
"~*(?:\b)lezbiyanki\.net(?:\b|)" 1;
|
|
"~*(?:\b)lflash\.ru(?:\b|)" 1;
|
|
"~*(?:\b)libertybilisim\.com(?:\b|)" 1;
|
|
"~*(?:\b)lida\-ru\.com(?:\b|)" 1;
|
|
"~*(?:\b)lider\-zhaluzi\.kiev\.ua(?:\b|)" 1;
|
|
"~*(?:\b)li\-er\.ru(?:\b|)" 1;
|
|
"~*(?:\b)lietaer\.com(?:\b|)" 1;
|
|
"~*(?:\b)life\.biz\.ua(?:\b|)" 1;
|
|
"~*(?:\b)lifebyleese\.com(?:\b|)" 1;
|
|
"~*(?:\b)lifehacĸer\.com(?:\b|)" 1;
|
|
"~*(?:\b)life\-instyle\.com(?:\b|)" 1;
|
|
"~*(?:\b)lifeinsurancekb\.com(?:\b|)" 1;
|
|
"~*(?:\b)liffa\.ru(?:\b|)" 1;
|
|
"~*(?:\b)light\.ifmo\.ru(?:\b|)" 1;
|
|
"~*(?:\b)lightinghomes\.net(?:\b|)" 1;
|
|
"~*(?:\b)lignofix\.ua(?:\b|)" 1;
|
|
"~*(?:\b)likesdesign\.com(?:\b|)" 1;
|
|
"~*(?:\b)likesuccess\.com(?:\b|)" 1;
|
|
"~*(?:\b)likrot\.com(?:\b|)" 1;
|
|
"~*(?:\b)liky\.co\.ua(?:\b|)" 1;
|
|
"~*(?:\b)limads\.men(?:\b|)" 1;
|
|
"~*(?:\b)limtu\.ifmo\.ru(?:\b|)" 1;
|
|
"~*(?:\b)lincolntheatre\.com(?:\b|)" 1;
|
|
"~*(?:\b)linerdrilling\.com(?:\b|)" 1;
|
|
"~*(?:\b)lineshops\.biz(?:\b|)" 1;
|
|
"~*(?:\b)link\.ac(?:\b|)" 1;
|
|
"~*(?:\b)linkarena\.com(?:\b|)" 1;
|
|
"~*(?:\b)linkbolic\.com(?:\b|)" 1;
|
|
"~*(?:\b)linkbuddies\.com(?:\b|)" 1;
|
|
"~*(?:\b)linkbux\.ru(?:\b|)" 1;
|
|
"~*(?:\b)linkdebrideur\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)linkpulse\.com(?:\b|)" 1;
|
|
"~*(?:\b)linkredirect\.biz(?:\b|)" 1;
|
|
"~*(?:\b)linkrr\.com(?:\b|)" 1;
|
|
"~*(?:\b)linksharingt\.com(?:\b|)" 1;
|
|
"~*(?:\b)linkwithin\.com(?:\b|)" 1;
|
|
"~*(?:\b)lion\.bolegapakistan\.com(?:\b|)" 1;
|
|
"~*(?:\b)lion\.conboy\.us(?:\b|)" 1;
|
|
"~*(?:\b)lion\.misba\.us(?:\b|)" 1;
|
|
"~*(?:\b)lion\.playtap\.us(?:\b|)" 1;
|
|
"~*(?:\b)lion\.snapmap\.us(?:\b|)" 1;
|
|
"~*(?:\b)liquimondo\.com(?:\b|)" 1;
|
|
"~*(?:\b)liran\-locks\.com(?:\b|)" 1;
|
|
"~*(?:\b)lirunet\.ru(?:\b|)" 1;
|
|
"~*(?:\b)lisque\.batcave\.net(?:\b|)" 1;
|
|
"~*(?:\b)littleberry\.ru(?:\b|)" 1;
|
|
"~*(?:\b)littlecity\.ch(?:\b|)" 1;
|
|
"~*(?:\b)littlesunraiser\.com(?:\b|)" 1;
|
|
"~*(?:\b)liumimgx\.pw(?:\b|)" 1;
|
|
"~*(?:\b)liupis\.com(?:\b|)" 1;
|
|
"~*(?:\b)live\-cam6\.info(?:\b|)" 1;
|
|
"~*(?:\b)livefixer\.com(?:\b|)" 1;
|
|
"~*(?:\b)liveinternet\.ro(?:\b|)" 1;
|
|
"~*(?:\b)liveinternet\.ru(?:\b|)" 1;
|
|
"~*(?:\b)livejasmin\.com(?:\b|)" 1;
|
|
"~*(?:\b)liver\-chintai\.org(?:\b|)" 1;
|
|
"~*(?:\b)liverpool\.gsofootball\.com(?:\b|)" 1;
|
|
"~*(?:\b)live\-sexcam\.tk(?:\b|)" 1;
|
|
"~*(?:\b)live\-sexchat\.ru(?:\b|)" 1;
|
|
"~*(?:\b)liveshoppersmac\.com(?:\b|)" 1;
|
|
"~*(?:\b)livetsomudvekslingstudent\.bloggersdelight\.dk(?:\b|)" 1;
|
|
"~*(?:\b)liveu\.infoteka\.hu(?:\b|)" 1;
|
|
"~*(?:\b)livingcanarias\.com(?:\b|)" 1;
|
|
"~*(?:\b)livingroomdecor\.info(?:\b|)" 1;
|
|
"~*(?:\b)lizace\.com(?:\b|)" 1;
|
|
"~*(?:\b)ljusihus\.se(?:\b|)" 1;
|
|
"~*(?:\b)lkbennettoutlet\.online(?:\b|)" 1;
|
|
"~*(?:\b)lkbennettstore\.online(?:\b|)" 1;
|
|
"~*(?:\b)llastbuy\.ru(?:\b|)" 1;
|
|
"~*(?:\b)lmrauction\.com(?:\b|)" 1;
|
|
"~*(?:\b)loadingpages\.me(?:\b|)" 1;
|
|
"~*(?:\b)loadopia\.com(?:\b|)" 1;
|
|
"~*(?:\b)lob\.com\.ru(?:\b|)" 1;
|
|
"~*(?:\b)localflirtbuddies\.com(?:\b|)" 1;
|
|
"~*(?:\b)localmatchbook\.com(?:\b|)" 1;
|
|
"~*(?:\b)locatellicorretor\.com\.br(?:\b|)" 1;
|
|
"~*(?:\b)locationdesaison\.com(?:\b|)" 1;
|
|
"~*(?:\b)locimge\.pw(?:\b|)" 1;
|
|
"~*(?:\b)lockerz\.com(?:\b|)" 1;
|
|
"~*(?:\b)locksmith\.jp(?:\b|)" 1;
|
|
"~*(?:\b)locustdesign\.co(?:\b|)" 1;
|
|
"~*(?:\b)lodki\-pvh\.dp\.ua(?:\b|)" 1;
|
|
"~*(?:\b)loftdigital\.eu(?:\b|)" 1;
|
|
"~*(?:\b)loginduepunti\.it(?:\b|)" 1;
|
|
"~*(?:\b)lollypopgaming\.com(?:\b|)" 1;
|
|
"~*(?:\b)lolnex\.us(?:\b|)" 1;
|
|
"~*(?:\b)lol\-smurfs\.com(?:\b|)" 1;
|
|
"~*(?:\b)lombardfinder\.ru(?:\b|)" 1;
|
|
"~*(?:\b)lomb\.co(?:\b|)" 1;
|
|
"~*(?:\b)lombia\.co(?:\b|)" 1;
|
|
"~*(?:\b)lombia\.com(?:\b|)" 1;
|
|
"~*(?:\b)lomza\.info(?:\b|)" 1;
|
|
"~*(?:\b)lonely\-mature\.com(?:\b|)" 1;
|
|
"~*(?:\b)lonerangergames\.com(?:\b|)" 1;
|
|
"~*(?:\b)longadventure\.com(?:\b|)" 1;
|
|
"~*(?:\b)long\-beach\-air\-conditioning\.com(?:\b|)" 1;
|
|
"~*(?:\b)longgreen\.info(?:\b|)" 1;
|
|
"~*(?:\b)longlifelomilomi\.info(?:\b|)" 1;
|
|
"~*(?:\b)lookingglassemb\.com(?:\b|)" 1;
|
|
"~*(?:\b)losangeles\-ads\.com(?:\b|)" 1;
|
|
"~*(?:\b)lost\-alpha\.ru(?:\b|)" 1;
|
|
"~*(?:\b)lostaruban\.com(?:\b|)" 1;
|
|
"~*(?:\b)lostfilm\-online\.ru(?:\b|)" 1;
|
|
"~*(?:\b)lotto6888\.com(?:\b|)" 1;
|
|
"~*(?:\b)lottospring\.com(?:\b|)" 1;
|
|
"~*(?:\b)louboutinbooties\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)louboutinreplica\.pw(?:\b|)" 1;
|
|
"~*(?:\b)louboutinreplica\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)louboutinshoes\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)louisvuittonoutletstore\.net(?:\b|)" 1;
|
|
"~*(?:\b)lovasszovetseg\.hu(?:\b|)" 1;
|
|
"~*(?:\b)love\-baby\.cz(?:\b|)" 1;
|
|
"~*(?:\b)lovelycraftyhome\.com(?:\b|)" 1;
|
|
"~*(?:\b)lovi\-moment\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)lowephotos\.info(?:\b|)" 1;
|
|
"~*(?:\b)low\-format\.ru(?:\b|)" 1;
|
|
"~*(?:\b)lsex\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)lsp\-awak\-perikanan\.com(?:\b|)" 1;
|
|
"~*(?:\b)ltvperf\.com(?:\b|)" 1;
|
|
"~*(?:\b)lubetube\.com(?:\b|)" 1;
|
|
"~*(?:\b)luciddiagnostics\.in(?:\b|)" 1;
|
|
"~*(?:\b)luckyday\.world(?:\b|)" 1;
|
|
"~*(?:\b)luckyshop\.net\.ua(?:\b|)" 1;
|
|
"~*(?:\b)lulea\-auktionsverk\.se(?:\b|)" 1;
|
|
"~*(?:\b)lumb\.co(?:\b|)" 1;
|
|
"~*(?:\b)lunamedia\.co(?:\b|)" 1;
|
|
"~*(?:\b)lunchrock\.co(?:\b|)" 1;
|
|
"~*(?:\b)lutherstable\.org(?:\b|)" 1;
|
|
"~*(?:\b)luxmagazine\.cf(?:\b|)" 1;
|
|
"~*(?:\b)luxup\.ru(?:\b|)" 1;
|
|
"~*(?:\b)lyngdalhudterapi\.no(?:\b|)" 1;
|
|
"~*(?:\b)lyrics\.home\-task\.com(?:\b|)" 1;
|
|
"~*(?:\b)lyrster\.com(?:\b|)" 1;
|
|
"~*(?:\b)m0r0zk0\-krava\.ru(?:\b|)" 1;
|
|
"~*(?:\b)m1media\.net(?:\b|)" 1;
|
|
"~*(?:\b)m292\.info(?:\b|)" 1;
|
|
"~*(?:\b)m3gadownload\.pl(?:\b|)" 1;
|
|
"~*(?:\b)m4ever\.net(?:\b|)" 1;
|
|
"~*(?:\b)m5home\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mabdoola\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)macdamaged\.space(?:\b|)" 1;
|
|
"~*(?:\b)macdamaged\.tech(?:\b|)" 1;
|
|
"~*(?:\b)macfix\.life(?:\b|)" 1;
|
|
"~*(?:\b)machicon\-akihabara\.info(?:\b|)" 1;
|
|
"~*(?:\b)machicon\-ueno\.info(?:\b|)" 1;
|
|
"~*(?:\b)mackeeper\-center\.club(?:\b|)" 1;
|
|
"~*(?:\b)mackeeper\-land\-672695126\.us\-east\-1\.elb\.amazonaws\.com(?:\b|)" 1;
|
|
"~*(?:\b)macnewtech\.com(?:\b|)" 1;
|
|
"~*(?:\b)macotool\.com(?:\b|)" 1;
|
|
"~*(?:\b)macresource\.co\.uk(?:\b|)" 1;
|
|
"~*(?:\b)macrotek\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mac\-shield\.com(?:\b|)" 1;
|
|
"~*(?:\b)mactechinfo\.info(?:\b|)" 1;
|
|
"~*(?:\b)madot\.onlinewebshop\.net(?:\b|)" 1;
|
|
"~*(?:\b)mafa\-free\.com(?:\b|)" 1;
|
|
"~*(?:\b)mafcards\.ru(?:\b|)" 1;
|
|
"~*(?:\b)magazin\-pics\.ru(?:\b|)" 1;
|
|
"~*(?:\b)magazintiande\.ru(?:\b|)" 1;
|
|
"~*(?:\b)magda\-gadalka\.ru(?:\b|)" 1;
|
|
"~*(?:\b)magento\-crew\.net(?:\b|)" 1;
|
|
"~*(?:\b)magicalfind\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)magicdiet\.gq(?:\b|)" 1;
|
|
"~*(?:\b)magicplayer\-s\.acestream\.net(?:\b|)" 1;
|
|
"~*(?:\b)maglid\.ru(?:\b|)" 1;
|
|
"~*(?:\b)magnetic\-bracelets\.ru(?:\b|)" 1;
|
|
"~*(?:\b)magnetpress\.sk(?:\b|)" 1;
|
|
"~*(?:\b)mahnwachen\-helfen\.info(?:\b|)" 1;
|
|
"~*(?:\b)mail\.allnews24\.in(?:\b|)" 1;
|
|
"~*(?:\b)mailemedicinals\.com(?:\b|)" 1;
|
|
"~*(?:\b)mainhp\.net(?:\b|)" 1;
|
|
"~*(?:\b)mainlinehobby\.net(?:\b|)" 1;
|
|
"~*(?:\b)maju\.bluesalt\.co(?:\b|)" 1;
|
|
"~*(?:\b)makedo\.ru(?:\b|)" 1;
|
|
"~*(?:\b)make\-money\-online\.com(?:\b|)" 1;
|
|
"~*(?:\b)makemoneyonline\.com(?:\b|)" 1;
|
|
"~*(?:\b)makis\.nu(?:\b|)" 1;
|
|
"~*(?:\b)maladot\.com(?:\b|)" 1;
|
|
"~*(?:\b)malls\.com(?:\b|)" 1;
|
|
"~*(?:\b)mall\.uk(?:\b|)" 1;
|
|
"~*(?:\b)malwareremovalcenter\.com(?:\b|)" 1;
|
|
"~*(?:\b)mamasuper\.prom\.ua(?:\b|)" 1;
|
|
"~*(?:\b)managerpak204\.weebly\.com(?:\b|)" 1;
|
|
"~*(?:\b)manifestation\.betteroffers\.review(?:\b|)" 1;
|
|
"~*(?:\b)manimpotence\.com(?:\b|)" 1;
|
|
"~*(?:\b)manipulyator\-peterburg\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mansiondelrio\.co(?:\b|)" 1;
|
|
"~*(?:\b)mansparskats\.com(?:\b|)" 1;
|
|
"~*(?:\b)mantramusic\.ru(?:\b|)" 1;
|
|
"~*(?:\b)manualterap\.roleforum\.ru(?:\b|)" 1;
|
|
"~*(?:\b)manuscript\.su(?:\b|)" 1;
|
|
"~*(?:\b)manve\.info(?:\b|)" 1;
|
|
"~*(?:\b)manyresultshub\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)map028\.com(?:\b|)" 1;
|
|
"~*(?:\b)mapquestz\.us(?:\b|)" 1;
|
|
"~*(?:\b)maranbrinfo\.com\.br(?:\b|)" 1;
|
|
"~*(?:\b)mararoom\.ru(?:\b|)" 1;
|
|
"~*(?:\b)marblestyle\.ru(?:\b|)" 1;
|
|
"~*(?:\b)marcogrup\.com(?:\b|)" 1;
|
|
"~*(?:\b)marcoislandvacations\.net(?:\b|)" 1;
|
|
"~*(?:\b)marcowebonyodziezowe\.pl(?:\b|)" 1;
|
|
"~*(?:\b)maridan\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)marinetraffic\.com(?:\b|)" 1;
|
|
"~*(?:\b)marketingtechniques\.info(?:\b|)" 1;
|
|
"~*(?:\b)marketingvici\.com(?:\b|)" 1;
|
|
"~*(?:\b)marketland\.ml(?:\b|)" 1;
|
|
"~*(?:\b)markjaybeefractal\.com(?:\b|)" 1;
|
|
"~*(?:\b)marktforschung\-stuttgart\.com(?:\b|)" 1;
|
|
"~*(?:\b)marmitaco\.cat(?:\b|)" 1;
|
|
"~*(?:\b)marmotstore\.online(?:\b|)" 1;
|
|
"~*(?:\b)marsgatan\.com(?:\b|)" 1;
|
|
"~*(?:\b)martlinker\.com(?:\b|)" 1;
|
|
"~*(?:\b)marwer\.info(?:\b|)" 1;
|
|
"~*(?:\b)maslenka\.kz(?:\b|)" 1;
|
|
"~*(?:\b)massage\-info\.nl(?:\b|)" 1;
|
|
"~*(?:\b)masserect\.com(?:\b|)" 1;
|
|
"~*(?:\b)master\-muznachas\.ru(?:\b|)" 1;
|
|
"~*(?:\b)masterseek\.com(?:\b|)" 1;
|
|
"~*(?:\b)mastershef\.club(?:\b|)" 1;
|
|
"~*(?:\b)masthopehomes\.com(?:\b|)" 1;
|
|
"~*(?:\b)masturbate\.co\.uk(?:\b|)" 1;
|
|
"~*(?:\b)matb3aa\.com(?:\b|)" 1;
|
|
"~*(?:\b)matchpal\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)matematikus\.info(?:\b|)" 1;
|
|
"~*(?:\b)mathgym\.com\.au(?:\b|)" 1;
|
|
"~*(?:\b)matpre\.top(?:\b|)" 1;
|
|
"~*(?:\b)matrixalchemy\.com(?:\b|)" 1;
|
|
"~*(?:\b)matsdale\.com(?:\b|)" 1;
|
|
"~*(?:\b)mature\.free\-websites\.com(?:\b|)" 1;
|
|
"~*(?:\b)max\-eclat\.men(?:\b|)" 1;
|
|
"~*(?:\b)maximilitary\.ru(?:\b|)" 1;
|
|
"~*(?:\b)maximpartnerspr\.com(?:\b|)" 1;
|
|
"~*(?:\b)max\-p\.men(?:\b|)" 1;
|
|
"~*(?:\b)maxthon\.com(?:\b|)" 1;
|
|
"~*(?:\b)maxxtor\.eu(?:\b|)" 1;
|
|
"~*(?:\b)mazda\-roadsters\.com(?:\b|)" 1;
|
|
"~*(?:\b)m\.b00kmarks\.com(?:\b|)" 1;
|
|
"~*(?:\b)mb140\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mbiologi\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mcadamssupplyco\.com(?:\b|)" 1;
|
|
"~*(?:\b)mcar\.in\.ua(?:\b|)" 1;
|
|
"~*(?:\b)mcnamaratech\.com(?:\b|)" 1;
|
|
"~*(?:\b)mearns\-tractors\.co\.uk(?:\b|)" 1;
|
|
"~*(?:\b)mebel\-alait\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mebelcomplekt\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mebeldekor\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)mebel\-ekb\.com(?:\b|)" 1;
|
|
"~*(?:\b)mebel\-vstroika\.ru(?:\b|)" 1;
|
|
"~*(?:\b)meble\-bogart\.info(?:\b|)" 1;
|
|
"~*(?:\b)mecash\.ru(?:\b|)" 1;
|
|
"~*(?:\b)meccadumps\.net(?:\b|)" 1;
|
|
"~*(?:\b)medanestesia\.ru(?:\b|)" 1;
|
|
"~*(?:\b)meddesk\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mediafresh\.online(?:\b|)" 1;
|
|
"~*(?:\b)mediaoffers\.click(?:\b|)" 1;
|
|
"~*(?:\b)mediawhirl\.net(?:\b|)" 1;
|
|
"~*(?:\b)medicinacom\.ru(?:\b|)" 1;
|
|
"~*(?:\b)medicine\-4u\.org(?:\b|)" 1;
|
|
"~*(?:\b)medicines\-choice\.com(?:\b|)" 1;
|
|
"~*(?:\b)medicineseasybuy\.com(?:\b|)" 1;
|
|
"~*(?:\b)medicovi\.com(?:\b|)" 1;
|
|
"~*(?:\b)medictube\.ru(?:\b|)" 1;
|
|
"~*(?:\b)medi\-fitt\.hu(?:\b|)" 1;
|
|
"~*(?:\b)medispainstitute\.com\.au(?:\b|)" 1;
|
|
"~*(?:\b)medizinreisen\.de(?:\b|)" 1;
|
|
"~*(?:\b)medkletki\.ru(?:\b|)" 1;
|
|
"~*(?:\b)medkritika\.ru(?:\b|)" 1;
|
|
"~*(?:\b)medmajor\.ru(?:\b|)" 1;
|
|
"~*(?:\b)medosmotr\-ufa\.ru(?:\b|)" 1;
|
|
"~*(?:\b)meds\-online24\.com(?:\b|)" 1;
|
|
"~*(?:\b)medtherapy\.ru(?:\b|)" 1;
|
|
"~*(?:\b)meduza\-consult\.ru(?:\b|)" 1;
|
|
"~*(?:\b)med\-zdorovie\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)meendo\-free\-traffic\.ga(?:\b|)" 1;
|
|
"~*(?:\b)meet\-flirt\-dating\.com(?:\b|)" 1;
|
|
"~*(?:\b)meetingrainstorm\.bid(?:\b|)" 1;
|
|
"~*(?:\b)meetlocalchicks\.com(?:\b|)" 1;
|
|
"~*(?:\b)megaapteka\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mega\-bony\-2017\.pl(?:\b|)" 1;
|
|
"~*(?:\b)mega\-bony2017\.pl(?:\b|)" 1;
|
|
"~*(?:\b)megahdporno\.net(?:\b|)" 1;
|
|
"~*(?:\b)megaindex\.ru(?:\b|)" 1;
|
|
"~*(?:\b)megakino\.net(?:\b|)" 1;
|
|
"~*(?:\b)mega\-polis\.biz\.ua(?:\b|)" 1;
|
|
"~*(?:\b)megavolt\.net\.ua(?:\b|)" 1;
|
|
"~*(?:\b)meget\.co\.za(?:\b|)" 1;
|
|
"~*(?:\b)mejoresfotos\.eu(?:\b|)" 1;
|
|
"~*(?:\b)me\-ke\.com(?:\b|)" 1;
|
|
"~*(?:\b)meltwater\.com(?:\b|)" 1;
|
|
"~*(?:\b)member\-quiz\.com(?:\b|)" 1;
|
|
"~*(?:\b)members\.ghanaweb\.com(?:\b|)" 1;
|
|
"~*(?:\b)memberty\.com(?:\b|)" 1;
|
|
"~*(?:\b)menetie\.ru(?:\b|)" 1;
|
|
"~*(?:\b)menhealed\.net(?:\b|)" 1;
|
|
"~*(?:\b)mensandals\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)menstennisforums\.com(?:\b|)" 1;
|
|
"~*(?:\b)mere\.host\.sk(?:\b|)" 1;
|
|
"~*(?:\b)merryhouse\.co\.uk(?:\b|)" 1;
|
|
"~*(?:\b)mesbuta\.info(?:\b|)" 1;
|
|
"~*(?:\b)message\-warning\.net(?:\b|)" 1;
|
|
"~*(?:\b)mesto\-x\.com(?:\b|)" 1;
|
|
"~*(?:\b)metabar\.ru(?:\b|)" 1;
|
|
"~*(?:\b)metallosajding\.ru(?:\b|)" 1;
|
|
"~*(?:\b)metalonly\.info(?:\b|)" 1;
|
|
"~*(?:\b)metarip\.ru(?:\b|)" 1;
|
|
"~*(?:\b)metascephe\.com(?:\b|)" 1;
|
|
"~*(?:\b)metaxalonevstizanidine\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)methodsmarketing\.com(?:\b|)" 1;
|
|
"~*(?:\b)mex\-annushka\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mexicosleevegastrectomy\.com(?:\b|)" 1;
|
|
"~*(?:\b)mexicotravelnet\.com(?:\b|)" 1;
|
|
"~*(?:\b)mezaruk\.info(?:\b|)" 1;
|
|
"~*(?:\b)m\-google\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)mhi\-systems\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mhtr\.be(?:\b|)" 1;
|
|
"~*(?:\b)micasainvest\.com(?:\b|)" 1;
|
|
"~*(?:\b)michaelkorsoutlet\.store(?:\b|)" 1;
|
|
"~*(?:\b)michaelkorsoutletstore\.net(?:\b|)" 1;
|
|
"~*(?:\b)michaelkorssaleoutletonline\.net(?:\b|)" 1;
|
|
"~*(?:\b)microsearch\.ru(?:\b|)" 1;
|
|
"~*(?:\b)microsoftportal\.net(?:\b|)" 1;
|
|
"~*(?:\b)microstatic\.pl(?:\b|)" 1;
|
|
"~*(?:\b)middlerush\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)midst\.eu(?:\b|)" 1;
|
|
"~*(?:\b)mielec\.pl(?:\b|)" 1;
|
|
"~*(?:\b)migente\.com(?:\b|)" 1;
|
|
"~*(?:\b)mikozstop\.com(?:\b|)" 1;
|
|
"~*(?:\b)mikrobiologies\.ru(?:\b|)" 1;
|
|
"~*(?:\b)milblueprint\.com(?:\b|)" 1;
|
|
"~*(?:\b)militarysale\.pro(?:\b|)" 1;
|
|
"~*(?:\b)millionare\.com(?:\b|)" 1;
|
|
"~*(?:\b)mil\-stak\.com(?:\b|)" 1;
|
|
"~*(?:\b)mindbox\.co\.za(?:\b|)" 1;
|
|
"~*(?:\b)mindeyegames\.com(?:\b|)" 1;
|
|
"~*(?:\b)minecraft\-neo\.ru(?:\b|)" 1;
|
|
"~*(?:\b)minecraft\-rus\.org(?:\b|)" 1;
|
|
"~*(?:\b)minegam\.com(?:\b|)" 1;
|
|
"~*(?:\b)minet\.club(?:\b|)" 1;
|
|
"~*(?:\b)minharevisao\.com(?:\b|)" 1;
|
|
"~*(?:\b)mini\.7zap\.com(?:\b|)" 1;
|
|
"~*(?:\b)miniads\.ca(?:\b|)" 1;
|
|
"~*(?:\b)miniature\.io(?:\b|)" 1;
|
|
"~*(?:\b)minneapoliscopiers\.com(?:\b|)" 1;
|
|
"~*(?:\b)minyetki\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mir\-betting\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mir\-business\-24\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mir\-limuzinov\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mirmedinfo\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mirobuvi\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)mirtorrent\.net(?:\b|)" 1;
|
|
"~*(?:\b)mirzonru\.net(?:\b|)" 1;
|
|
"~*(?:\b)misandesign\.se(?:\b|)" 1;
|
|
"~*(?:\b)missclub\.info(?:\b|)" 1;
|
|
"~*(?:\b)missis\.top(?:\b|)" 1;
|
|
"~*(?:\b)missvietnam\.org(?:\b|)" 1;
|
|
"~*(?:\b)misswell\.net(?:\b|)" 1;
|
|
"~*(?:\b)misterjtbarbers\.com(?:\b|)" 1;
|
|
"~*(?:\b)mister\-shop\.com(?:\b|)" 1;
|
|
"~*(?:\b)mistr\-x\.org(?:\b|)" 1;
|
|
"~*(?:\b)mitrasound\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mixed\-wrestling\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mixtapetorrent\.com(?:\b|)" 1;
|
|
"~*(?:\b)mixx\.com(?:\b|)" 1;
|
|
"~*(?:\b)mjchamonix\.org(?:\b|)" 1;
|
|
"~*(?:\b)mlf\.hordo\.win(?:\b|)" 1;
|
|
"~*(?:\b)mlvc4zzw\.space(?:\b|)" 1;
|
|
"~*(?:\b)mmgq\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mmofreegames\.online(?:\b|)" 1;
|
|
"~*(?:\b)mmog\-play\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mmoguider\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mmostrike\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mmstat\.com(?:\b|)" 1;
|
|
"~*(?:\b)mncrftpcs\.com(?:\b|)" 1;
|
|
"~*(?:\b)mnogabukaff\.net(?:\b|)" 1;
|
|
"~*(?:\b)mnogolok\.info(?:\b|)" 1;
|
|
"~*(?:\b)mobifunapp\.weebly\.com(?:\b|)" 1;
|
|
"~*(?:\b)mobile\-appster\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mobilemedia\.md(?:\b|)" 1;
|
|
"~*(?:\b)mobile\.ok\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mobilierland\.com(?:\b|)" 1;
|
|
"~*(?:\b)mobioffertrck\.com(?:\b|)" 1;
|
|
"~*(?:\b)mobot\.site(?:\b|)" 1;
|
|
"~*(?:\b)mobplayer\.net(?:\b|)" 1;
|
|
"~*(?:\b)mobplayer\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mobsfun\.net(?:\b|)" 1;
|
|
"~*(?:\b)mobstarr\.com(?:\b|)" 1;
|
|
"~*(?:\b)mockupui\.com(?:\b|)" 1;
|
|
"~*(?:\b)modabutik\.ru(?:\b|)" 1;
|
|
"~*(?:\b)modenamebel\.ru(?:\b|)" 1;
|
|
"~*(?:\b)modnie\-futbolki\.net(?:\b|)" 1;
|
|
"~*(?:\b)moesen\-ficken\.com(?:\b|)" 1;
|
|
"~*(?:\b)moesonce\.com(?:\b|)" 1;
|
|
"~*(?:\b)moetomnenie\.com(?:\b|)" 1;
|
|
"~*(?:\b)moi\-glazki\.ru(?:\b|)" 1;
|
|
"~*(?:\b)moinozhki\.com(?:\b|)" 1;
|
|
"~*(?:\b)moivestiy\.biz(?:\b|)" 1;
|
|
"~*(?:\b)mojaocena\.com(?:\b|)" 1;
|
|
"~*(?:\b)moje\-recenze\.cz(?:\b|)" 1;
|
|
"~*(?:\b)mojowhois\.com(?:\b|)" 1;
|
|
"~*(?:\b)mojpregled\.com(?:\b|)" 1;
|
|
"~*(?:\b)mojpreskumanie\.com(?:\b|)" 1;
|
|
"~*(?:\b)mokrayakiska\.com(?:\b|)" 1;
|
|
"~*(?:\b)mole\.pluto\.ro(?:\b|)" 1;
|
|
"~*(?:\b)monarchfind\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)monarhs\.info(?:\b|)" 1;
|
|
"~*(?:\b)monclerboots\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)monclercheap\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)monclercoats\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)monclerjacketsoutlet\.pw(?:\b|)" 1;
|
|
"~*(?:\b)monclerjacketsoutlet\.win(?:\b|)" 1;
|
|
"~*(?:\b)moncleronline\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)moncleroutletonline\.pw(?:\b|)" 1;
|
|
"~*(?:\b)moncleroutletonline\.win(?:\b|)" 1;
|
|
"~*(?:\b)moncleroutletonline\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)monclervests\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)monetizationking\.net(?:\b|)" 1;
|
|
"~*(?:\b)monetizer\.com\-01\.site(?:\b|)" 1;
|
|
"~*(?:\b)money\-every\-day\.com(?:\b|)" 1;
|
|
"~*(?:\b)money\-for\-placing\-articles\.com(?:\b|)" 1;
|
|
"~*(?:\b)moneymaster\.ru(?:\b|)" 1;
|
|
"~*(?:\b)moneyteam24\.com(?:\b|)" 1;
|
|
"~*(?:\b)moneytop\.ru(?:\b|)" 1;
|
|
"~*(?:\b)moneyviking\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)moneyzzz\.ru(?:\b|)" 1;
|
|
"~*(?:\b)monitorwebsitespeed\.com(?:\b|)" 1;
|
|
"~*(?:\b)monsterdivx\.com(?:\b|)" 1;
|
|
"~*(?:\b)monsterdivx\.tv(?:\b|)" 1;
|
|
"~*(?:\b)montazhnic\.ru(?:\b|)" 1;
|
|
"~*(?:\b)monthlywinners\.com(?:\b|)" 1;
|
|
"~*(?:\b)montredemarque\.nl(?:\b|)" 1;
|
|
"~*(?:\b)moomi\-daeri\.com(?:\b|)" 1;
|
|
"~*(?:\b)moonci\.ru(?:\b|)" 1;
|
|
"~*(?:\b)morefastermac\.trade(?:\b|)" 1;
|
|
"~*(?:\b)more\-letom\.ru(?:\b|)" 1;
|
|
"~*(?:\b)morepoweronmac\.trade(?:\b|)" 1;
|
|
"~*(?:\b)morf\.snn\.gr(?:\b|)" 1;
|
|
"~*(?:\b)morlat\.altervista\.org(?:\b|)" 1;
|
|
"~*(?:\b)morocco\-nomad\-excursions\.com(?:\b|)" 1;
|
|
"~*(?:\b)moroccosurfadventures\.com(?:\b|)" 1;
|
|
"~*(?:\b)morpicert\.pw(?:\b|)" 1;
|
|
"~*(?:\b)moscow\-clining\.ru(?:\b|)" 1;
|
|
"~*(?:\b)moscow\.online\-podarki\.com(?:\b|)" 1;
|
|
"~*(?:\b)moscow\-region\.ru(?:\b|)" 1;
|
|
"~*(?:\b)moscow\.xrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)mosdverka\.ru(?:\b|)" 1;
|
|
"~*(?:\b)moskva\.nodup\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mosrif\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mossmesi\.com(?:\b|)" 1;
|
|
"~*(?:\b)mostantikor\.ru(?:\b|)" 1;
|
|
"~*(?:\b)most\.gov\.iq(?:\b|)" 1;
|
|
"~*(?:\b)most\-kerch\.org(?:\b|)" 1;
|
|
"~*(?:\b)motherboard\.vice\.com(?:\b|)" 1;
|
|
"~*(?:\b)mototsikl\.org(?:\b|)" 1;
|
|
"~*(?:\b)mountainstream\.ms(?:\b|)" 1;
|
|
"~*(?:\b)mouselink\.co(?:\b|)" 1;
|
|
"~*(?:\b)moviemail\-online\.co\.uk(?:\b|)" 1;
|
|
"~*(?:\b)movies\-in\-theaters\.net(?:\b|)" 1;
|
|
"~*(?:\b)moviezbonkerssk\.cf(?:\b|)" 1;
|
|
"~*(?:\b)mowser\.com(?:\b|)" 1;
|
|
"~*(?:\b)moxo\.com(?:\b|)" 1;
|
|
"~*(?:\b)moyakuhnia\.ru(?:\b|)" 1;
|
|
"~*(?:\b)moyaterapiya\.ru(?:\b|)" 1;
|
|
"~*(?:\b)moz\.com(?:\b|)" 1;
|
|
"~*(?:\b)mozello\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mp3downloadhq\.com(?:\b|)" 1;
|
|
"~*(?:\b)mp3films\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mp3ringtone\.info(?:\b|)" 1;
|
|
"~*(?:\b)mrbitsandbytes\.com(?:\b|)" 1;
|
|
"~*(?:\b)mrbojikobi4\.biz(?:\b|)" 1;
|
|
"~*(?:\b)mrcsa\.com\.au(?:\b|)" 1;
|
|
"~*(?:\b)mrinsidesales\.com(?:\b|)" 1;
|
|
"~*(?:\b)mriyadh\.com(?:\b|)" 1;
|
|
"~*(?:\b)mrlmedia\.net(?:\b|)" 1;
|
|
"~*(?:\b)mrmoneymustache\.com(?:\b|)" 1;
|
|
"~*(?:\b)mrpornogratis\.xxx(?:\b|)" 1;
|
|
"~*(?:\b)mrsdalloways\.com(?:\b|)" 1;
|
|
"~*(?:\b)mrvideospornogratis\.xxx(?:\b|)" 1;
|
|
"~*(?:\b)mrwhite\.biz(?:\b|)" 1;
|
|
"~*(?:\b)msfsaar\.de(?:\b|)" 1;
|
|
"~*(?:\b)msk\.afora\.ru(?:\b|)" 1;
|
|
"~*(?:\b)msk\-diplomat\.com(?:\b|)" 1;
|
|
"~*(?:\b)mtmtv\.info(?:\b|)" 1;
|
|
"~*(?:\b)mttwtrack\.com(?:\b|)" 1;
|
|
"~*(?:\b)mturkcontent\.com(?:\b|)" 1;
|
|
"~*(?:\b)muabancantho\.info(?:\b|)" 1;
|
|
"~*(?:\b)mug\-na\-chas\-moscow\.ru(?:\b|)" 1;
|
|
"~*(?:\b)muizre\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mulberryoutletonlineeu\.com(?:\b|)" 1;
|
|
"~*(?:\b)multgo\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mundoaberrante\.com(?:\b|)" 1;
|
|
"~*(?:\b)muschisexbilder\.com(?:\b|)" 1;
|
|
"~*(?:\b)musezone\.ru(?:\b|)" 1;
|
|
"~*(?:\b)musezone\.su(?:\b|)" 1;
|
|
"~*(?:\b)musflashtv\.com(?:\b|)" 1;
|
|
"~*(?:\b)music7s\.me(?:\b|)" 1;
|
|
"~*(?:\b)musicas\.baixar\-musicas\-gratis\.com(?:\b|)" 1;
|
|
"~*(?:\b)musicdaddy\.net(?:\b|)" 1;
|
|
"~*(?:\b)musicktab\.com(?:\b|)" 1;
|
|
"~*(?:\b)musicspire\.online(?:\b|)" 1;
|
|
"~*(?:\b)musicstock\.me(?:\b|)" 1;
|
|
"~*(?:\b)music\.utrolive\.ru(?:\b|)" 1;
|
|
"~*(?:\b)musicvidz\.ru(?:\b|)" 1;
|
|
"~*(?:\b)musirc\.com(?:\b|)" 1;
|
|
"~*(?:\b)mustat\.com(?:\b|)" 1;
|
|
"~*(?:\b)mustwineblog\.com(?:\b|)" 1;
|
|
"~*(?:\b)muycerdas\.xxx(?:\b|)" 1;
|
|
"~*(?:\b)muzaporn\.com(?:\b|)" 1;
|
|
"~*(?:\b)muz\-baza\.net(?:\b|)" 1;
|
|
"~*(?:\b)muznachas\-service\.ru(?:\b|)" 1;
|
|
"~*(?:\b)muz\-shoes\.ru(?:\b|)" 1;
|
|
"~*(?:\b)muztops\.ru(?:\b|)" 1;
|
|
"~*(?:\b)muz\-tracker\.net(?:\b|)" 1;
|
|
"~*(?:\b)mvpicton\.co\.uk(?:\b|)" 1;
|
|
"~*(?:\b)mwtpludn\.review(?:\b|)" 1;
|
|
"~*(?:\b)mxgetcode\.com(?:\b|)" 1;
|
|
"~*(?:\b)my\-aladin\.com(?:\b|)" 1;
|
|
"~*(?:\b)myanyone\.net(?:\b|)" 1;
|
|
"~*(?:\b)my\-bc\.ru(?:\b|)" 1;
|
|
"~*(?:\b)my\-big\-family\.com(?:\b|)" 1;
|
|
"~*(?:\b)mybinaryoptionsrobot\.com(?:\b|)" 1;
|
|
"~*(?:\b)myblogregistercm\.tk(?:\b|)" 1;
|
|
"~*(?:\b)mycaf\.it(?:\b|)" 1;
|
|
"~*(?:\b)my\-cash\-bot\.co(?:\b|)" 1;
|
|
"~*(?:\b)mycouponizemac\.com(?:\b|)" 1;
|
|
"~*(?:\b)mydearest\.co(?:\b|)" 1;
|
|
"~*(?:\b)mydeathspace\.com(?:\b|)" 1;
|
|
"~*(?:\b)mydirtyhobby\.com(?:\b|)" 1;
|
|
"~*(?:\b)mydirtystuff\.com(?:\b|)" 1;
|
|
"~*(?:\b)mydoctorok\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mydownloadengine\.com(?:\b|)" 1;
|
|
"~*(?:\b)mydownlodablefiles\.com(?:\b|)" 1;
|
|
"~*(?:\b)my\-floor\.in\.ua(?:\b|)" 1;
|
|
"~*(?:\b)myfreecams\.com(?:\b|)" 1;
|
|
"~*(?:\b)myfreemp3\.eu(?:\b|)" 1;
|
|
"~*(?:\b)myfreetutorials\.com(?:\b|)" 1;
|
|
"~*(?:\b)myftpupload\.com(?:\b|)" 1;
|
|
"~*(?:\b)mygameplus\.com(?:\b|)" 1;
|
|
"~*(?:\b)mygameplus\.ru(?:\b|)" 1;
|
|
"~*(?:\b)myghillie\.info(?:\b|)" 1;
|
|
"~*(?:\b)myhealthcare\.com(?:\b|)" 1;
|
|
"~*(?:\b)myhitmp3\.club(?:\b|)" 1;
|
|
"~*(?:\b)myhydros\.org(?:\b|)" 1;
|
|
"~*(?:\b)myindospace\.com(?:\b|)" 1;
|
|
"~*(?:\b)myiptest\.com(?:\b|)" 1;
|
|
"~*(?:\b)mykings\.pw(?:\b|)" 1;
|
|
"~*(?:\b)mylesosibirsk\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mylida\.org(?:\b|)" 1;
|
|
"~*(?:\b)myliveblog\.ru(?:\b|)" 1;
|
|
"~*(?:\b)mymercy\.info(?:\b|)" 1;
|
|
"~*(?:\b)mymobilemoneypages\.com(?:\b|)" 1;
|
|
"~*(?:\b)myonigroup\.com(?:\b|)" 1;
|
|
"~*(?:\b)myonlinepayday\.co(?:\b|)" 1;
|
|
"~*(?:\b)myperiod\.club(?:\b|)" 1;
|
|
"~*(?:\b)mypets\.by(?:\b|)" 1;
|
|
"~*(?:\b)myphotopipe\.com(?:\b|)" 1;
|
|
"~*(?:\b)myplaycity\.com(?:\b|)" 1;
|
|
"~*(?:\b)mypornfree\.ru(?:\b|)" 1;
|
|
"~*(?:\b)myprintscreen\.com(?:\b|)" 1;
|
|
"~*(?:\b)myseoconsultant\.com(?:\b|)" 1;
|
|
"~*(?:\b)mysexpics\.ru(?:\b|)" 1;
|
|
"~*(?:\b)myshopmatemac\.com(?:\b|)" 1;
|
|
"~*(?:\b)mystats\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)mywallpaper\.top(?:\b|)" 1;
|
|
"~*(?:\b)myxdate\.info(?:\b|)" 1;
|
|
"~*(?:\b)myyour\.eu(?:\b|)" 1;
|
|
"~*(?:\b)na15\.ru(?:\b|)" 1;
|
|
"~*(?:\b)nacap\.ru(?:\b|)" 1;
|
|
"~*(?:\b)nac\-bearings\.ru(?:\b|)" 1;
|
|
"~*(?:\b)nagdak\.ru(?:\b|)" 1;
|
|
"~*(?:\b)nailsimg\.com(?:\b|)" 1;
|
|
"~*(?:\b)najaden\.no(?:\b|)" 1;
|
|
"~*(?:\b)naj\-filmy24\.pl(?:\b|)" 1;
|
|
"~*(?:\b)nakozhe\.com(?:\b|)" 1;
|
|
"~*(?:\b)nalogovyy\-kodeks\.ru(?:\b|)" 1;
|
|
"~*(?:\b)nalogovyykodeks\.ru(?:\b|)" 1;
|
|
"~*(?:\b)namenectar\.com(?:\b|)" 1;
|
|
"~*(?:\b)napalm51\.nut\.cc(?:\b|)" 1;
|
|
"~*(?:\b)naperehresti\.info(?:\b|)" 1;
|
|
"~*(?:\b)naphukete\.ru(?:\b|)" 1;
|
|
"~*(?:\b)narco24\.me(?:\b|)" 1;
|
|
"~*(?:\b)nardulan\.com(?:\b|)" 1;
|
|
"~*(?:\b)narkologiya\-belgorod\.ru(?:\b|)" 1;
|
|
"~*(?:\b)narkologiya\-orel\.ru(?:\b|)" 1;
|
|
"~*(?:\b)narkologiya\-penza\.ru(?:\b|)" 1;
|
|
"~*(?:\b)narkologiya\-peterburg\.ru(?:\b|)" 1;
|
|
"~*(?:\b)narkologiya\-voronezh\.ru(?:\b|)" 1;
|
|
"~*(?:\b)narosty\.com(?:\b|)" 1;
|
|
"~*(?:\b)narutonaruto\.ru(?:\b|)" 1;
|
|
"~*(?:\b)nash\-krym\.info(?:\b|)" 1;
|
|
"~*(?:\b)nastroyke\.net(?:\b|)" 1;
|
|
"~*(?:\b)nastydollars\.com(?:\b|)" 1;
|
|
"~*(?:\b)natali\-forex\.com(?:\b|)" 1;
|
|
"~*(?:\b)nate\.com(?:\b|)" 1;
|
|
"~*(?:\b)na\-telefon\.biz(?:\b|)" 1;
|
|
"~*(?:\b)nationalbreakdown\.com(?:\b|)" 1;
|
|
"~*(?:\b)naturalbreakthroughsresearch\.com(?:\b|)" 1;
|
|
"~*(?:\b)naturalpharm\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)naturalshair\.site(?:\b|)" 1;
|
|
"~*(?:\b)naturtreenspicerx\.pw(?:\b|)" 1;
|
|
"~*(?:\b)naughtyconnect\.com(?:\b|)" 1;
|
|
"~*(?:\b)naval\.jislaaik\.com(?:\b|)" 1;
|
|
"~*(?:\b)navalwiki\.info(?:\b|)" 1;
|
|
"~*(?:\b)nbsproject\.ru(?:\b|)" 1;
|
|
"~*(?:\b)needtosellmyhousefast\.com(?:\b|)" 1;
|
|
"~*(?:\b)negociosdasha\.com(?:\b|)" 1;
|
|
"~*(?:\b)negral\.pluto\.ro(?:\b|)" 1;
|
|
"~*(?:\b)neks\.info(?:\b|)" 1;
|
|
"~*(?:\b)nelc\.edu\.eg(?:\b|)" 1;
|
|
"~*(?:\b)neobux\-bg\.info(?:\b|)" 1;
|
|
"~*(?:\b)neodownload\.webcam(?:\b|)" 1;
|
|
"~*(?:\b)nero\-us\.com(?:\b|)" 1;
|
|
"~*(?:\b)nerudlogistik\.ru(?:\b|)" 1;
|
|
"~*(?:\b)netallergy\.ru(?:\b|)" 1;
|
|
"~*(?:\b)netanalytics\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)netcheckcdn\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)netfacet\.net(?:\b|)" 1;
|
|
"~*(?:\b)netoil\.no(?:\b|)" 1;
|
|
"~*(?:\b)netpics\.org(?:\b|)" 1;
|
|
"~*(?:\b)net\-profits\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)net\-radar\.com(?:\b|)" 1;
|
|
"~*(?:\b)netvouz\.com(?:\b|)" 1;
|
|
"~*(?:\b)networkad\.net(?:\b|)" 1;
|
|
"~*(?:\b)networkcheck\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)nevansk\.ru(?:\b|)" 1;
|
|
"~*(?:\b)new7ob\.com(?:\b|)" 1;
|
|
"~*(?:\b)new\-apps\.ru(?:\b|)" 1;
|
|
"~*(?:\b)newhairstylesformen2014\.com(?:\b|)" 1;
|
|
"~*(?:\b)new\-post\.tk(?:\b|)" 1;
|
|
"~*(?:\b)newsperuse\.com(?:\b|)" 1;
|
|
"~*(?:\b)news\-readers\.ru(?:\b|)" 1;
|
|
"~*(?:\b)news\-speaker\.com(?:\b|)" 1;
|
|
"~*(?:\b)newstaffadsshop\.club(?:\b|)" 1;
|
|
"~*(?:\b)newstraveller\.ru(?:\b|)" 1;
|
|
"~*(?:\b)newstudio\.tv(?:\b|)" 1;
|
|
"~*(?:\b)newtechspb\.ru(?:\b|)" 1;
|
|
"~*(?:\b)newyorkhotelsmotels\.info(?:\b|)" 1;
|
|
"~*(?:\b)nextbackgroundcheck\.gq(?:\b|)" 1;
|
|
"~*(?:\b)nextconseil\.com(?:\b|)" 1;
|
|
"~*(?:\b)next\-dentists\.tk(?:\b|)" 1;
|
|
"~*(?:\b)nextlnk12\.com(?:\b|)" 1;
|
|
"~*(?:\b)nextrent\-crimea\.ru(?:\b|)" 1;
|
|
"~*(?:\b)nfljerseyscheapbiz\.us(?:\b|)" 1;
|
|
"~*(?:\b)nfljerseyscheapchinabiz\.com(?:\b|)" 1;
|
|
"~*(?:\b)nfljerseysforsalewholesaler\.com(?:\b|)" 1;
|
|
"~*(?:\b)nfljerseys\.online(?:\b|)" 1;
|
|
"~*(?:\b)nfvsz\.com(?:\b|)" 1;
|
|
"~*(?:\b)ngps1\.ru(?:\b|)" 1;
|
|
"~*(?:\b)nhl09\.ru(?:\b|)" 1;
|
|
"~*(?:\b)nhl17coins\.exblog\.jp(?:\b|)" 1;
|
|
"~*(?:\b)nhl17coinsforps3\.gratisblog\.biz(?:\b|)" 1;
|
|
"~*(?:\b)nibbler\.silktide\.com(?:\b|)" 1;
|
|
"~*(?:\b)nicefloor\.co\.uk(?:\b|)" 1;
|
|
"~*(?:\b)nicovideo\.jp(?:\b|)" 1;
|
|
"~*(?:\b)nightvision746\.weebly\.com(?:\b|)" 1;
|
|
"~*(?:\b)nikhilbahl\.com(?:\b|)" 1;
|
|
"~*(?:\b)niki\-mlt\.ru(?:\b|)" 1;
|
|
"~*(?:\b)nikitabuch\.com(?:\b|)" 1;
|
|
"~*(?:\b)nikitsyringedrivelg\.pen\.io(?:\b|)" 1;
|
|
"~*(?:\b)nikkiewart\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ningessaybe\.me(?:\b|)" 1;
|
|
"~*(?:\b)nippon\-bearings\.ru(?:\b|)" 1;
|
|
"~*(?:\b)niroo\.info(?:\b|)" 1;
|
|
"~*(?:\b)njkmznnb\.ru(?:\b|)" 1;
|
|
"~*(?:\b)njpalletremoval\.com(?:\b|)" 1;
|
|
"~*(?:\b)nlfjjunb5\.ru(?:\b|)" 1;
|
|
"~*(?:\b)nl\.netlog\.com(?:\b|)" 1;
|
|
"~*(?:\b)nmrk\.ru(?:\b|)" 1;
|
|
"~*(?:\b)noclegonline\.info(?:\b|)" 1;
|
|
"~*(?:\b)nodding\-passion\.tk(?:\b|)" 1;
|
|
"~*(?:\b)nodup\.ru(?:\b|)" 1;
|
|
"~*(?:\b)nofreezingmac\.click(?:\b|)" 1;
|
|
"~*(?:\b)nofreezingmac\.work(?:\b|)" 1;
|
|
"~*(?:\b)no\-fuel\.org(?:\b|)" 1;
|
|
"~*(?:\b)nonews\.co(?:\b|)" 1;
|
|
"~*(?:\b)nootrino\.com(?:\b|)" 1;
|
|
"~*(?:\b)nordstar\.pro(?:\b|)" 1;
|
|
"~*(?:\b)nordvpn\.com(?:\b|)" 1;
|
|
"~*(?:\b)normalegal\.ru(?:\b|)" 1;
|
|
"~*(?:\b)northfacestore\.online(?:\b|)" 1;
|
|
"~*(?:\b)norththeface\.store(?:\b|)" 1;
|
|
"~*(?:\b)no\-rx\.info(?:\b|)" 1;
|
|
"~*(?:\b)noscrapleftbehind\.co(?:\b|)" 1;
|
|
"~*(?:\b)nosecret\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)notaria\-desalas\.com(?:\b|)" 1;
|
|
"~*(?:\b)notasprensa\.info(?:\b|)" 1;
|
|
"~*(?:\b)notebook\-pro\.ru(?:\b|)" 1;
|
|
"~*(?:\b)notfastfood\.ru(?:\b|)" 1;
|
|
"~*(?:\b)nottyu\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)noumeda\.com(?:\b|)" 1;
|
|
"~*(?:\b)novatech\.vn(?:\b|)" 1;
|
|
"~*(?:\b)november\-lax\.com(?:\b|)" 1;
|
|
"~*(?:\b)novgorod\.xrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)novodigs\.com(?:\b|)" 1;
|
|
"~*(?:\b)novosibirsk\.xrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)novosti\-hi\-tech\.ru(?:\b|)" 1;
|
|
"~*(?:\b)nowtorrents\.com(?:\b|)" 1;
|
|
"~*(?:\b)npoet\.ru(?:\b|)" 1;
|
|
"~*(?:\b)nrjmobile\.fr(?:\b|)" 1;
|
|
"~*(?:\b)nrv\.co\.za(?:\b|)" 1;
|
|
"~*(?:\b)nsatc\.net(?:\b|)" 1;
|
|
"~*(?:\b)ntic\.fr(?:\b|)" 1;
|
|
"~*(?:\b)nucia\.biz\.ly(?:\b|)" 1;
|
|
"~*(?:\b)nudepatch\.net(?:\b|)" 1;
|
|
"~*(?:\b)nudo\.ca(?:\b|)" 1;
|
|
"~*(?:\b)nufaq\.com(?:\b|)" 1;
|
|
"~*(?:\b)nuit\-artisanale\.com(?:\b|)" 1;
|
|
"~*(?:\b)nuker\.com(?:\b|)" 1;
|
|
"~*(?:\b)nullrefer\.com(?:\b|)" 1;
|
|
"~*(?:\b)nuup\.info(?:\b|)" 1;
|
|
"~*(?:\b)nvformula\.ru(?:\b|)" 1;
|
|
"~*(?:\b)nvssf\.com(?:\b|)" 1;
|
|
"~*(?:\b)nyfinance\.ml(?:\b|)" 1;
|
|
"~*(?:\b)nzfilecloud\.weebly\.com(?:\b|)" 1;
|
|
"~*(?:\b)o00\.in(?:\b|)" 1;
|
|
"~*(?:\b)o333o\.com(?:\b|)" 1;
|
|
"~*(?:\b)oakleyglassesonline\.us(?:\b|)" 1;
|
|
"~*(?:\b)oakridgemo\.com(?:\b|)" 1;
|
|
"~*(?:\b)oballergiya\.ru(?:\b|)" 1;
|
|
"~*(?:\b)obesidadealgarve\.com(?:\b|)" 1;
|
|
"~*(?:\b)obnal\.org(?:\b|)" 1;
|
|
"~*(?:\b)obsessionphrases\.com(?:\b|)" 1;
|
|
"~*(?:\b)obuv\-kupit\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ochistka\-stokov\.ru(?:\b|)" 1;
|
|
"~*(?:\b)oconto\.ru(?:\b|)" 1;
|
|
"~*(?:\b)oda\.as(?:\b|)" 1;
|
|
"~*(?:\b)o\-dachnik\.ru(?:\b|)" 1;
|
|
"~*(?:\b)oddamzadarmo\.eu(?:\b|)" 1;
|
|
"~*(?:\b)odesproperty\.com(?:\b|)" 1;
|
|
"~*(?:\b)odoratus\.net(?:\b|)" 1;
|
|
"~*(?:\b)odywpjtw\.bloger\.index\.hr(?:\b|)" 1;
|
|
"~*(?:\b)oecnhs\.info(?:\b|)" 1;
|
|
"~*(?:\b)offer\.camp(?:\b|)" 1;
|
|
"~*(?:\b)offergroup\.info(?:\b|)" 1;
|
|
"~*(?:\b)offers\.bycontext\.com(?:\b|)" 1;
|
|
"~*(?:\b)offer\.wpsecurity\.website(?:\b|)" 1;
|
|
"~*(?:\b)offf\.info(?:\b|)" 1;
|
|
"~*(?:\b)office2web\.com(?:\b|)" 1;
|
|
"~*(?:\b)officedocuments\.net(?:\b|)" 1;
|
|
"~*(?:\b)office\-windows\.ru(?:\b|)" 1;
|
|
"~*(?:\b)offside2\.5v\.pl(?:\b|)" 1;
|
|
"~*(?:\b)offtime\.ru(?:\b|)" 1;
|
|
"~*(?:\b)offtopic\.biz(?:\b|)" 1;
|
|
"~*(?:\b)of\-ireland\.info(?:\b|)" 1;
|
|
"~*(?:\b)ohmyrings\.com(?:\b|)" 1;
|
|
"~*(?:\b)oil\-td\.ru(?:\b|)" 1;
|
|
"~*(?:\b)okayimage\.com(?:\b|)" 1;
|
|
"~*(?:\b)okeinfo\.online(?:\b|)" 1;
|
|
"~*(?:\b)okel\.co(?:\b|)" 1;
|
|
"~*(?:\b)oklogistic\.ru(?:\b|)" 1;
|
|
"~*(?:\b)okmedia\.sk(?:\b|)" 1;
|
|
"~*(?:\b)okmusic\.jp(?:\b|)" 1;
|
|
"~*(?:\b)okonich\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)okout\.ru(?:\b|)" 1;
|
|
"~*(?:\b)okroshki\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ok\.ru(?:\b|)" 1;
|
|
"~*(?:\b)oksrv\.com(?:\b|)" 1;
|
|
"~*(?:\b)oktube\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ok\-ua\.info(?:\b|)" 1;
|
|
"~*(?:\b)okuos\.com(?:\b|)" 1;
|
|
"~*(?:\b)old\-rock\.com(?:\b|)" 1;
|
|
"~*(?:\b)olgacvetmet\.com(?:\b|)" 1;
|
|
"~*(?:\b)o\.light\.d0t\.ru(?:\b|)" 1;
|
|
"~*(?:\b)olvanto\.ru(?:\b|)" 1;
|
|
"~*(?:\b)olympescort\.com(?:\b|)" 1;
|
|
"~*(?:\b)omoikiri\-japan\.ru(?:\b|)" 1;
|
|
"~*(?:\b)omsk\.xrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)onclickpredictiv\.com(?:\b|)" 1;
|
|
"~*(?:\b)onclkads\.com(?:\b|)" 1;
|
|
"~*(?:\b)oneclickfiles\.com(?:\b|)" 1;
|
|
"~*(?:\b)onefilms\.net(?:\b|)" 1;
|
|
"~*(?:\b)one\-gear\.com(?:\b|)" 1;
|
|
"~*(?:\b)onemactrckr\.com(?:\b|)" 1;
|
|
"~*(?:\b)onemantrip\.com(?:\b|)" 1;
|
|
"~*(?:\b)oneminutesite\.it(?:\b|)" 1;
|
|
"~*(?:\b)onescreen\.cc(?:\b|)" 1;
|
|
"~*(?:\b)oneshotdate\.com(?:\b|)" 1;
|
|
"~*(?:\b)onetravelguides\.com(?:\b|)" 1;
|
|
"~*(?:\b)onlainbesplatno\.ru(?:\b|)" 1;
|
|
"~*(?:\b)onlinadverts\.com(?:\b|)" 1;
|
|
"~*(?:\b)online247\.ml(?:\b|)" 1;
|
|
"~*(?:\b)online7777\.com(?:\b|)" 1;
|
|
"~*(?:\b)onlinebay\.ru(?:\b|)" 1;
|
|
"~*(?:\b)onlinedomains\.ru(?:\b|)" 1;
|
|
"~*(?:\b)onlinefilmz\.net(?:\b|)" 1;
|
|
"~*(?:\b)online\-hd\.pl(?:\b|)" 1;
|
|
"~*(?:\b)online\-hit\.info(?:\b|)" 1;
|
|
"~*(?:\b)online\.ktc45\.ru(?:\b|)" 1;
|
|
"~*(?:\b)onlineku\.com(?:\b|)" 1;
|
|
"~*(?:\b)onlinemeetingnow\.com(?:\b|)" 1;
|
|
"~*(?:\b)onlinemegax\.com(?:\b|)" 1;
|
|
"~*(?:\b)online\-podarki\.com(?:\b|)" 1;
|
|
"~*(?:\b)onlineporno\.site(?:\b|)" 1;
|
|
"~*(?:\b)online\-sbank\.ru(?:\b|)" 1;
|
|
"~*(?:\b)onlineserialy\.ru(?:\b|)" 1;
|
|
"~*(?:\b)onlineslotmaschine\.com(?:\b|)" 1;
|
|
"~*(?:\b)online\-templatestore\.com(?:\b|)" 1;
|
|
"~*(?:\b)onlinetvseries\.me(?:\b|)" 1;
|
|
"~*(?:\b)onlinewritingjobs17\.blogspot\.ru(?:\b|)" 1;
|
|
"~*(?:\b)online\-x\.ru(?:\b|)" 1;
|
|
"~*(?:\b)onload\.pw(?:\b|)" 1;
|
|
"~*(?:\b)onlyforemont\.ru(?:\b|)" 1;
|
|
"~*(?:\b)onlythegames\.com(?:\b|)" 1;
|
|
"~*(?:\b)onlywoman\.org(?:\b|)" 1;
|
|
"~*(?:\b)ons\-add\.men(?:\b|)" 1;
|
|
"~*(?:\b)onstrapon\.purplesphere\.in(?:\b|)" 1;
|
|
"~*(?:\b)ontargetseo\.us(?:\b|)" 1;
|
|
"~*(?:\b)onthemarch\.co(?:\b|)" 1;
|
|
"~*(?:\b)o\-o\-11\-o\-o\.com(?:\b|)" 1;
|
|
"~*(?:\b)o\-o\-6\-o\-o\.com(?:\b|)" 1;
|
|
"~*(?:\b)o\-o\-6\-o\-o\.ru(?:\b|)" 1;
|
|
"~*(?:\b)o\-o\-8\-o\-o\.com(?:\b|)" 1;
|
|
"~*(?:\b)o\-o\-8\-o\-o\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ooo\-gotovie\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ooomeru\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ooo\-olni\.ru(?:\b|)" 1;
|
|
"~*(?:\b)oops\-cinema\.ru(?:\b|)" 1;
|
|
"~*(?:\b)openfrost\.com(?:\b|)" 1;
|
|
"~*(?:\b)openfrost\.net(?:\b|)" 1;
|
|
"~*(?:\b)openlibrary\.org(?:\b|)" 1;
|
|
"~*(?:\b)openmediasoft\.com(?:\b|)" 1;
|
|
"~*(?:\b)openmultipleurl\.com(?:\b|)" 1;
|
|
"~*(?:\b)open\-odyssey\.org(?:\b|)" 1;
|
|
"~*(?:\b)openstat\.com(?:\b|)" 1;
|
|
"~*(?:\b)opinionreelle\.com(?:\b|)" 1;
|
|
"~*(?:\b)ops\.picscout\.com(?:\b|)" 1;
|
|
"~*(?:\b)optibuymac\.com(?:\b|)" 1;
|
|
"~*(?:\b)optikremont\.ru(?:\b|)" 1;
|
|
"~*(?:\b)optitrade24\.com(?:\b|)" 1;
|
|
"~*(?:\b)optom\-deshevo\.ru(?:\b|)" 1;
|
|
"~*(?:\b)oralsexfilme\.net(?:\b|)" 1;
|
|
"~*(?:\b)oranga\.host\.sk(?:\b|)" 1;
|
|
"~*(?:\b)ordernorxx\.com(?:\b|)" 1;
|
|
"~*(?:\b)orel\-reshka\.net(?:\b|)" 1;
|
|
"~*(?:\b)orenburg\-gsm\.ru(?:\b|)" 1;
|
|
"~*(?:\b)oren\-cats\.ru(?:\b|)" 1;
|
|
"~*(?:\b)orgasmatrix\.com(?:\b|)" 1;
|
|
"~*(?:\b)orgasmus\-virtual\.com(?:\b|)" 1;
|
|
"~*(?:\b)orhonit\.com(?:\b|)" 1;
|
|
"~*(?:\b)origin\-my\.ru(?:\b|)" 1;
|
|
"~*(?:\b)orion\-code\-access\.net(?:\b|)" 1;
|
|
"~*(?:\b)orion\-v\.com(?:\b|)" 1;
|
|
"~*(?:\b)ororodnik\.goodbb\.ru(?:\b|)" 1;
|
|
"~*(?:\b)orsonet\.ru(?:\b|)" 1;
|
|
"~*(?:\b)osagonline\.ru(?:\b|)" 1;
|
|
"~*(?:\b)osb\.se11\.ru(?:\b|)" 1;
|
|
"~*(?:\b)osnova3\.ru(?:\b|)" 1;
|
|
"~*(?:\b)osoznanie\-narkotikam\.net(?:\b|)" 1;
|
|
"~*(?:\b)ossmalta\.com(?:\b|)" 1;
|
|
"~*(?:\b)ostroike\.org(?:\b|)" 1;
|
|
"~*(?:\b)ostrovtaxi\.ru(?:\b|)" 1;
|
|
"~*(?:\b)otbelivanie\-zubov\.com(?:\b|)" 1;
|
|
"~*(?:\b)ourtherapy\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ourville\.info(?:\b|)" 1;
|
|
"~*(?:\b)outclicks\.net(?:\b|)" 1;
|
|
"~*(?:\b)outpersonals\.com(?:\b|)" 1;
|
|
"~*(?:\b)outrageousdeal\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)outshop\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ovirus\.ru(?:\b|)" 1;
|
|
"~*(?:\b)owathemes\.com(?:\b|)" 1;
|
|
"~*(?:\b)ownshop\.cf(?:\b|)" 1;
|
|
"~*(?:\b)ownshop\.win(?:\b|)" 1;
|
|
"~*(?:\b)owohho\.com(?:\b|)" 1;
|
|
"~*(?:\b)oxford\-book\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)oxotl\.com(?:\b|)" 1;
|
|
"~*(?:\b)oynat\.info(?:\b|)" 1;
|
|
"~*(?:\b)oyster\-green\.com(?:\b|)" 1;
|
|
"~*(?:\b)ozas\.net(?:\b|)" 1;
|
|
"~*(?:\b)oz\-offers\.com(?:\b|)" 1;
|
|
"~*(?:\b)ozoz\.it(?:\b|)" 1;
|
|
"~*(?:\b)paceform\.com(?:\b|)" 1;
|
|
"~*(?:\b)pacificair\.com(?:\b|)" 1;
|
|
"~*(?:\b)paclitor\.com(?:\b|)" 1;
|
|
"~*(?:\b)page2rss\.com(?:\b|)" 1;
|
|
"~*(?:\b)pagesense\.com(?:\b|)" 1;
|
|
"~*(?:\b)paidonlinesites\.com(?:\b|)" 1;
|
|
"~*(?:\b)paintingplanet\.ru(?:\b|)" 1;
|
|
"~*(?:\b)paleohub\.info(?:\b|)" 1;
|
|
"~*(?:\b)palocco\.it(?:\b|)" 1;
|
|
"~*(?:\b)palvira\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)pammik\.ru(?:\b|)" 1;
|
|
"~*(?:\b)panamaforbeginners\.com(?:\b|)" 1;
|
|
"~*(?:\b)panchro\.co\.uk(?:\b|)" 1;
|
|
"~*(?:\b)panchro\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)pandarastore\.top(?:\b|)" 1;
|
|
"~*(?:\b)pandroid\.co(?:\b|)" 1;
|
|
"~*(?:\b)panicatack\.com(?:\b|)" 1;
|
|
"~*(?:\b)panouri\-solare\-acoperis\.com(?:\b|)" 1;
|
|
"~*(?:\b)paparazzistudios\.com\.au(?:\b|)" 1;
|
|
"~*(?:\b)papasdelivery\.ru(?:\b|)" 1;
|
|
"~*(?:\b)paperwritingservice17\.blogspot\.ru(?:\b|)" 1;
|
|
"~*(?:\b)paphoselectricianandplumber\.com(?:\b|)" 1;
|
|
"~*(?:\b)paradontozanet\.ru(?:\b|)" 1;
|
|
"~*(?:\b)parajumpersjakkesalgnorge\.info(?:\b|)" 1;
|
|
"~*(?:\b)parajumpersoutlet\.online(?:\b|)" 1;
|
|
"~*(?:\b)parajumpersstore\.online(?:\b|)" 1;
|
|
"~*(?:\b)paramountmarble\.co\.uk(?:\b|)" 1;
|
|
"~*(?:\b)par\-fallen\.ga(?:\b|)" 1;
|
|
"~*(?:\b)parfusale\.se(?:\b|)" 1;
|
|
"~*(?:\b)park\.above\.com(?:\b|)" 1;
|
|
"~*(?:\b)parlament\.biz(?:\b|)" 1;
|
|
"~*(?:\b)partnerads\.men(?:\b|)" 1;
|
|
"~*(?:\b)partner\-cdn\.men(?:\b|)" 1;
|
|
"~*(?:\b)partner\-high\.men(?:\b|)" 1;
|
|
"~*(?:\b)partner\-host\.men(?:\b|)" 1;
|
|
"~*(?:\b)partnerline\.men(?:\b|)" 1;
|
|
"~*(?:\b)partner\-pop\.men(?:\b|)" 1;
|
|
"~*(?:\b)partner\-print\.men(?:\b|)" 1;
|
|
"~*(?:\b)partnersafe\.men(?:\b|)" 1;
|
|
"~*(?:\b)partners\-ship\.pro(?:\b|)" 1;
|
|
"~*(?:\b)partner\-stop\.men(?:\b|)" 1;
|
|
"~*(?:\b)partner\-trustworthy\.men(?:\b|)" 1;
|
|
"~*(?:\b)partnerworkroom\.men(?:\b|)" 1;
|
|
"~*(?:\b)partybunny\.ru(?:\b|)" 1;
|
|
"~*(?:\b)pastaleads\.com(?:\b|)" 1;
|
|
"~*(?:\b)pateaswing\.com(?:\b|)" 1;
|
|
"~*(?:\b)pathwhelp\.org(?:\b|)" 1;
|
|
"~*(?:\b)patol01\.pw(?:\b|)" 1;
|
|
"~*(?:\b)patterntrader\-en\.com(?:\b|)" 1;
|
|
"~*(?:\b)pattersonsweb\.com(?:\b|)" 1;
|
|
"~*(?:\b)pavlodar\.xkaz\.org(?:\b|)" 1;
|
|
"~*(?:\b)pawli\.eu(?:\b|)" 1;
|
|
"~*(?:\b)pay2me\.pl(?:\b|)" 1;
|
|
"~*(?:\b)paydayloanslocal\.com(?:\b|)" 1;
|
|
"~*(?:\b)paydayonlinecom\.com(?:\b|)" 1;
|
|
"~*(?:\b)pb\-dv\.ru(?:\b|)" 1;
|
|
"~*(?:\b)p\-business\.ru(?:\b|)" 1;
|
|
"~*(?:\b)pc4download\.co(?:\b|)" 1;
|
|
"~*(?:\b)pcads\.ru(?:\b|)" 1;
|
|
"~*(?:\b)pcboa\.se(?:\b|)" 1;
|
|
"~*(?:\b)pcgroup\.com\.uy(?:\b|)" 1;
|
|
"~*(?:\b)pcimforum\.com(?:\b|)" 1;
|
|
"~*(?:\b)pc\-services\.ru(?:\b|)" 1;
|
|
"~*(?:\b)pc\-test\.net(?:\b|)" 1;
|
|
"~*(?:\b)pc\-virus\-d0l92j2\.pw(?:\b|)" 1;
|
|
"~*(?:\b)pdamods\.ru(?:\b|)" 1;
|
|
"~*(?:\b)pdn\-4\.com(?:\b|)" 1;
|
|
"~*(?:\b)pdns\.cz(?:\b|)" 1;
|
|
"~*(?:\b)pdns\.download(?:\b|)" 1;
|
|
"~*(?:\b)pearlisland\.ru(?:\b|)" 1;
|
|
"~*(?:\b)pechikamini\.ru(?:\b|)" 1;
|
|
"~*(?:\b)peekyou\.com(?:\b|)" 1;
|
|
"~*(?:\b)pekori\.to(?:\b|)" 1;
|
|
"~*(?:\b)pelfind\.me(?:\b|)" 1;
|
|
"~*(?:\b)pendelprognos\.se(?:\b|)" 1;
|
|
"~*(?:\b)penisvergrotendepillennl\.ovh(?:\b|)" 1;
|
|
"~*(?:\b)pensplan4u\.com(?:\b|)" 1;
|
|
"~*(?:\b)pensplan\.com(?:\b|)" 1;
|
|
"~*(?:\b)pepperstyle\.ru(?:\b|)" 1;
|
|
"~*(?:\b)percin\.biz\.ly(?:\b|)" 1;
|
|
"~*(?:\b)perfection\-pleasure\.ru(?:\b|)" 1;
|
|
"~*(?:\b)perfectpracticeweb\.com(?:\b|)" 1;
|
|
"~*(?:\b)perl\.dp\.ua(?:\b|)" 1;
|
|
"~*(?:\b)perm\-profnastil\.ru(?:\b|)" 1;
|
|
"~*(?:\b)perm\.xrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)perosan\.com(?:\b|)" 1;
|
|
"~*(?:\b)perso\.wanadoo\.es(?:\b|)" 1;
|
|
"~*(?:\b)pestomou\.info(?:\b|)" 1;
|
|
"~*(?:\b)petedrummond\.com(?:\b|)" 1;
|
|
"~*(?:\b)petitions\.whitehouse\.gov(?:\b|)" 1;
|
|
"~*(?:\b)petrovka\-online\.com(?:\b|)" 1;
|
|
"~*(?:\b)petsblogroll\.com(?:\b|)" 1;
|
|
"~*(?:\b)peugeot\-club\.org(?:\b|)" 1;
|
|
"~*(?:\b)pewit\.pw(?:\b|)" 1;
|
|
"~*(?:\b)pflexads\.com(?:\b|)" 1;
|
|
"~*(?:\b)pharmacyincity\.com(?:\b|)" 1;
|
|
"~*(?:\b)phobia\.us(?:\b|)" 1;
|
|
"~*(?:\b)phormchina\.com(?:\b|)" 1;
|
|
"~*(?:\b)photochki\.com(?:\b|)" 1;
|
|
"~*(?:\b)photo\-clip\.ru(?:\b|)" 1;
|
|
"~*(?:\b)photo\.houseofgaga\.ru(?:\b|)" 1;
|
|
"~*(?:\b)photokitchendesign\.com(?:\b|)" 1;
|
|
"~*(?:\b)photorepair\.ru(?:\b|)" 1;
|
|
"~*(?:\b)photosaga\.info(?:\b|)" 1;
|
|
"~*(?:\b)photostudiolightings\.com(?:\b|)" 1;
|
|
"~*(?:\b)phpdevops\.com(?:\b|)" 1;
|
|
"~*(?:\b)php\-market\.ru(?:\b|)" 1;
|
|
"~*(?:\b)phuketscreen\.com(?:\b|)" 1;
|
|
"~*(?:\b)physfunc\.ru(?:\b|)" 1;
|
|
"~*(?:\b)pic2fly\.com(?:\b|)" 1;
|
|
"~*(?:\b)piccdata\.com(?:\b|)" 1;
|
|
"~*(?:\b)piccshare\.com(?:\b|)" 1;
|
|
"~*(?:\b)picmoonco\.pw(?:\b|)" 1;
|
|
"~*(?:\b)picphotos\.net(?:\b|)" 1;
|
|
"~*(?:\b)picquery\.com(?:\b|)" 1;
|
|
"~*(?:\b)picscout\.com(?:\b|)" 1;
|
|
"~*(?:\b)picsearch\.com(?:\b|)" 1;
|
|
"~*(?:\b)picsfair\.com(?:\b|)" 1;
|
|
"~*(?:\b)picsforkeywordsuggestion\.com(?:\b|)" 1;
|
|
"~*(?:\b)pics\-group\.com(?:\b|)" 1;
|
|
"~*(?:\b)picswe\.com(?:\b|)" 1;
|
|
"~*(?:\b)picture\-group\.com(?:\b|)" 1;
|
|
"~*(?:\b)pictures\-and\-images\.com(?:\b|)" 1;
|
|
"~*(?:\b)pictures\-and\-images\.net(?:\b|)" 1;
|
|
"~*(?:\b)picturesboss\.com(?:\b|)" 1;
|
|
"~*(?:\b)picturesfrom\.com(?:\b|)" 1;
|
|
"~*(?:\b)picturesify\.com(?:\b|)" 1;
|
|
"~*(?:\b)picturesmania\.com(?:\b|)" 1;
|
|
"~*(?:\b)picurams\.pw(?:\b|)" 1;
|
|
"~*(?:\b)pierrehardysale\.online(?:\b|)" 1;
|
|
"~*(?:\b)pigrafix\.at(?:\b|)" 1;
|
|
"~*(?:\b)pihl\.se(?:\b|)" 1;
|
|
"~*(?:\b)pijoto\.net(?:\b|)" 1;
|
|
"~*(?:\b)pila\.pl(?:\b|)" 1;
|
|
"~*(?:\b)pills24h\.com(?:\b|)" 1;
|
|
"~*(?:\b)pillscheap24h\.com(?:\b|)" 1;
|
|
"~*(?:\b)piluli\.info(?:\b|)" 1;
|
|
"~*(?:\b)pinkduck\.ga(?:\b|)" 1;
|
|
"~*(?:\b)pinsdaddy\.com(?:\b|)" 1;
|
|
"~*(?:\b)pinstake\.com(?:\b|)" 1;
|
|
"~*(?:\b)pintattoos\.com(?:\b|)" 1;
|
|
"~*(?:\b)pinwallpaper\.top(?:\b|)" 1;
|
|
"~*(?:\b)pinwallpaper\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)pio\.polytopesexempt\.com(?:\b|)" 1;
|
|
"~*(?:\b)pipki\.r\.acdnpro\.com(?:\b|)" 1;
|
|
"~*(?:\b)piratecams\.com(?:\b|)" 1;
|
|
"~*(?:\b)pirateday\.ru(?:\b|)" 1;
|
|
"~*(?:\b)pisanieprac\.info(?:\b|)" 1;
|
|
"~*(?:\b)piski\.top(?:\b|)" 1;
|
|
"~*(?:\b)pistonclasico\.com(?:\b|)" 1;
|
|
"~*(?:\b)piter\.xrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)piulatte\.cz(?:\b|)" 1;
|
|
"~*(?:\b)piuminiita\.com(?:\b|)" 1;
|
|
"~*(?:\b)pix24x7\.com(?:\b|)" 1;
|
|
"~*(?:\b)pixell\.club(?:\b|)" 1;
|
|
"~*(?:\b)pixelrz\.com(?:\b|)" 1;
|
|
"~*(?:\b)pixgood\.com(?:\b|)" 1;
|
|
"~*(?:\b)pix\-hd\.com(?:\b|)" 1;
|
|
"~*(?:\b)pixshark\.com(?:\b|)" 1;
|
|
"~*(?:\b)pizda\.lol(?:\b|)" 1;
|
|
"~*(?:\b)pizdeishn\.com(?:\b|)" 1;
|
|
"~*(?:\b)pizdopletka\.club(?:\b|)" 1;
|
|
"~*(?:\b)pizza\-imperia\.com(?:\b|)" 1;
|
|
"~*(?:\b)pizza\-tycoon\.com(?:\b|)" 1;
|
|
"~*(?:\b)pk\-pomosch\.ru(?:\b|)" 1;
|
|
"~*(?:\b)pkr1hand\.com(?:\b|)" 1;
|
|
"~*(?:\b)pk\-services\.ru(?:\b|)" 1;
|
|
"~*(?:\b)pl\.aasoldes\.fr(?:\b|)" 1;
|
|
"~*(?:\b)pladform\.ru(?:\b|)" 1;
|
|
"~*(?:\b)plaff\-go\.ru(?:\b|)" 1;
|
|
"~*(?:\b)plastgranar\.nu(?:\b|)" 1;
|
|
"~*(?:\b)plastgran\.com(?:\b|)" 1;
|
|
"~*(?:\b)plastjulgranar\.se(?:\b|)" 1;
|
|
"~*(?:\b)plastweb\.ru(?:\b|)" 1;
|
|
"~*(?:\b)platesauto\.com(?:\b|)" 1;
|
|
"~*(?:\b)platezhka\.net(?:\b|)" 1;
|
|
"~*(?:\b)platinumdeals\.gr(?:\b|)" 1;
|
|
"~*(?:\b)playboyfiles\.xblog\.in(?:\b|)" 1;
|
|
"~*(?:\b)playfortuna\-play\.ru(?:\b|)" 1;
|
|
"~*(?:\b)play\.leadzupc\.com(?:\b|)" 1;
|
|
"~*(?:\b)playlott\.com(?:\b|)" 1;
|
|
"~*(?:\b)play\-movie\.pl(?:\b|)" 1;
|
|
"~*(?:\b)play\-mp3\.com(?:\b|)" 1;
|
|
"~*(?:\b)playmsn\.com(?:\b|)" 1;
|
|
"~*(?:\b)playtap\.us(?:\b|)" 1;
|
|
"~*(?:\b)pl\.id\-forex\.com(?:\b|)" 1;
|
|
"~*(?:\b)pliks\.pl(?:\b|)" 1;
|
|
"~*(?:\b)ploenjitmedia\.azurewebsites\.net(?:\b|)" 1;
|
|
"~*(?:\b)plohaya\-kreditnaya\-istoriya\.ru(?:\b|)" 1;
|
|
"~*(?:\b)pl\-top\.pl(?:\b|)" 1;
|
|
"~*(?:\b)plugingeorgia\.com(?:\b|)" 1;
|
|
"~*(?:\b)plusnetwork\.com(?:\b|)" 1;
|
|
"~*(?:\b)pl\-vouchers\.com(?:\b|)" 1;
|
|
"~*(?:\b)pobeiranie\.pl(?:\b|)" 1;
|
|
"~*(?:\b)pochemychka\.net(?:\b|)" 1;
|
|
"~*(?:\b)pochtovyi\-index\.ru(?:\b|)" 1;
|
|
"~*(?:\b)podshipniki\-nsk\.ru(?:\b|)" 1;
|
|
"~*(?:\b)podshipniki\-ntn\.ru(?:\b|)" 1;
|
|
"~*(?:\b)poem\-paying\.gq(?:\b|)" 1;
|
|
"~*(?:\b)poems\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)poffet\.net(?:\b|)" 1;
|
|
"~*(?:\b)pogodnyyeavarii\.gq(?:\b|)" 1;
|
|
"~*(?:\b)pogosh\.com(?:\b|)" 1;
|
|
"~*(?:\b)pogruztehnik\.ru(?:\b|)" 1;
|
|
"~*(?:\b)poisk\-zakona\.ru(?:\b|)" 1;
|
|
"~*(?:\b)poiskzakona\.ru(?:\b|)" 1;
|
|
"~*(?:\b)pojdelo\.weebly\.com(?:\b|)" 1;
|
|
"~*(?:\b)pokemongooo\.ml(?:\b|)" 1;
|
|
"~*(?:\b)pokemon\-go\-play\.online(?:\b|)" 1;
|
|
"~*(?:\b)pokerniydom\.ru(?:\b|)" 1;
|
|
"~*(?:\b)polcin\.de(?:\b|)" 1;
|
|
"~*(?:\b)polimga\.pw(?:\b|)" 1;
|
|
"~*(?:\b)polybuild\.ru(?:\b|)" 1;
|
|
"~*(?:\b)polytopesexempt\.com(?:\b|)" 1;
|
|
"~*(?:\b)pomoc\-drogowa\.cba\.pl(?:\b|)" 1;
|
|
"~*(?:\b)pons\-presse\.com(?:\b|)" 1;
|
|
"~*(?:\b)pontiacsolstice\.info(?:\b|)" 1;
|
|
"~*(?:\b)pony\-business\.com(?:\b|)" 1;
|
|
"~*(?:\b)pooleroadmedicalcentre\.co\.uk(?:\b|)" 1;
|
|
"~*(?:\b)popads\.net(?:\b|)" 1;
|
|
"~*(?:\b)popander\.mobi(?:\b|)" 1;
|
|
"~*(?:\b)popcash\.net(?:\b|)" 1;
|
|
"~*(?:\b)popmarker\.com(?:\b|)" 1;
|
|
"~*(?:\b)poppen\-nw\.net(?:\b|)" 1;
|
|
"~*(?:\b)popserve\.adscpm\.net(?:\b|)" 1;
|
|
"~*(?:\b)poptool\.net(?:\b|)" 1;
|
|
"~*(?:\b)popugauka\.ru(?:\b|)" 1;
|
|
"~*(?:\b)popugaychiki\.com(?:\b|)" 1;
|
|
"~*(?:\b)popunder\.net(?:\b|)" 1;
|
|
"~*(?:\b)popunder\.ru(?:\b|)" 1;
|
|
"~*(?:\b)popup\-fdm\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)popup\-hgd\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)popup\-jdh\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)popup\.matchmaker\.com(?:\b|)" 1;
|
|
"~*(?:\b)poquoson\.org(?:\b|)" 1;
|
|
"~*(?:\b)porn555\.com(?:\b|)" 1;
|
|
"~*(?:\b)porndairy\.in(?:\b|)" 1;
|
|
"~*(?:\b)porndl\.org(?:\b|)" 1;
|
|
"~*(?:\b)porndroids\.com(?:\b|)" 1;
|
|
"~*(?:\b)porngalleries\.top(?:\b|)" 1;
|
|
"~*(?:\b)pornhive\.org(?:\b|)" 1;
|
|
"~*(?:\b)pornhub\-forum\.ga(?:\b|)" 1;
|
|
"~*(?:\b)pornhubforum\.tk(?:\b|)" 1;
|
|
"~*(?:\b)pornhub\-ru\.com(?:\b|)" 1;
|
|
"~*(?:\b)pornmania\.pl(?:\b|)" 1;
|
|
"~*(?:\b)pornoblood\.com(?:\b|)" 1;
|
|
"~*(?:\b)pornobrazzers\.biz(?:\b|)" 1;
|
|
"~*(?:\b)porno\-chaman\.info(?:\b|)" 1;
|
|
"~*(?:\b)pornodojd\.ru(?:\b|)" 1;
|
|
"~*(?:\b)porno\-dojki\.net(?:\b|)" 1;
|
|
"~*(?:\b)pornoelita\.info(?:\b|)" 1;
|
|
"~*(?:\b)pornofeuer\.com(?:\b|)" 1;
|
|
"~*(?:\b)pornofiljmi\.com(?:\b|)" 1;
|
|
"~*(?:\b)pornoforadult\.com(?:\b|)" 1;
|
|
"~*(?:\b)pornogad\.com(?:\b|)" 1;
|
|
"~*(?:\b)pornogig\.com(?:\b|)" 1;
|
|
"~*(?:\b)pornogratisdiario\.com(?:\b|)" 1;
|
|
"~*(?:\b)pornohd1080\.online(?:\b|)" 1;
|
|
"~*(?:\b)pornokajf\.com(?:\b|)" 1;
|
|
"~*(?:\b)pornoklad\.net(?:\b|)" 1;
|
|
"~*(?:\b)pornoklad\.ru(?:\b|)" 1;
|
|
"~*(?:\b)pornokorol\.com(?:\b|)" 1;
|
|
"~*(?:\b)pornolook\.net(?:\b|)" 1;
|
|
"~*(?:\b)pornonik\.com(?:\b|)" 1;
|
|
"~*(?:\b)pornophoto\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)porno\-play\.net(?:\b|)" 1;
|
|
"~*(?:\b)pornoplen\.com(?:\b|)" 1;
|
|
"~*(?:\b)porno\-raskazy\.ru(?:\b|)" 1;
|
|
"~*(?:\b)pornoreino\.com(?:\b|)" 1;
|
|
"~*(?:\b)pornosee\.info(?:\b|)" 1;
|
|
"~*(?:\b)pornosemki\.info(?:\b|)" 1;
|
|
"~*(?:\b)pornosexrolik\.com(?:\b|)" 1;
|
|
"~*(?:\b)porno\.simple\-image\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)pornoslive\.net(?:\b|)" 1;
|
|
"~*(?:\b)pornosmola\.info(?:\b|)" 1;
|
|
"~*(?:\b)porno\-transsexuals\.ru(?:\b|)" 1;
|
|
"~*(?:\b)pornotubexxx\.name(?:\b|)" 1;
|
|
"~*(?:\b)pornotubs\.com(?:\b|)" 1;
|
|
"~*(?:\b)porno\-video\-chati\.ru(?:\b|)" 1;
|
|
"~*(?:\b)pornowarp\.info(?:\b|)" 1;
|
|
"~*(?:\b)pornoxxx\.com\.mx(?:\b|)" 1;
|
|
"~*(?:\b)pornozhara\.com(?:\b|)" 1;
|
|
"~*(?:\b)pornpost\.in(?:\b|)" 1;
|
|
"~*(?:\b)pornstartits\.xblog\.in(?:\b|)" 1;
|
|
"~*(?:\b)porn\-w\.org(?:\b|)" 1;
|
|
"~*(?:\b)pornzone\.tv(?:\b|)" 1;
|
|
"~*(?:\b)porodasobak\.net(?:\b|)" 1;
|
|
"~*(?:\b)portadd\.men(?:\b|)" 1;
|
|
"~*(?:\b)portal\-eu\.ru(?:\b|)" 1;
|
|
"~*(?:\b)portnoff\.od\.ua(?:\b|)" 1;
|
|
"~*(?:\b)porto\.abuilder\.net(?:\b|)" 1;
|
|
"~*(?:\b)portside\.cc(?:\b|)" 1;
|
|
"~*(?:\b)portside\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)poshiv\-chehol\.ru(?:\b|)" 1;
|
|
"~*(?:\b)posible\.net(?:\b|)" 1;
|
|
"~*(?:\b)positive2b\.ru(?:\b|)" 1;
|
|
"~*(?:\b)pospr\.waw\.pl(?:\b|)" 1;
|
|
"~*(?:\b)postclass\.com(?:\b|)" 1;
|
|
"~*(?:\b)potoideas\.us(?:\b|)" 1;
|
|
"~*(?:\b)potolokelekor\.ru(?:\b|)" 1;
|
|
"~*(?:\b)pourvous\.info(?:\b|)" 1;
|
|
"~*(?:\b)powc\.r\.ca\.d\.sendibm2\.com(?:\b|)" 1;
|
|
"~*(?:\b)powenlite24\.ru(?:\b|)" 1;
|
|
"~*(?:\b)powitania\.pl(?:\b|)" 1;
|
|
"~*(?:\b)pozdravleniya\-c\.ru(?:\b|)" 1;
|
|
"~*(?:\b)pozdrawleniya\.com(?:\b|)" 1;
|
|
"~*(?:\b)pozdrawleniya\.ru(?:\b|)" 1;
|
|
"~*(?:\b)pozvonim\.com(?:\b|)" 1;
|
|
"~*(?:\b)pp\-budpostach\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)pr0fit\-b0x\.com(?:\b|)" 1;
|
|
"~*(?:\b)praisong\.net(?:\b|)" 1;
|
|
"~*(?:\b)pravoholding\.ru(?:\b|)" 1;
|
|
"~*(?:\b)prchecker\.info(?:\b|)" 1;
|
|
"~*(?:\b)predmety\.in\.ua(?:\b|)" 1;
|
|
"~*(?:\b)predominant\-invent\.tk(?:\b|)" 1;
|
|
"~*(?:\b)prefersurvey\.net(?:\b|)" 1;
|
|
"~*(?:\b)preg\.marketingvici\.com(?:\b|)" 1;
|
|
"~*(?:\b)pregnant\.guru(?:\b|)" 1;
|
|
"~*(?:\b)preparevideosafesystem4unow\.site(?:\b|)" 1;
|
|
"~*(?:\b)preparevideosafesystem4unow\.space(?:\b|)" 1;
|
|
"~*(?:\b)presleycollectibles\.com(?:\b|)" 1;
|
|
"~*(?:\b)pretty\-mart\.com(?:\b|)" 1;
|
|
"~*(?:\b)preventheadacheguide\.info(?:\b|)" 1;
|
|
"~*(?:\b)priceg\.com(?:\b|)" 1;
|
|
"~*(?:\b)pricheskaonline\.ru(?:\b|)" 1;
|
|
"~*(?:\b)pricheski\-video\.com(?:\b|)" 1;
|
|
"~*(?:\b)primedice\.com(?:\b|)" 1;
|
|
"~*(?:\b)princeadvantagesales\.com(?:\b|)" 1;
|
|
"~*(?:\b)princevc\.com(?:\b|)" 1;
|
|
"~*(?:\b)printdirectforless\.com(?:\b|)" 1;
|
|
"~*(?:\b)printie\.com(?:\b|)" 1;
|
|
"~*(?:\b)printingpeach\.com(?:\b|)" 1;
|
|
"~*(?:\b)priora\-2\.com(?:\b|)" 1;
|
|
"~*(?:\b)priscilarodrigues\.com\.br(?:\b|)" 1;
|
|
"~*(?:\b)privacyassistant\.net(?:\b|)" 1;
|
|
"~*(?:\b)privatamateure\.com(?:\b|)" 1;
|
|
"~*(?:\b)privatbank46\.ru(?:\b|)" 1;
|
|
"~*(?:\b)privatefx\.all4invest\.info(?:\b|)" 1;
|
|
"~*(?:\b)privatefx\-in\.ru(?:\b|)" 1;
|
|
"~*(?:\b)privat\-girl\.net(?:\b|)" 1;
|
|
"~*(?:\b)privatov\-zapisi\.ru(?:\b|)" 1;
|
|
"~*(?:\b)privetsochi\.ru(?:\b|)" 1;
|
|
"~*(?:\b)privhosting\.com(?:\b|)" 1;
|
|
"~*(?:\b)prize44\.com(?:\b|)" 1;
|
|
"~*(?:\b)prizeestates\.cricket(?:\b|)" 1;
|
|
"~*(?:\b)prizefestival\.mobi(?:\b|)" 1;
|
|
"~*(?:\b)prizesbook\.online(?:\b|)" 1;
|
|
"~*(?:\b)prizestohandle\.club(?:\b|)" 1;
|
|
"~*(?:\b)prlog\.ru(?:\b|)" 1;
|
|
"~*(?:\b)prod2016\.com(?:\b|)" 1;
|
|
"~*(?:\b)prodess\.ru(?:\b|)" 1;
|
|
"~*(?:\b)producm\.ru(?:\b|)" 1;
|
|
"~*(?:\b)productarium\.com(?:\b|)" 1;
|
|
"~*(?:\b)produkto\.net(?:\b|)" 1;
|
|
"~*(?:\b)prodvigator\.ua(?:\b|)" 1;
|
|
"~*(?:\b)proekt\-gaz\.ru(?:\b|)" 1;
|
|
"~*(?:\b)proekt\-mos\.ru(?:\b|)" 1;
|
|
"~*(?:\b)professionaldieselcare\.com(?:\b|)" 1;
|
|
"~*(?:\b)professionalwritingservices15\.blogspot\.ru(?:\b|)" 1;
|
|
"~*(?:\b)profitfx\.online(?:\b|)" 1;
|
|
"~*(?:\b)profitkode\.com(?:\b|)" 1;
|
|
"~*(?:\b)profit\-opportunity\.com(?:\b|)" 1;
|
|
"~*(?:\b)profitsport\.club(?:\b|)" 1;
|
|
"~*(?:\b)profitwithalex\.info(?:\b|)" 1;
|
|
"~*(?:\b)profolan\.pl(?:\b|)" 1;
|
|
"~*(?:\b)proftests\.net(?:\b|)" 1;
|
|
"~*(?:\b)progonrumarket\.ru(?:\b|)" 1;
|
|
"~*(?:\b)progress\-upakovka\.ru(?:\b|)" 1;
|
|
"~*(?:\b)prohoster\.info(?:\b|)" 1;
|
|
"~*(?:\b)prointer\.net\.ua(?:\b|)" 1;
|
|
"~*(?:\b)projectforte\.ru(?:\b|)" 1;
|
|
"~*(?:\b)projefrio\.com\.br(?:\b|)" 1;
|
|
"~*(?:\b)prokotov\.com(?:\b|)" 1;
|
|
"~*(?:\b)prom23\.ru(?:\b|)" 1;
|
|
"~*(?:\b)promalp\-universal\.ru(?:\b|)" 1;
|
|
"~*(?:\b)prombudpostach\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)promgirldresses\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)promodj\.com(?:\b|)" 1;
|
|
"~*(?:\b)promoforum\.ru(?:\b|)" 1;
|
|
"~*(?:\b)promoheads\.com(?:\b|)" 1;
|
|
"~*(?:\b)promover\.org(?:\b|)" 1;
|
|
"~*(?:\b)pronekut\.com(?:\b|)" 1;
|
|
"~*(?:\b)pronorm\.fr(?:\b|)" 1;
|
|
"~*(?:\b)pron\.pro(?:\b|)" 1;
|
|
"~*(?:\b)pro\-okis\.ru(?:\b|)" 1;
|
|
"~*(?:\b)pro\-poly\.ru(?:\b|)" 1;
|
|
"~*(?:\b)proposal\-engine\.com(?:\b|)" 1;
|
|
"~*(?:\b)propranolol40mg\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)proprostatit\.com(?:\b|)" 1;
|
|
"~*(?:\b)prosmibank\.ru(?:\b|)" 1;
|
|
"~*(?:\b)prospekt\-st\.ru(?:\b|)" 1;
|
|
"~*(?:\b)prosperent\.com(?:\b|)" 1;
|
|
"~*(?:\b)prostitutki\-almata\.org(?:\b|)" 1;
|
|
"~*(?:\b)prostitutki\-astana\.org(?:\b|)" 1;
|
|
"~*(?:\b)prostitutki\-belgoroda\.org(?:\b|)" 1;
|
|
"~*(?:\b)prostitutki\-kharkova\.org(?:\b|)" 1;
|
|
"~*(?:\b)prostitutki\-kiev\.org(?:\b|)" 1;
|
|
"~*(?:\b)prostitutki\-novgoroda\.org(?:\b|)" 1;
|
|
"~*(?:\b)prostitutki\-odessa\.org(?:\b|)" 1;
|
|
"~*(?:\b)prostitutki\-rostova\.org(?:\b|)" 1;
|
|
"~*(?:\b)prostitutki\-tolyatti\.org(?:\b|)" 1;
|
|
"~*(?:\b)prostitutki\-tyumeni\.org(?:\b|)" 1;
|
|
"~*(?:\b)prostitutki\-yaroslavlya\.org(?:\b|)" 1;
|
|
"~*(?:\b)pro\-tec\.kz(?:\b|)" 1;
|
|
"~*(?:\b)proxyelite\.biz(?:\b|)" 1;
|
|
"~*(?:\b)proxyradar\.com(?:\b|)" 1;
|
|
"~*(?:\b)prpops\.com(?:\b|)" 1;
|
|
"~*(?:\b)pr\-ten\.de(?:\b|)" 1;
|
|
"~*(?:\b)psa48\.ru(?:\b|)" 1;
|
|
"~*(?:\b)pskcijdc\.bloger\.index\.hr(?:\b|)" 1;
|
|
"~*(?:\b)psoriasis\-file\.trade(?:\b|)" 1;
|
|
"~*(?:\b)pssucai\.info(?:\b|)" 1;
|
|
"~*(?:\b)pst2017\.onlinewebshop\.net(?:\b|)" 1;
|
|
"~*(?:\b)psvita\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ptr\.ruvds\.com(?:\b|)" 1;
|
|
"~*(?:\b)pts163\.ru(?:\b|)" 1;
|
|
"~*(?:\b)pufip\.com(?:\b|)" 1;
|
|
"~*(?:\b)pukaporn\.com(?:\b|)" 1;
|
|
"~*(?:\b)pulse33\.ru(?:\b|)" 1;
|
|
"~*(?:\b)pulseonclick\.com(?:\b|)" 1;
|
|
"~*(?:\b)purchasepillsnorx\.com(?:\b|)" 1;
|
|
"~*(?:\b)purplesphere\.in(?:\b|)" 1;
|
|
"~*(?:\b)purplestats\.com(?:\b|)" 1;
|
|
"~*(?:\b)puserving\.com(?:\b|)" 1;
|
|
"~*(?:\b)push\-ad\.com(?:\b|)" 1;
|
|
"~*(?:\b)pushdata\.sendpulse\.com(?:\b|)" 1;
|
|
"~*(?:\b)pussyfleet\.com(?:\b|)" 1;
|
|
"~*(?:\b)pussysaga\.com(?:\b|)" 1;
|
|
"~*(?:\b)pussyspace\.net(?:\b|)" 1;
|
|
"~*(?:\b)puteshestvennik\.com(?:\b|)" 1;
|
|
"~*(?:\b)putevka24\.ru(?:\b|)" 1;
|
|
"~*(?:\b)putitin\.me(?:\b|)" 1;
|
|
"~*(?:\b)puzo2arbuza\.ru(?:\b|)" 1;
|
|
"~*(?:\b)puzzleweb\.ru(?:\b|)" 1;
|
|
"~*(?:\b)pwwysydh\.com(?:\b|)" 1;
|
|
"~*(?:\b)pxhdwsm\.com(?:\b|)" 1;
|
|
"~*(?:\b)py100\.ru(?:\b|)" 1;
|
|
"~*(?:\b)pyramidlitho\.webs\.com(?:\b|)" 1;
|
|
"~*(?:\b)pyrodesigns\.com\.au(?:\b|)" 1;
|
|
"~*(?:\b)qcstrtvt\.bloger\.index\.hr(?:\b|)" 1;
|
|
"~*(?:\b)qexyfu\.bugs3\.com(?:\b|)" 1;
|
|
"~*(?:\b)qitt\.ru(?:\b|)" 1;
|
|
"~*(?:\b)qld10000\.net(?:\b|)" 1;
|
|
"~*(?:\b)q\-moto\.ru(?:\b|)" 1;
|
|
"~*(?:\b)qor360\.com(?:\b|)" 1;
|
|
"~*(?:\b)qpypcx\.com(?:\b|)" 1;
|
|
"~*(?:\b)qualitymarketzone\.com(?:\b|)" 1;
|
|
"~*(?:\b)quality\-traffic\.com(?:\b|)" 1;
|
|
"~*(?:\b)quangcaons\.com(?:\b|)" 1;
|
|
"~*(?:\b)quebec\-bin\.com(?:\b|)" 1;
|
|
"~*(?:\b)queerspace\.com(?:\b|)" 1;
|
|
"~*(?:\b)quelle\.ru(?:\b|)" 1;
|
|
"~*(?:\b)questionmarque\.ch(?:\b|)" 1;
|
|
"~*(?:\b)quickbuck\.com(?:\b|)" 1;
|
|
"~*(?:\b)quickcashlimited\.com(?:\b|)" 1;
|
|
"~*(?:\b)quickchange\.cc(?:\b|)" 1;
|
|
"~*(?:\b)quickloanbank\.com(?:\b|)" 1;
|
|
"~*(?:\b)quick\-offer\.com(?:\b|)" 1;
|
|
"~*(?:\b)quick\-seeker\.com(?:\b|)" 1;
|
|
"~*(?:\b)quit\-smoking\.ga(?:\b|)" 1;
|
|
"~*(?:\b)quizzitch\.net(?:\b|)" 1;
|
|
"~*(?:\b)qwarckoine\.com(?:\b|)" 1;
|
|
"~*(?:\b)qwesa\.ru(?:\b|)" 1;
|
|
"~*(?:\b)raavidesigns\.com(?:\b|)" 1;
|
|
"~*(?:\b)rabotaetvse\.ru(?:\b|)" 1;
|
|
"~*(?:\b)rabot\.host\.sk(?:\b|)" 1;
|
|
"~*(?:\b)rada\.ru(?:\b|)" 1;
|
|
"~*(?:\b)radiodigital\.co(?:\b|)" 1;
|
|
"~*(?:\b)radiogambling\.com(?:\b|)" 1;
|
|
"~*(?:\b)ragecash\.com(?:\b|)" 1;
|
|
"~*(?:\b)rainbowice\.ru(?:\b|)" 1;
|
|
"~*(?:\b)raisedseo\.com(?:\b|)" 1;
|
|
"~*(?:\b)randalljhoward\.com(?:\b|)" 1;
|
|
"~*(?:\b)randki\-sex\.com(?:\b|)" 1;
|
|
"~*(?:\b)rangjued\.com(?:\b|)" 1;
|
|
"~*(?:\b)rangoman\.date(?:\b|)" 1;
|
|
"~*(?:\b)rank\-checker\.online(?:\b|)" 1;
|
|
"~*(?:\b)rankexperience\.com(?:\b|)" 1;
|
|
"~*(?:\b)rankia\.com(?:\b|)" 1;
|
|
"~*(?:\b)ranking2017\.ga(?:\b|)" 1;
|
|
"~*(?:\b)rankingchart\.de(?:\b|)" 1;
|
|
"~*(?:\b)rankings\-analytics\.com(?:\b|)" 1;
|
|
"~*(?:\b)ranksays\.com(?:\b|)" 1;
|
|
"~*(?:\b)rankscanner\.com(?:\b|)" 1;
|
|
"~*(?:\b)ranksignals\.com(?:\b|)" 1;
|
|
"~*(?:\b)ranksonic\.com(?:\b|)" 1;
|
|
"~*(?:\b)ranksonic\.info(?:\b|)" 1;
|
|
"~*(?:\b)ranksonic\.org(?:\b|)" 1;
|
|
"~*(?:\b)rapevideosmovies\.com(?:\b|)" 1;
|
|
"~*(?:\b)rapidgator\-porn\.ga(?:\b|)" 1;
|
|
"~*(?:\b)rapidokbrain\.com(?:\b|)" 1;
|
|
"~*(?:\b)rapidsites\.pro(?:\b|)" 1;
|
|
"~*(?:\b)raschtextil\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)rasteniya\-vs\-zombi\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ratemodels\.net(?:\b|)" 1;
|
|
"~*(?:\b)razamicroelectronics\.com(?:\b|)" 1;
|
|
"~*(?:\b)razleton\.com(?:\b|)" 1;
|
|
"~*(?:\b)razorweb\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)razyboard\.com(?:\b|)" 1;
|
|
"~*(?:\b)rcb101\.ru(?:\b|)" 1;
|
|
"~*(?:\b)r\-control\.ru(?:\b|)" 1;
|
|
"~*(?:\b)rcpmda\.ikan1080\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)realitykings\.com(?:\b|)" 1;
|
|
"~*(?:\b)realizmobi\.com(?:\b|)" 1;
|
|
"~*(?:\b)realmonte\.net(?:\b|)" 1;
|
|
"~*(?:\b)realnye\-otzyvy\.info(?:\b|)" 1;
|
|
"~*(?:\b)realresultslist\.com(?:\b|)" 1;
|
|
"~*(?:\b)real\-time\-analytics\.com(?:\b|)" 1;
|
|
"~*(?:\b)realting\-moscow\.ru(?:\b|)" 1;
|
|
"~*(?:\b)realtytimes\.com(?:\b|)" 1;
|
|
"~*(?:\b)rebelmouse\.com(?:\b|)" 1;
|
|
"~*(?:\b)rebrand\.ly(?:\b|)" 1;
|
|
"~*(?:\b)rebuildermedical\.com(?:\b|)" 1;
|
|
"~*(?:\b)recinziireale\.com(?:\b|)" 1;
|
|
"~*(?:\b)recipedays\.com(?:\b|)" 1;
|
|
"~*(?:\b)recipedays\.ru(?:\b|)" 1;
|
|
"~*(?:\b)reckonstat\.info(?:\b|)" 1;
|
|
"~*(?:\b)recordpage\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)redbottomheels\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)redhotfreebies\.co\.uk(?:\b|)" 1;
|
|
"~*(?:\b)redirectingat\.com(?:\b|)" 1;
|
|
"~*(?:\b)redirectme\.net(?:\b|)" 1;
|
|
"~*(?:\b)redirect\.trafficreceiver\.club(?:\b|)" 1;
|
|
"~*(?:\b)redirlock\.com(?:\b|)" 1;
|
|
"~*(?:\b)rednise\.com(?:\b|)" 1;
|
|
"~*(?:\b)reelheroes\.net(?:\b|)" 1;
|
|
"~*(?:\b)reeyanaturopathy\.com(?:\b|)" 1;
|
|
"~*(?:\b)refads\.pro(?:\b|)" 1;
|
|
"~*(?:\b)referencemoi\.com(?:\b|)" 1;
|
|
"~*(?:\b)r\-e\-f\-e\-r\-e\-r\.com(?:\b|)" 1;
|
|
"~*(?:\b)refererx\.com(?:\b|)" 1;
|
|
"~*(?:\b)refudiatethissarah\.info(?:\b|)" 1;
|
|
"~*(?:\b)regdefense\.com(?:\b|)" 1;
|
|
"~*(?:\b)regionshop\.biz(?:\b|)" 1;
|
|
"~*(?:\b)registratciya\-v\-moskve\.ru(?:\b|)" 1;
|
|
"~*(?:\b)registrationdomainsite\.com(?:\b|)" 1;
|
|
"~*(?:\b)registry\-cleaner\.net(?:\b|)" 1;
|
|
"~*(?:\b)registry\-clean\-up\.net(?:\b|)" 1;
|
|
"~*(?:\b)registrydomainservices\.com(?:\b|)" 1;
|
|
"~*(?:\b)registrysweeper\.com(?:\b|)" 1;
|
|
"~*(?:\b)reimageplus\.com(?:\b|)" 1;
|
|
"~*(?:\b)reining\.lovasszovetseg\.hu(?:\b|)" 1;
|
|
"~*(?:\b)reklama1\.ru(?:\b|)" 1;
|
|
"~*(?:\b)reklama\-i\-rabota\.ru(?:\b|)" 1;
|
|
"~*(?:\b)reklamuss\.ru(?:\b|)" 1;
|
|
"~*(?:\b)relax\.ru(?:\b|)" 1;
|
|
"~*(?:\b)relayblog\.com(?:\b|)" 1;
|
|
"~*(?:\b)remedyotc\.com(?:\b|)" 1;
|
|
"~*(?:\b)remmling\.de(?:\b|)" 1;
|
|
"~*(?:\b)remontbiz\.ru(?:\b|)" 1;
|
|
"~*(?:\b)remont\-comp\-pomosh\.ru(?:\b|)" 1;
|
|
"~*(?:\b)remont\-fridge\-tv\.ru(?:\b|)" 1;
|
|
"~*(?:\b)remontgruzovik\.ru(?:\b|)" 1;
|
|
"~*(?:\b)remont\-komputerov\-notebook\.ru(?:\b|)" 1;
|
|
"~*(?:\b)remont\-mobile\-phones\.ru(?:\b|)" 1;
|
|
"~*(?:\b)remont\-ustanovka\-tehniki\.ru(?:\b|)" 1;
|
|
"~*(?:\b)remontvsamare\.su(?:\b|)" 1;
|
|
"~*(?:\b)remorcicomerciale\.ro(?:\b|)" 1;
|
|
"~*(?:\b)remote\-dba\.de(?:\b|)" 1;
|
|
"~*(?:\b)remybutler\.fr(?:\b|)" 1;
|
|
"~*(?:\b)renecaovilla\.online(?:\b|)" 1;
|
|
"~*(?:\b)renecaovillasale\.online(?:\b|)" 1;
|
|
"~*(?:\b)renewablewealth\.com(?:\b|)" 1;
|
|
"~*(?:\b)rennlist\.com(?:\b|)" 1;
|
|
"~*(?:\b)rent2spb\.ru(?:\b|)" 1;
|
|
"~*(?:\b)rentalcarnavi\.info(?:\b|)" 1;
|
|
"~*(?:\b)rentaremotecomputer\.com(?:\b|)" 1;
|
|
"~*(?:\b)rentehno\.ru(?:\b|)" 1;
|
|
"~*(?:\b)rep\-am\.com(?:\b|)" 1;
|
|
"~*(?:\b)repeatlogo\.co\.uk(?:\b|)" 1;
|
|
"~*(?:\b)replicaclub\.ru(?:\b|)" 1;
|
|
"~*(?:\b)replicalouboutin\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)replica\-watch\.ru(?:\b|)" 1;
|
|
"~*(?:\b)resant\.ru(?:\b|)" 1;
|
|
"~*(?:\b)research\.ifmo\.ru(?:\b|)" 1;
|
|
"~*(?:\b)resellerclub\.com(?:\b|)" 1;
|
|
"~*(?:\b)responsinator\.com(?:\b|)" 1;
|
|
"~*(?:\b)responsive\-test\.net(?:\b|)" 1;
|
|
"~*(?:\b)respublica\-otel\.ru(?:\b|)" 1;
|
|
"~*(?:\b)restaurantlescampi\.com(?:\b|)" 1;
|
|
"~*(?:\b)restorator\-msk\.ru(?:\b|)" 1;
|
|
"~*(?:\b)resultshub\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)retailwith\.com(?:\b|)" 1;
|
|
"~*(?:\b)rethinkwasteni\.info(?:\b|)" 1;
|
|
"~*(?:\b)retreatia\.com(?:\b|)" 1;
|
|
"~*(?:\b)reversing\.cc(?:\b|)" 1;
|
|
"~*(?:\b)revistaindustria\.com(?:\b|)" 1;
|
|
"~*(?:\b)rewardit\.com(?:\b|)" 1;
|
|
"~*(?:\b)rewardpoll\.com(?:\b|)" 1;
|
|
"~*(?:\b)reward\-survey\.net(?:\b|)" 1;
|
|
"~*(?:\b)reyel1985\.webnode\.fr(?:\b|)" 1;
|
|
"~*(?:\b)rezeptiblud\.ru(?:\b|)" 1;
|
|
"~*(?:\b)rfd\-split\.hr(?:\b|)" 1;
|
|
"~*(?:\b)rff\-cfal\.info(?:\b|)" 1;
|
|
"~*(?:\b)rfid\-locker\.co(?:\b|)" 1;
|
|
"~*(?:\b)rialp\.getenjoyment\.net(?:\b|)" 1;
|
|
"~*(?:\b)ribieiendom\.no(?:\b|)" 1;
|
|
"~*(?:\b)richinvestmonitor\.com(?:\b|)" 1;
|
|
"~*(?:\b)ric\.info(?:\b|)" 1;
|
|
"~*(?:\b)ricorsogiustizia\.org(?:\b|)" 1;
|
|
"~*(?:\b)riders\.ro(?:\b|)" 1;
|
|
"~*(?:\b)rightenergysolutions\.com\.au(?:\b|)" 1;
|
|
"~*(?:\b)rimedia\.org(?:\b|)" 1;
|
|
"~*(?:\b)ring4rhino\.com(?:\b|)" 1;
|
|
"~*(?:\b)ringporno\.com(?:\b|)" 1;
|
|
"~*(?:\b)ringtonepartner\.com(?:\b|)" 1;
|
|
"~*(?:\b)rique\.host\.sk(?:\b|)" 1;
|
|
"~*(?:\b)risparmiocasa\.bz\.it(?:\b|)" 1;
|
|
"~*(?:\b)ritlweb\.com(?:\b|)" 1;
|
|
"~*(?:\b)rixpix\.ru(?:\b|)" 1;
|
|
"~*(?:\b)rniaeba\.ga(?:\b|)" 1;
|
|
"~*(?:\b)rn\-to\-bsn\.com(?:\b|)" 1;
|
|
"~*(?:\b)robertefuller\.com(?:\b|)" 1;
|
|
"~*(?:\b)robot\-forex\.biz(?:\b|)" 1;
|
|
"~*(?:\b)rock\-cafe\.info(?:\b|)" 1;
|
|
"~*(?:\b)rocketchange\.ru(?:\b|)" 1;
|
|
"~*(?:\b)rockingclicks\.com(?:\b|)" 1;
|
|
"~*(?:\b)rockma\.se(?:\b|)" 1;
|
|
"~*(?:\b)rockprogblog\.com(?:\b|)" 1;
|
|
"~*(?:\b)rogervivierforsale\.com(?:\b|)" 1;
|
|
"~*(?:\b)roleforum\.ru(?:\b|)" 1;
|
|
"~*(?:\b)roll123\.com(?:\b|)" 1;
|
|
"~*(?:\b)roma\-kukareku\.livejournal\.com(?:\b|)" 1;
|
|
"~*(?:\b)rome2rio\.com(?:\b|)" 1;
|
|
"~*(?:\b)romhacking\.ru(?:\b|)" 1;
|
|
"~*(?:\b)roofers\.org\.uk(?:\b|)" 1;
|
|
"~*(?:\b)rootandroid\.org(?:\b|)" 1;
|
|
"~*(?:\b)rosbalt\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)ros\-ctm\.ru(?:\b|)" 1;
|
|
"~*(?:\b)rospromtest\.ru(?:\b|)" 1;
|
|
"~*(?:\b)rossanasaavedra\.net(?:\b|)" 1;
|
|
"~*(?:\b)rossmark\.ru(?:\b|)" 1;
|
|
"~*(?:\b)rostov\.xrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)royalads\.net(?:\b|)" 1;
|
|
"~*(?:\b)royal\-betting\.net(?:\b|)" 1;
|
|
"~*(?:\b)royalcar\-ufa\.ru(?:\b|)" 1;
|
|
"~*(?:\b)royal\-investments\.net(?:\b|)" 1;
|
|
"~*(?:\b)royalvegascasino\.com(?:\b|)" 1;
|
|
"~*(?:\b)rozalli\.com(?:\b|)" 1;
|
|
"~*(?:\b)roznica\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)rp9\.ru(?:\b|)" 1;
|
|
"~*(?:\b)rubanners\.com(?:\b|)" 1;
|
|
"~*(?:\b)rubbed\.us(?:\b|)" 1;
|
|
"~*(?:\b)ruclicks\.com(?:\b|)" 1;
|
|
"~*(?:\b)rucrypt\.com(?:\b|)" 1;
|
|
"~*(?:\b)ru\-dety\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ruex\.org\.ua(?:\b|)" 1;
|
|
"~*(?:\b)ruf777\.com(?:\b|)" 1;
|
|
"~*(?:\b)rukino\.org(?:\b|)" 1;
|
|
"~*(?:\b)rumamba\.com(?:\b|)" 1;
|
|
"~*(?:\b)running\-line\.ru(?:\b|)" 1;
|
|
"~*(?:\b)runofilms\.ru(?:\b|)" 1;
|
|
"~*(?:\b)runstocks\.com(?:\b|)" 1;
|
|
"~*(?:\b)runtnc\.net(?:\b|)" 1;
|
|
"~*(?:\b)ruscoininvest\.company(?:\b|)" 1;
|
|
"~*(?:\b)ruscopybook\.com(?:\b|)" 1;
|
|
"~*(?:\b)rusenvironmental\.net(?:\b|)" 1;
|
|
"~*(?:\b)rusexy\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)rusoft\-zone\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ruspdd\.com(?:\b|)" 1;
|
|
"~*(?:\b)rus\-pornuha\.com(?:\b|)" 1;
|
|
"~*(?:\b)rusprostitute\.com(?:\b|)" 1;
|
|
"~*(?:\b)russian\-postindex\.ru(?:\b|)" 1;
|
|
"~*(?:\b)russia\-tao\.ru(?:\b|)" 1;
|
|
"~*(?:\b)russia\-today\-video\.ru(?:\b|)" 1;
|
|
"~*(?:\b)russintv\.fr(?:\b|)" 1;
|
|
"~*(?:\b)russkie\-gorki\.ru(?:\b|)" 1;
|
|
"~*(?:\b)russkoe\-zdorovie\.ru(?:\b|)" 1;
|
|
"~*(?:\b)rus\-teh\.narod\.ru(?:\b|)" 1;
|
|
"~*(?:\b)rustic\-quiver\.win(?:\b|)" 1;
|
|
"~*(?:\b)rutor\.group(?:\b|)" 1;
|
|
"~*(?:\b)rutor\.vip(?:\b|)" 1;
|
|
"~*(?:\b)rvi\.biz(?:\b|)" 1;
|
|
"~*(?:\b)rvtv\.ru(?:\b|)" 1;
|
|
"~*(?:\b)rvzr\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)rybalka\-opt\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ryetaw\.com(?:\b|)" 1;
|
|
"~*(?:\b)s1z\.ru(?:\b|)" 1;
|
|
"~*(?:\b)s8\-nowy\-wygraj\.comli\.com(?:\b|)" 1;
|
|
"~*(?:\b)sabaapress\.com(?:\b|)" 1;
|
|
"~*(?:\b)sabizonline\.com(?:\b|)" 1;
|
|
"~*(?:\b)sack\.net(?:\b|)" 1;
|
|
"~*(?:\b)sadaholding\.com(?:\b|)" 1;
|
|
"~*(?:\b)saddiechoua\.com(?:\b|)" 1;
|
|
"~*(?:\b)sad\-torg\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)sady\-urala\.ru(?:\b|)" 1;
|
|
"~*(?:\b)saecsa\.co(?:\b|)" 1;
|
|
"~*(?:\b)safe\-app\.net(?:\b|)" 1;
|
|
"~*(?:\b)saitevpatorii\.com(?:\b|)" 1;
|
|
"~*(?:\b)sajatvelemeny\.com(?:\b|)" 1;
|
|
"~*(?:\b)sakhboard\.ru(?:\b|)" 1;
|
|
"~*(?:\b)sale\-japan\.com(?:\b|)" 1;
|
|
"~*(?:\b)saletool\.ru(?:\b|)" 1;
|
|
"~*(?:\b)sa\-live\.com(?:\b|)" 1;
|
|
"~*(?:\b)salmonfishingsacramentoriver\.com(?:\b|)" 1;
|
|
"~*(?:\b)saltspray\.ru(?:\b|)" 1;
|
|
"~*(?:\b)salut\-camp\.ru(?:\b|)" 1;
|
|
"~*(?:\b)salutmontreal\.com(?:\b|)" 1;
|
|
"~*(?:\b)samara\.rosfirm\.ru(?:\b|)" 1;
|
|
"~*(?:\b)sammlungfotos\.online(?:\b|)" 1;
|
|
"~*(?:\b)sammyweaver\.com(?:\b|)" 1;
|
|
"~*(?:\b)samoiedo\.it(?:\b|)" 1;
|
|
"~*(?:\b)samolet\.fr(?:\b|)" 1;
|
|
"~*(?:\b)samo\-soznanie\.ru(?:\b|)" 1;
|
|
"~*(?:\b)sampleletters\.net(?:\b|)" 1;
|
|
"~*(?:\b)sanatorrii\.ru(?:\b|)" 1;
|
|
"~*(?:\b)sandhillsonline\.com(?:\b|)" 1;
|
|
"~*(?:\b)saneitconsulting\.com(?:\b|)" 1;
|
|
"~*(?:\b)saneyes\.com(?:\b|)" 1;
|
|
"~*(?:\b)sanidumps\.com(?:\b|)" 1;
|
|
"~*(?:\b)sanjosestartups\.com(?:\b|)" 1;
|
|
"~*(?:\b)sankt\-peterburg\.nodup\.ru(?:\b|)" 1;
|
|
"~*(?:\b)santasgift\.ml(?:\b|)" 1;
|
|
"~*(?:\b)santechnik\.jimdo\.com(?:\b|)" 1;
|
|
"~*(?:\b)sanyuprojects\.com(?:\b|)" 1;
|
|
"~*(?:\b)sape\.top(?:\b|)" 1;
|
|
"~*(?:\b)sarafangel\.ru(?:\b|)" 1;
|
|
"~*(?:\b)saratov\.xrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)sardinie\.us(?:\b|)" 1;
|
|
"~*(?:\b)sa\-rewards\.co\.za(?:\b|)" 1;
|
|
"~*(?:\b)sarf3omlat\.com(?:\b|)" 1;
|
|
"~*(?:\b)sarm\.tk(?:\b|)" 1;
|
|
"~*(?:\b)sashagreyblog\.ga(?:\b|)" 1;
|
|
"~*(?:\b)satellite\.maps\.ilovevitaly\.com(?:\b|)" 1;
|
|
"~*(?:\b)saugatuck\.com(?:\b|)" 1;
|
|
"~*(?:\b)savefrom\.com(?:\b|)" 1;
|
|
"~*(?:\b)saveindex\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)savememoney\.co\.za(?:\b|)" 1;
|
|
"~*(?:\b)savetubevideo\.com(?:\b|)" 1;
|
|
"~*(?:\b)savingsslider\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)sawin\.beth\.webd\.pl(?:\b|)" 1;
|
|
"~*(?:\b)sax\-sex\.com(?:\b|)" 1;
|
|
"~*(?:\b)sayyoethe\.blogspot\.co\.za(?:\b|)" 1;
|
|
"~*(?:\b)sbdl\.no(?:\b|)" 1;
|
|
"~*(?:\b)sbetodiodnye\-lampy\.ru(?:\b|)" 1;
|
|
"~*(?:\b)sbf441\.com(?:\b|)" 1;
|
|
"~*(?:\b)sbornik\-zakonov\.ru(?:\b|)" 1;
|
|
"~*(?:\b)sbprabooks\.com(?:\b|)" 1;
|
|
"~*(?:\b)sbricur\.com(?:\b|)" 1;
|
|
"~*(?:\b)sbt\-aqua\.ru(?:\b|)" 1;
|
|
"~*(?:\b)sbtdesign\.co\.uk(?:\b|)" 1;
|
|
"~*(?:\b)sbwealthsolutions\.ca(?:\b|)" 1;
|
|
"~*(?:\b)scalerite\.co\.za(?:\b|)" 1;
|
|
"~*(?:\b)scanmarine\.info(?:\b|)" 1;
|
|
"~*(?:\b)scanmyphones\.com(?:\b|)" 1;
|
|
"~*(?:\b)scanner\-alexa\.top(?:\b|)" 1;
|
|
"~*(?:\b)scanner\-alex\.top(?:\b|)" 1;
|
|
"~*(?:\b)scanner\-andrew\.top(?:\b|)" 1;
|
|
"~*(?:\b)scanner\-barak\.top(?:\b|)" 1;
|
|
"~*(?:\b)scanner\-brian\.top(?:\b|)" 1;
|
|
"~*(?:\b)scanner\-donald\.top(?:\b|)" 1;
|
|
"~*(?:\b)scanner\-don\.top(?:\b|)" 1;
|
|
"~*(?:\b)scanner\-elena\.top(?:\b|)" 1;
|
|
"~*(?:\b)scanner\-fred\.top(?:\b|)" 1;
|
|
"~*(?:\b)scanner\-george\.top(?:\b|)" 1;
|
|
"~*(?:\b)scanner\-irvin\.top(?:\b|)" 1;
|
|
"~*(?:\b)scanner\-ivan\.top(?:\b|)" 1;
|
|
"~*(?:\b)scanner\-jack\.top(?:\b|)" 1;
|
|
"~*(?:\b)scanner\-jane\.top(?:\b|)" 1;
|
|
"~*(?:\b)scanner\-jessica\.top(?:\b|)" 1;
|
|
"~*(?:\b)scanner\-jess\.top(?:\b|)" 1;
|
|
"~*(?:\b)scanner\-john\.top(?:\b|)" 1;
|
|
"~*(?:\b)scanner\-josh\.top(?:\b|)" 1;
|
|
"~*(?:\b)scanner\-julianna\.top(?:\b|)" 1;
|
|
"~*(?:\b)scanner\-julia\.top(?:\b|)" 1;
|
|
"~*(?:\b)scanner\-margo\.top(?:\b|)" 1;
|
|
"~*(?:\b)scanner\-mark\.top(?:\b|)" 1;
|
|
"~*(?:\b)scanner\-marwin\.top(?:\b|)" 1;
|
|
"~*(?:\b)scanner\-mary\.top(?:\b|)" 1;
|
|
"~*(?:\b)scanner\-nelson\.top(?:\b|)" 1;
|
|
"~*(?:\b)scanner\-olga\.top(?:\b|)" 1;
|
|
"~*(?:\b)scanner\-viktor\.top(?:\b|)" 1;
|
|
"~*(?:\b)scanner\-walter\.top(?:\b|)" 1;
|
|
"~*(?:\b)scanner\-walt\.top(?:\b|)" 1;
|
|
"~*(?:\b)scanner\-willy\.top(?:\b|)" 1;
|
|
"~*(?:\b)scansafe\.net(?:\b|)" 1;
|
|
"~*(?:\b)scanspyware\.net(?:\b|)" 1;
|
|
"~*(?:\b)scat\.porn(?:\b|)" 1;
|
|
"~*(?:\b)scenarii\-1\-sentyabrya\.uroki\.org\.ua(?:\b|)" 1;
|
|
"~*(?:\b)scenicmissouri\.us(?:\b|)" 1;
|
|
"~*(?:\b)schlampen\-treffen\.com(?:\b|)" 1;
|
|
"~*(?:\b)school\-diplomat\.ru(?:\b|)" 1;
|
|
"~*(?:\b)schoolfiles\.net(?:\b|)" 1;
|
|
"~*(?:\b)scmor\.ilxc\.cc(?:\b|)" 1;
|
|
"~*(?:\b)scoopquest\.com(?:\b|)" 1;
|
|
"~*(?:\b)scopich\.com(?:\b|)" 1;
|
|
"~*(?:\b)score\-ads\.men(?:\b|)" 1;
|
|
"~*(?:\b)scottbywater\.com(?:\b|)" 1;
|
|
"~*(?:\b)scrapinghub\.com(?:\b|)" 1;
|
|
"~*(?:\b)scrapy\.org(?:\b|)" 1;
|
|
"~*(?:\b)screentoolkit\.com(?:\b|)" 1;
|
|
"~*(?:\b)scripted\.com(?:\b|)" 1;
|
|
"~*(?:\b)scrnet\.biz\.ua(?:\b|)" 1;
|
|
"~*(?:\b)sc\-specialhost\.com(?:\b|)" 1;
|
|
"~*(?:\b)sdelai\-prosto\.ru(?:\b|)" 1;
|
|
"~*(?:\b)sdelatmebel\.ru(?:\b|)" 1;
|
|
"~*(?:\b)sdi\-pme\.com(?:\b|)" 1;
|
|
"~*(?:\b)sdrescher\.net(?:\b|)" 1;
|
|
"~*(?:\b)sdsjweb\.com(?:\b|)" 1;
|
|
"~*(?:\b)seadragonherbery\.com(?:\b|)" 1;
|
|
"~*(?:\b)seansonline24\.pl(?:\b|)" 1;
|
|
"~*(?:\b)search\.1and1\.com(?:\b|)" 1;
|
|
"~*(?:\b)searchaddis\.com(?:\b|)" 1;
|
|
"~*(?:\b)search\.alot\.com(?:\b|)" 1;
|
|
"~*(?:\b)searchencrypt\.com(?:\b|)" 1;
|
|
"~*(?:\b)searchengineranker\.email(?:\b|)" 1;
|
|
"~*(?:\b)search\-error\.com(?:\b|)" 1;
|
|
"~*(?:\b)search\-goo\.com(?:\b|)" 1;
|
|
"~*(?:\b)searchimage\.co(?:\b|)" 1;
|
|
"~*(?:\b)searchimpression\.com(?:\b|)" 1;
|
|
"~*(?:\b)searchinquire\.com(?:\b|)" 1;
|
|
"~*(?:\b)searchinterneat\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)searchkut\.com(?:\b|)" 1;
|
|
"~*(?:\b)searchlock\.com(?:\b|)" 1;
|
|
"~*(?:\b)searchmywindow\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)search\.pch\.com(?:\b|)" 1;
|
|
"~*(?:\b)searchtooknow\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)searchwebknow\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)search\.xtconnect\.com(?:\b|)" 1;
|
|
"~*(?:\b)seasaltwithfood\.com(?:\b|)" 1;
|
|
"~*(?:\b)seasonvar\.ru(?:\b|)" 1;
|
|
"~*(?:\b)se\.bnt\-team\.com(?:\b|)" 1;
|
|
"~*(?:\b)seccioncontrabajo\.com(?:\b|)" 1;
|
|
"~*(?:\b)secretscook\.ru(?:\b|)" 1;
|
|
"~*(?:\b)secret\.xn\-\-oogle\-wmc\.com(?:\b|)" 1;
|
|
"~*(?:\b)security60\-e\.com(?:\b|)" 1;
|
|
"~*(?:\b)securityallianceservices\.com(?:\b|)" 1;
|
|
"~*(?:\b)seeingmeerkat\.com(?:\b|)" 1;
|
|
"~*(?:\b)seemoreresultshu\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)seeresultshub\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)see\-your\-website\-here\.com(?:\b|)" 1;
|
|
"~*(?:\b)segol\.tv(?:\b|)" 1;
|
|
"~*(?:\b)sei80\.com(?:\b|)" 1;
|
|
"~*(?:\b)seinterface\.com(?:\b|)" 1;
|
|
"~*(?:\b)seksotur\.ru(?:\b|)" 1;
|
|
"~*(?:\b)seksvideoonlain\.com(?:\b|)" 1;
|
|
"~*(?:\b)selectads\.men(?:\b|)" 1;
|
|
"~*(?:\b)sel\-hoz\.com(?:\b|)" 1;
|
|
"~*(?:\b)sell\-fb\-group\-here\.com(?:\b|)" 1;
|
|
"~*(?:\b)semalt\.com(?:\b|)" 1;
|
|
"~*(?:\b)semaltmedia\.com(?:\b|)" 1;
|
|
"~*(?:\b)seminarygeorgia59\.ga(?:\b|)" 1;
|
|
"~*(?:\b)seminarykansas904\.ml(?:\b|)" 1;
|
|
"~*(?:\b)semp\.net(?:\b|)" 1;
|
|
"~*(?:\b)semprofile\.com(?:\b|)" 1;
|
|
"~*(?:\b)semrush\.com(?:\b|)" 1;
|
|
"~*(?:\b)sendearnings\.com(?:\b|)" 1;
|
|
"~*(?:\b)senger\.atspace\.co\.uk(?:\b|)" 1;
|
|
"~*(?:\b)seo\-2\-0\.com(?:\b|)" 1;
|
|
"~*(?:\b)seoanalyses\.com(?:\b|)" 1;
|
|
"~*(?:\b)seoboxes\.com(?:\b|)" 1;
|
|
"~*(?:\b)seocdvig\.ru(?:\b|)" 1;
|
|
"~*(?:\b)seocheckupx\.com(?:\b|)" 1;
|
|
"~*(?:\b)seocheki\.net(?:\b|)" 1;
|
|
"~*(?:\b)seoexperimenty\.ru(?:\b|)" 1;
|
|
"~*(?:\b)seofied\.com(?:\b|)" 1;
|
|
"~*(?:\b)seofirmreviewsus\.info(?:\b|)" 1;
|
|
"~*(?:\b)seogadget\.ru(?:\b|)" 1;
|
|
"~*(?:\b)seoheap\.com(?:\b|)" 1;
|
|
"~*(?:\b)seoholding\.com(?:\b|)" 1;
|
|
"~*(?:\b)seojokes\.net(?:\b|)" 1;
|
|
"~*(?:\b)seokicks\.de(?:\b|)" 1;
|
|
"~*(?:\b)seolab\.top(?:\b|)" 1;
|
|
"~*(?:\b)seomarketings\.online(?:\b|)" 1;
|
|
"~*(?:\b)seonetwizard\.com(?:\b|)" 1;
|
|
"~*(?:\b)seo\-platform\.com(?:\b|)" 1;
|
|
"~*(?:\b)seo\-prof1\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)seoprofiler\.com(?:\b|)" 1;
|
|
"~*(?:\b)seorank\.info(?:\b|)" 1;
|
|
"~*(?:\b)seorankinglinks\.com(?:\b|)" 1;
|
|
"~*(?:\b)seorankinglinks\.us(?:\b|)" 1;
|
|
"~*(?:\b)seorankinglinks\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)seorussian\.ru(?:\b|)" 1;
|
|
"~*(?:\b)seo\-smm\.kz(?:\b|)" 1;
|
|
"~*(?:\b)seotoolsagency\.com(?:\b|)" 1;
|
|
"~*(?:\b)seo\-tools\-optimizing\.com(?:\b|)" 1;
|
|
"~*(?:\b)seo\-traffic\-ranking\.info(?:\b|)" 1;
|
|
"~*(?:\b)serdcenebolit\.com(?:\b|)" 1;
|
|
"~*(?:\b)sergiorossistore\.online(?:\b|)" 1;
|
|
"~*(?:\b)serialsway\.ucoz\.ru(?:\b|)" 1;
|
|
"~*(?:\b)serpstat\.com(?:\b|)" 1;
|
|
"~*(?:\b)serptehnika\.ru(?:\b|)" 1;
|
|
"~*(?:\b)servethis\.com(?:\b|)" 1;
|
|
"~*(?:\b)service\.adtech\.fr(?:\b|)" 1;
|
|
"~*(?:\b)service\.adtech\.us(?:\b|)" 1;
|
|
"~*(?:\b)servicecenter\.co\.ua(?:\b|)" 1;
|
|
"~*(?:\b)service\-core\.ru(?:\b|)" 1;
|
|
"~*(?:\b)serving\.adbetclickin\.pink(?:\b|)" 1;
|
|
"~*(?:\b)servingnotice\.com(?:\b|)" 1;
|
|
"~*(?:\b)serviporno\.com(?:\b|)" 1;
|
|
"~*(?:\b)servisural\.ru(?:\b|)" 1;
|
|
"~*(?:\b)serw\.clicksor\.com(?:\b|)" 1;
|
|
"~*(?:\b)seryeznie\-znakomstva\.ru(?:\b|)" 1;
|
|
"~*(?:\b)sethrollins\.net(?:\b|)" 1;
|
|
"~*(?:\b)sevendays\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)sevenstars7\.com(?:\b|)" 1;
|
|
"~*(?:\b)se\-welding\.ru(?:\b|)" 1;
|
|
"~*(?:\b)sexad\.net(?:\b|)" 1;
|
|
"~*(?:\b)sexblog\.pw(?:\b|)" 1;
|
|
"~*(?:\b)sexcamamateurchat\.com(?:\b|)" 1;
|
|
"~*(?:\b)sex\-dating\.co(?:\b|)" 1;
|
|
"~*(?:\b)sexflirtbook\.com(?:\b|)" 1;
|
|
"~*(?:\b)sex\-foto\.pw(?:\b|)" 1;
|
|
"~*(?:\b)sexfreepornoxxx\.com(?:\b|)" 1;
|
|
"~*(?:\b)sexgalleries\.top(?:\b|)" 1;
|
|
"~*(?:\b)sex\.hotblog\.top(?:\b|)" 1;
|
|
"~*(?:\b)sexiporno\.net(?:\b|)" 1;
|
|
"~*(?:\b)sexkontakteao\.info(?:\b|)" 1;
|
|
"~*(?:\b)sexkontakte\-seite\.com(?:\b|)" 1;
|
|
"~*(?:\b)sexkrasivo\.net(?:\b|)" 1;
|
|
"~*(?:\b)sexobzor\.info(?:\b|)" 1;
|
|
"~*(?:\b)sexpartygirls\.net(?:\b|)" 1;
|
|
"~*(?:\b)sexphoto\.site(?:\b|)" 1;
|
|
"~*(?:\b)sexpornotales\.com(?:\b|)" 1;
|
|
"~*(?:\b)sex\-pr\.net(?:\b|)" 1;
|
|
"~*(?:\b)sexreliz\.com(?:\b|)" 1;
|
|
"~*(?:\b)sexsaoy\.com(?:\b|)" 1;
|
|
"~*(?:\b)sexsearch\.com(?:\b|)" 1;
|
|
"~*(?:\b)sex\-sex\-sex5\.com(?:\b|)" 1;
|
|
"~*(?:\b)sexs\-foto\.com(?:\b|)" 1;
|
|
"~*(?:\b)sexs\-foto\.top(?:\b|)" 1;
|
|
"~*(?:\b)sexspornotub\.com(?:\b|)" 1;
|
|
"~*(?:\b)sexstream\.pl(?:\b|)" 1;
|
|
"~*(?:\b)sextracker\.be(?:\b|)" 1;
|
|
"~*(?:\b)sex\-tracker\.com(?:\b|)" 1;
|
|
"~*(?:\b)sextracker\.com(?:\b|)" 1;
|
|
"~*(?:\b)sex\-tracker\.de(?:\b|)" 1;
|
|
"~*(?:\b)sextracker\.de(?:\b|)" 1;
|
|
"~*(?:\b)sexuria\.net(?:\b|)" 1;
|
|
"~*(?:\b)sexvideo\-sex\.com(?:\b|)" 1;
|
|
"~*(?:\b)sexvporno\.ru(?:\b|)" 1;
|
|
"~*(?:\b)sex\-watch\.com(?:\b|)" 1;
|
|
"~*(?:\b)sexyali\.com(?:\b|)" 1;
|
|
"~*(?:\b)sexy\.babes\.frontend\-stack\.top(?:\b|)" 1;
|
|
"~*(?:\b)sexy\-pings\.com(?:\b|)" 1;
|
|
"~*(?:\b)sexy\-screen\-savers\.com(?:\b|)" 1;
|
|
"~*(?:\b)sexystrippe\.info(?:\b|)" 1;
|
|
"~*(?:\b)sexyteens\.hol\.es(?:\b|)" 1;
|
|
"~*(?:\b)sexytrend\.ru(?:\b|)" 1;
|
|
"~*(?:\b)sfd\-chess\.ru(?:\b|)" 1;
|
|
"~*(?:\b)sfj\-ror\.no(?:\b|)" 1;
|
|
"~*(?:\b)s\-forum\.biz(?:\b|)" 1;
|
|
"~*(?:\b)shakhtar\-doneck\.ru(?:\b|)" 1;
|
|
"~*(?:\b)shama\-rc\.net(?:\b|)" 1;
|
|
"~*(?:\b)sharebutton\.net(?:\b|)" 1;
|
|
"~*(?:\b)sharebutton\.org(?:\b|)" 1;
|
|
"~*(?:\b)share\-buttons\-for\-free\.com(?:\b|)" 1;
|
|
"~*(?:\b)sharebutton\.to(?:\b|)" 1;
|
|
"~*(?:\b)shariki\-zuma\-lines\.ru(?:\b|)" 1;
|
|
"~*(?:\b)sharpchallenge\.com(?:\b|)" 1;
|
|
"~*(?:\b)shell\-pmr\.ru(?:\b|)" 1;
|
|
"~*(?:\b)shemalegalls\.blogporn\.in(?:\b|)" 1;
|
|
"~*(?:\b)shemale\-sex\.net(?:\b|)" 1;
|
|
"~*(?:\b)sherlock\.se(?:\b|)" 1;
|
|
"~*(?:\b)shijian\.ac\.cn(?:\b|)" 1;
|
|
"~*(?:\b)shikiso\.info(?:\b|)" 1;
|
|
"~*(?:\b)shiksabd\.com(?:\b|)" 1;
|
|
"~*(?:\b)shillyourcoins\.com(?:\b|)" 1;
|
|
"~*(?:\b)shinikiev\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)ship\-marvel\.co\.ua(?:\b|)" 1;
|
|
"~*(?:\b)shisha\-swag\.de(?:\b|)" 1;
|
|
"~*(?:\b)shitmovs\.com(?:\b|)" 1;
|
|
"~*(?:\b)shivafurnishings\.com(?:\b|)" 1;
|
|
"~*(?:\b)shlyahten\.ru(?:\b|)" 1;
|
|
"~*(?:\b)shmetall\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)shodanhq\.com(?:\b|)" 1;
|
|
"~*(?:\b)shoesonlinebuy\.cn(?:\b|)" 1;
|
|
"~*(?:\b)shoesonlinebuy\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)shohanb\.com(?:\b|)" 1;
|
|
"~*(?:\b)shop\.acim\.org(?:\b|)" 1;
|
|
"~*(?:\b)shopcheermakeup\.info(?:\b|)" 1;
|
|
"~*(?:\b)shop\-electron\.ru(?:\b|)" 1;
|
|
"~*(?:\b)shopfishing\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)shoplvlv\.us(?:\b|)" 1;
|
|
"~*(?:\b)shopperifymac\.com(?:\b|)" 1;
|
|
"~*(?:\b)shoppingjequiti\.com\.br(?:\b|)" 1;
|
|
"~*(?:\b)shoppingmiracles\.co\.uk(?:\b|)" 1;
|
|
"~*(?:\b)shoppytoolmac\.com(?:\b|)" 1;
|
|
"~*(?:\b)shopsellcardsdumps\.com(?:\b|)" 1;
|
|
"~*(?:\b)shopvilleroyboch\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)shopwme\.ru(?:\b|)" 1;
|
|
"~*(?:\b)shop\.xz618\.com(?:\b|)" 1;
|
|
"~*(?:\b)shtaketniki\.kz(?:\b|)" 1;
|
|
"~*(?:\b)shtaketniki\.ru(?:\b|)" 1;
|
|
"~*(?:\b)shtora66\.ru(?:\b|)" 1;
|
|
"~*(?:\b)shymkent\.xkaz\.org(?:\b|)" 1;
|
|
"~*(?:\b)sibdevice\.ru(?:\b|)" 1;
|
|
"~*(?:\b)sibecoprom\.ru(?:\b|)" 1;
|
|
"~*(?:\b)sibtest\.ru(?:\b|)" 1;
|
|
"~*(?:\b)sibvitr\.ru(?:\b|)" 1;
|
|
"~*(?:\b)sicfor\.bcu\.cc(?:\b|)" 1;
|
|
"~*(?:\b)sideeffectsoftizanidine\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)sientalyric\.co(?:\b|)" 1;
|
|
"~*(?:\b)sierraapps\.com(?:\b|)" 1;
|
|
"~*(?:\b)sigmund\-freud\.co\.uk(?:\b|)" 1;
|
|
"~*(?:\b)signal03\.ru(?:\b|)" 1;
|
|
"~*(?:\b)signoredom\.com(?:\b|)" 1;
|
|
"~*(?:\b)signx\.info(?:\b|)" 1;
|
|
"~*(?:\b)siha\.de(?:\b|)" 1;
|
|
"~*(?:\b)sildenafilcitratemed\.com(?:\b|)" 1;
|
|
"~*(?:\b)sildenafil\-tadalafil\.info(?:\b|)" 1;
|
|
"~*(?:\b)silktide\.com(?:\b|)" 1;
|
|
"~*(?:\b)silverage\.ru(?:\b|)" 1;
|
|
"~*(?:\b)silvercash\.com(?:\b|)" 1;
|
|
"~*(?:\b)silvermature\.net(?:\b|)" 1;
|
|
"~*(?:\b)similardeals\.net(?:\b|)" 1;
|
|
"~*(?:\b)simon3\.ru(?:\b|)" 1;
|
|
"~*(?:\b)simple\-image\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)simplepooltips\.com(?:\b|)" 1;
|
|
"~*(?:\b)simple\-share\-buttons\.com(?:\b|)" 1;
|
|
"~*(?:\b)simply\.net(?:\b|)" 1;
|
|
"~*(?:\b)simpoed\.ufop\.br(?:\b|)" 1;
|
|
"~*(?:\b)sim\-service\.net(?:\b|)" 1;
|
|
"~*(?:\b)sims\-sims\.ru(?:\b|)" 1;
|
|
"~*(?:\b)simul\.co(?:\b|)" 1;
|
|
"~*(?:\b)sindragosa\.comxa\.com(?:\b|)" 1;
|
|
"~*(?:\b)sinel\.info(?:\b|)" 1;
|
|
"~*(?:\b)sinestesia\.host\.sk(?:\b|)" 1;
|
|
"~*(?:\b)sirpornogratis\.xxx(?:\b|)" 1;
|
|
"~*(?:\b)sisi\-go\.ru(?:\b|)" 1;
|
|
"~*(?:\b)sisiynas\.ru(?:\b|)" 1;
|
|
"~*(?:\b)sispe\.com\.br(?:\b|)" 1;
|
|
"~*(?:\b)site3\.free\-share\-buttons\.com(?:\b|)" 1;
|
|
"~*(?:\b)site5\.com(?:\b|)" 1;
|
|
"~*(?:\b)siteaero\.com(?:\b|)" 1;
|
|
"~*(?:\b)site\-analyzer\.com(?:\b|)" 1;
|
|
"~*(?:\b)site\-auditor\.online(?:\b|)" 1;
|
|
"~*(?:\b)sitebeam\.net(?:\b|)" 1;
|
|
"~*(?:\b)siteexpress\.co\.il(?:\b|)" 1;
|
|
"~*(?:\b)siteheart\.net(?:\b|)" 1;
|
|
"~*(?:\b)siteimprove\.com(?:\b|)" 1;
|
|
"~*(?:\b)siteonomy\.com(?:\b|)" 1;
|
|
"~*(?:\b)siteripz\.net(?:\b|)" 1;
|
|
"~*(?:\b)site\.ru(?:\b|)" 1;
|
|
"~*(?:\b)site\-speed\-checker\.site(?:\b|)" 1;
|
|
"~*(?:\b)site\-speed\-check\.site(?:\b|)" 1;
|
|
"~*(?:\b)sitevaluation\.com(?:\b|)" 1;
|
|
"~*(?:\b)sitevaluation\.org(?:\b|)" 1;
|
|
"~*(?:\b)sitevalued\.com(?:\b|)" 1;
|
|
"~*(?:\b)sitiz\.club(?:\b|)" 1;
|
|
"~*(?:\b)sitopreferito\.it(?:\b|)" 1;
|
|
"~*(?:\b)si\-unique\.com(?:\b|)" 1;
|
|
"~*(?:\b)sivs\.ru(?:\b|)" 1;
|
|
"~*(?:\b)s\-iwantyou\.com(?:\b|)" 1;
|
|
"~*(?:\b)sixcooler\.de(?:\b|)" 1;
|
|
"~*(?:\b)sizeplus\.work(?:\b|)" 1;
|
|
"~*(?:\b)skachat\-besplatno\-obrazcy\.ru(?:\b|)" 1;
|
|
"~*(?:\b)skanninge\.se(?:\b|)" 1;
|
|
"~*(?:\b)skatestick\.bid(?:\b|)" 1;
|
|
"~*(?:\b)sk\.golden\-praga\.ru(?:\b|)" 1;
|
|
"~*(?:\b)skincrate\.net(?:\b|)" 1;
|
|
"~*(?:\b)sklad\-24\.ru(?:\b|)" 1;
|
|
"~*(?:\b)skladvaz\.ru(?:\b|)" 1;
|
|
"~*(?:\b)skuteczna\-dieta\.co\.pl(?:\b|)" 1;
|
|
"~*(?:\b)skutecznetabletkinaporostwlosow\.pl(?:\b|)" 1;
|
|
"~*(?:\b)skylta\.com(?:\b|)" 1;
|
|
"~*(?:\b)sky\-mine\.ru(?:\b|)" 1;
|
|
"~*(?:\b)skytraf\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)skyway24\.ru(?:\b|)" 1;
|
|
"~*(?:\b)sladkoevideo\.com(?:\b|)" 1;
|
|
"~*(?:\b)slavia\.info(?:\b|)" 1;
|
|
"~*(?:\b)slavic\-magic\.ru(?:\b|)" 1;
|
|
"~*(?:\b)slavkokacunko\.de(?:\b|)" 1;
|
|
"~*(?:\b)slayerlife\.com(?:\b|)" 1;
|
|
"~*(?:\b)sledstvie\-veli\.net(?:\b|)" 1;
|
|
"~*(?:\b)slimcdn\.com(?:\b|)" 1;
|
|
"~*(?:\b)slim\.sellany\.ru(?:\b|)" 1;
|
|
"~*(?:\b)slkrm\.ru(?:\b|)" 1;
|
|
"~*(?:\b)s\.lollypopgaming\.com(?:\b|)" 1;
|
|
"~*(?:\b)slomm\.ru(?:\b|)" 1;
|
|
"~*(?:\b)slonechka\.ru(?:\b|)" 1;
|
|
"~*(?:\b)slowmacfaster\.trade(?:\b|)" 1;
|
|
"~*(?:\b)slowmac\.tech(?:\b|)" 1;
|
|
"~*(?:\b)sluganarodu\.ru(?:\b|)" 1;
|
|
"~*(?:\b)slujbauborki\.ru(?:\b|)" 1;
|
|
"~*(?:\b)slutloadlive\.com(?:\b|)" 1;
|
|
"~*(?:\b)smadihome\.com(?:\b|)" 1;
|
|
"~*(?:\b)smailik\.org(?:\b|)" 1;
|
|
"~*(?:\b)small\-game\.com(?:\b|)" 1;
|
|
"~*(?:\b)small\-games\.biz(?:\b|)" 1;
|
|
"~*(?:\b)smallseotools\.com(?:\b|)" 1;
|
|
"~*(?:\b)smartadserver\.com(?:\b|)" 1;
|
|
"~*(?:\b)smart\-balancewheel\.com(?:\b|)" 1;
|
|
"~*(?:\b)smartbalanceworld\.com(?:\b|)" 1;
|
|
"~*(?:\b)smartpet\.ru(?:\b|)" 1;
|
|
"~*(?:\b)smart\-scripts\.com(?:\b|)" 1;
|
|
"~*(?:\b)smartshoppymac\.com(?:\b|)" 1;
|
|
"~*(?:\b)smichovbike\.cz(?:\b|)" 1;
|
|
"~*(?:\b)smokewithrabbits\.com(?:\b|)" 1;
|
|
"~*(?:\b)sms2x2\.ru(?:\b|)" 1;
|
|
"~*(?:\b)smsactivator\.ru(?:\b|)" 1;
|
|
"~*(?:\b)smstraf\.ru(?:\b|)" 1;
|
|
"~*(?:\b)sneakyboy\.com(?:\b|)" 1;
|
|
"~*(?:\b)snegozaderzhatel\.ru(?:\b|)" 1;
|
|
"~*(?:\b)snip\.to(?:\b|)" 1;
|
|
"~*(?:\b)snip\.tw(?:\b|)" 1;
|
|
"~*(?:\b)snjack\.info(?:\b|)" 1;
|
|
"~*(?:\b)snjatie\-geroinovoy\-lomki\.ru(?:\b|)" 1;
|
|
"~*(?:\b)snomer1\.ru(?:\b|)" 1;
|
|
"~*(?:\b)snow\.nvr163\.com(?:\b|)" 1;
|
|
"~*(?:\b)snowplanes\.com(?:\b|)" 1;
|
|
"~*(?:\b)snsdeainavi\.info(?:\b|)" 1;
|
|
"~*(?:\b)snts\.shell\-pmr\.ru(?:\b|)" 1;
|
|
"~*(?:\b)snworks\.com(?:\b|)" 1;
|
|
"~*(?:\b)snyatie\-lomki\-v\-stacionare\.ru(?:\b|)" 1;
|
|
"~*(?:\b)soaksoak\.ru(?:\b|)" 1;
|
|
"~*(?:\b)sobecjvuwa\.com\.ru(?:\b|)" 1;
|
|
"~*(?:\b)soblaznu\.net(?:\b|)" 1;
|
|
"~*(?:\b)socas\.pluto\.ro(?:\b|)" 1;
|
|
"~*(?:\b)soc\-econom\-problems\.ru(?:\b|)" 1;
|
|
"~*(?:\b)socialbookmarksubmission\.org(?:\b|)" 1;
|
|
"~*(?:\b)social\-buttons\.com(?:\b|)" 1;
|
|
"~*(?:\b)social\-buttons\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)socialbuttons\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)social\-button\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)socialbutton\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)social\-fun\.ru(?:\b|)" 1;
|
|
"~*(?:\b)socialmadesimple\.com(?:\b|)" 1;
|
|
"~*(?:\b)socialmediasuggest\.com(?:\b|)" 1;
|
|
"~*(?:\b)socialmonkee\.com(?:\b|)" 1;
|
|
"~*(?:\b)social\-search\.me(?:\b|)" 1;
|
|
"~*(?:\b)socialseet\.ru(?:\b|)" 1;
|
|
"~*(?:\b)social\-s\-ggg\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)social\-s\-hhh\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)socialsignals24\.com(?:\b|)" 1;
|
|
"~*(?:\b)social\-s\-iii\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)socialtrade\.biz(?:\b|)" 1;
|
|
"~*(?:\b)social\-vestnik\.ru(?:\b|)" 1;
|
|
"~*(?:\b)sockshare\.net(?:\b|)" 1;
|
|
"~*(?:\b)soc\-proof\.su(?:\b|)" 1;
|
|
"~*(?:\b)soda\.media(?:\b|)" 1;
|
|
"~*(?:\b)sodexo\.com(?:\b|)" 1;
|
|
"~*(?:\b)sofit\-dmd\.ru(?:\b|)" 1;
|
|
"~*(?:\b)soft1\.ru(?:\b|)" 1;
|
|
"~*(?:\b)softlinesolutions\.me(?:\b|)" 1;
|
|
"~*(?:\b)softomix\.com(?:\b|)" 1;
|
|
"~*(?:\b)softomix\.net(?:\b|)" 1;
|
|
"~*(?:\b)softonicads\.com(?:\b|)" 1;
|
|
"~*(?:\b)soft\-program\.com(?:\b|)" 1;
|
|
"~*(?:\b)soft\-terminal\.ru(?:\b|)" 1;
|
|
"~*(?:\b)softtor\.com(?:\b|)" 1;
|
|
"~*(?:\b)softwaretrend\.net(?:\b|)" 1;
|
|
"~*(?:\b)softxaker\.ru(?:\b|)" 1;
|
|
"~*(?:\b)soheavyblog\.com(?:\b|)" 1;
|
|
"~*(?:\b)sohoindia\.net(?:\b|)" 1;
|
|
"~*(?:\b)solicita\.info(?:\b|)" 1;
|
|
"~*(?:\b)solinf\.co(?:\b|)" 1;
|
|
"~*(?:\b)solitaire\-game\.ru(?:\b|)" 1;
|
|
"~*(?:\b)solmarket\.by(?:\b|)" 1;
|
|
"~*(?:\b)solnplast\.ru(?:\b|)" 1;
|
|
"~*(?:\b)solution4u\.com(?:\b|)" 1;
|
|
"~*(?:\b)sonata\-arctica\.wz\.cz(?:\b|)" 1;
|
|
"~*(?:\b)songoo\.wz\.cz(?:\b|)" 1;
|
|
"~*(?:\b)songplanet\.ru(?:\b|)" 1;
|
|
"~*(?:\b)sonnikforme\.ru(?:\b|)" 1;
|
|
"~*(?:\b)soochi\.co(?:\b|)" 1;
|
|
"~*(?:\b)sophang8\.com(?:\b|)" 1;
|
|
"~*(?:\b)sortthemesitesby\.com(?:\b|)" 1;
|
|
"~*(?:\b)sosdepotdebilan\.com(?:\b|)" 1;
|
|
"~*(?:\b)soserfis\.com(?:\b|)" 1;
|
|
"~*(?:\b)sotkal\.lark\.ru(?:\b|)" 1;
|
|
"~*(?:\b)soundfrost\.org(?:\b|)" 1;
|
|
"~*(?:\b)souvenir\.cc(?:\b|)" 1;
|
|
"~*(?:\b)souvenirua\.com(?:\b|)" 1;
|
|
"~*(?:\b)sovetogorod\.ru(?:\b|)" 1;
|
|
"~*(?:\b)soviet\-portal\.do\.am(?:\b|)" 1;
|
|
"~*(?:\b)sovinsteel\.ru(?:\b|)" 1;
|
|
"~*(?:\b)spabali\.org(?:\b|)" 1;
|
|
"~*(?:\b)spacash\.com(?:\b|)" 1;
|
|
"~*(?:\b)space2019\.top(?:\b|)" 1;
|
|
"~*(?:\b)space4update\.pw(?:\b|)" 1;
|
|
"~*(?:\b)space4updating\.win(?:\b|)" 1;
|
|
"~*(?:\b)spaceshipad\.com(?:\b|)" 1;
|
|
"~*(?:\b)space\-worry\.ml(?:\b|)" 1;
|
|
"~*(?:\b)spammen\.de(?:\b|)" 1;
|
|
"~*(?:\b)spamnuker\.com(?:\b|)" 1;
|
|
"~*(?:\b)spasswelt\.net(?:\b|)" 1;
|
|
"~*(?:\b)spasswelt\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)spb\.afora\.ru(?:\b|)" 1;
|
|
"~*(?:\b)spbchampionat\.ru(?:\b|)" 1;
|
|
"~*(?:\b)spb\-plitka\.ru(?:\b|)" 1;
|
|
"~*(?:\b)spb\.ru(?:\b|)" 1;
|
|
"~*(?:\b)specialfinanceoffers\.com(?:\b|)" 1;
|
|
"~*(?:\b)special\-porn\.com(?:\b|)" 1;
|
|
"~*(?:\b)speechfoodie\.com(?:\b|)" 1;
|
|
"~*(?:\b)speedup\-my\.site(?:\b|)" 1;
|
|
"~*(?:\b)spidtest\.org(?:\b|)" 1;
|
|
"~*(?:\b)spidtest\.space(?:\b|)" 1;
|
|
"~*(?:\b)spin2016\.cf(?:\b|)" 1;
|
|
"~*(?:\b)spinnerco\.ca(?:\b|)" 1;
|
|
"~*(?:\b)spitfiremusic\.com(?:\b|)" 1;
|
|
"~*(?:\b)splendorsearch\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)sport7777\.net(?:\b|)" 1;
|
|
"~*(?:\b)sportbetfair\.com(?:\b|)" 1;
|
|
"~*(?:\b)sports\-supplements\.us(?:\b|)" 1;
|
|
"~*(?:\b)sport\-video\-obzor\.ru(?:\b|)" 1;
|
|
"~*(?:\b)spravka130\.ru(?:\b|)" 1;
|
|
"~*(?:\b)spravka\-medosmotr\.ru(?:\b|)" 1;
|
|
"~*(?:\b)sprttrack\.com(?:\b|)" 1;
|
|
"~*(?:\b)sps\-shop\.com(?:\b|)" 1;
|
|
"~*(?:\b)sptslmtrafms\.com(?:\b|)" 1;
|
|
"~*(?:\b)spy\-app\.info(?:\b|)" 1;
|
|
"~*(?:\b)spyfu\.com(?:\b|)" 1;
|
|
"~*(?:\b)spylog\.com(?:\b|)" 1;
|
|
"~*(?:\b)spymac\.net(?:\b|)" 1;
|
|
"~*(?:\b)spy\-sts\.com(?:\b|)" 1;
|
|
"~*(?:\b)spywarebegone\.com(?:\b|)" 1;
|
|
"~*(?:\b)spywareit\.com(?:\b|)" 1;
|
|
"~*(?:\b)spywarenuker\.com(?:\b|)" 1;
|
|
"~*(?:\b)spywarespy\.com(?:\b|)" 1;
|
|
"~*(?:\b)squidoo\.com(?:\b|)" 1;
|
|
"~*(?:\b)srdrvp\.com(?:\b|)" 1;
|
|
"~*(?:\b)srecorder\.com(?:\b|)" 1;
|
|
"~*(?:\b)srgwebmail\.nl(?:\b|)" 1;
|
|
"~*(?:\b)sribno\.net(?:\b|)" 1;
|
|
"~*(?:\b)sr\-rekneskap\.no(?:\b|)" 1;
|
|
"~*(?:\b)ssconstruction\.co(?:\b|)" 1;
|
|
"~*(?:\b)sstroy44\.ru(?:\b|)" 1;
|
|
"~*(?:\b)stackthatbucks\.com(?:\b|)" 1;
|
|
"~*(?:\b)staff\.prairiesouth\.ca(?:\b|)" 1;
|
|
"~*(?:\b)stairliftsarea\.com(?:\b|)" 1;
|
|
"~*(?:\b)stairliftstrue\.com(?:\b|)" 1;
|
|
"~*(?:\b)stair\.registrydomainservices\.com(?:\b|)" 1;
|
|
"~*(?:\b)stal\-rulon\.ru(?:\b|)" 1;
|
|
"~*(?:\b)standardchartered\-forex\.com(?:\b|)" 1;
|
|
"~*(?:\b)stanthonyscatholicchurch\.org(?:\b|)" 1;
|
|
"~*(?:\b)star61\.de(?:\b|)" 1;
|
|
"~*(?:\b)stardevine\.com(?:\b|)" 1;
|
|
"~*(?:\b)stard\.shop(?:\b|)" 1;
|
|
"~*(?:\b)stariy\-baku\.com(?:\b|)" 1;
|
|
"~*(?:\b)starpages\.net(?:\b|)" 1;
|
|
"~*(?:\b)start\.myplaycity\.com(?:\b|)" 1;
|
|
"~*(?:\b)startufa\.ru(?:\b|)" 1;
|
|
"~*(?:\b)startwp\.org(?:\b|)" 1;
|
|
"~*(?:\b)starwars\.wikia\.com(?:\b|)" 1;
|
|
"~*(?:\b)stathat\.com(?:\b|)" 1;
|
|
"~*(?:\b)staticfs\.host(?:\b|)" 1;
|
|
"~*(?:\b)statistici\.ro(?:\b|)" 1;
|
|
"~*(?:\b)statoutlook\.info(?:\b|)" 1;
|
|
"~*(?:\b)stats\-collector\.org(?:\b|)" 1;
|
|
"~*(?:\b)stats\-public\.grammarly\.io(?:\b|)" 1;
|
|
"~*(?:\b)statustroll\.com(?:\b|)" 1;
|
|
"~*(?:\b)stauga\.altervista\.org(?:\b|)" 1;
|
|
"~*(?:\b)staynplay\.net(?:\b|)" 1;
|
|
"~*(?:\b)steame\.ru(?:\b|)" 1;
|
|
"~*(?:\b)steamoff\.net(?:\b|)" 1;
|
|
"~*(?:\b)steelmaster\.lv(?:\b|)" 1;
|
|
"~*(?:\b)stefanbakosab\.se(?:\b|)" 1;
|
|
"~*(?:\b)sterva\.cc(?:\b|)" 1;
|
|
"~*(?:\b)stevemonsen\.com(?:\b|)" 1;
|
|
"~*(?:\b)sticken\.co(?:\b|)" 1;
|
|
"~*(?:\b)stickers\-market\.ru(?:\b|)" 1;
|
|
"~*(?:\b)stillmiracle\.com(?:\b|)" 1;
|
|
"~*(?:\b)stjamesschool\.info(?:\b|)" 1;
|
|
"~*(?:\b)stmassage\.ru(?:\b|)" 1;
|
|
"~*(?:\b)stockquotes\.wooeb\.com(?:\b|)" 1;
|
|
"~*(?:\b)stockspmb\.info(?:\b|)" 1;
|
|
"~*(?:\b)stoki\.ru(?:\b|)" 1;
|
|
"~*(?:\b)stop\-gepatit\.te\.ua(?:\b|)" 1;
|
|
"~*(?:\b)storehouse\.ua(?:\b|)" 1;
|
|
"~*(?:\b)store\-rx\.com(?:\b|)" 1;
|
|
"~*(?:\b)stpicks\.com(?:\b|)" 1;
|
|
"~*(?:\b)stpolice\.com(?:\b|)" 1;
|
|
"~*(?:\b)strag\-invest\.ru(?:\b|)" 1;
|
|
"~*(?:\b)strana\-krasoty\.ru(?:\b|)" 1;
|
|
"~*(?:\b)strana\-solnca\.ru(?:\b|)" 1;
|
|
"~*(?:\b)strangeduckfilms\.com(?:\b|)" 1;
|
|
"~*(?:\b)streetfire\.net(?:\b|)" 1;
|
|
"~*(?:\b)streetfooduncovered\.com(?:\b|)" 1;
|
|
"~*(?:\b)streha\-metalko\.si(?:\b|)" 1;
|
|
"~*(?:\b)stretchingabuckblog\.com(?:\b|)" 1;
|
|
"~*(?:\b)stretchmate\.net(?:\b|)" 1;
|
|
"~*(?:\b)strfls\.com(?:\b|)" 1;
|
|
"~*(?:\b)strigkaomsk\.ru(?:\b|)" 1;
|
|
"~*(?:\b)stroicol\.net(?:\b|)" 1;
|
|
"~*(?:\b)stroilka\.info(?:\b|)" 1;
|
|
"~*(?:\b)stroimajor\.ru(?:\b|)" 1;
|
|
"~*(?:\b)stroiminsk\.com(?:\b|)" 1;
|
|
"~*(?:\b)stroiminsk\.org(?:\b|)" 1;
|
|
"~*(?:\b)stromerrealty\.com(?:\b|)" 1;
|
|
"~*(?:\b)strongholdsb\.ru(?:\b|)" 1;
|
|
"~*(?:\b)strongsignal\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)stroydetali\.ru(?:\b|)" 1;
|
|
"~*(?:\b)stroyhelp\-dv\.ru(?:\b|)" 1;
|
|
"~*(?:\b)stroymonolit\.su(?:\b|)" 1;
|
|
"~*(?:\b)stroyplus\.ru(?:\b|)" 1;
|
|
"~*(?:\b)stroy\-portal22\.ru(?:\b|)" 1;
|
|
"~*(?:\b)strv\.se(?:\b|)" 1;
|
|
"~*(?:\b)students\-cheapskate\.ml(?:\b|)" 1;
|
|
"~*(?:\b)studiofaca\.com(?:\b|)" 1;
|
|
"~*(?:\b)studiofmp\.com(?:\b|)" 1;
|
|
"~*(?:\b)studiokamyk\.com\.pl(?:\b|)" 1;
|
|
"~*(?:\b)stuff\-about\-money\.com(?:\b|)" 1;
|
|
"~*(?:\b)styro\.ru(?:\b|)" 1;
|
|
"~*(?:\b)success\-seo\.com(?:\b|)" 1;
|
|
"~*(?:\b)suchenindeutschland\.com(?:\b|)" 1;
|
|
"~*(?:\b)sudexpert66\.ru(?:\b|)" 1;
|
|
"~*(?:\b)sugarkun\.com(?:\b|)" 1;
|
|
"~*(?:\b)sugarlyflex\.pw(?:\b|)" 1;
|
|
"~*(?:\b)suggest\-keywords\.com(?:\b|)" 1;
|
|
"~*(?:\b)sugvant\.ru(?:\b|)" 1;
|
|
"~*(?:\b)suhanpacktech\.com(?:\b|)" 1;
|
|
"~*(?:\b)sukarame\.net(?:\b|)" 1;
|
|
"~*(?:\b)sukirgenk\.dvrlists\.com(?:\b|)" 1;
|
|
"~*(?:\b)summerlinhomes411\.info(?:\b|)" 1;
|
|
"~*(?:\b)sumo\.com(?:\b|)" 1;
|
|
"~*(?:\b)sundrugstore\.com(?:\b|)" 1;
|
|
"~*(?:\b)superfish\.com(?:\b|)" 1;
|
|
"~*(?:\b)superiends\.org(?:\b|)" 1;
|
|
"~*(?:\b)superinterstitial\.com(?:\b|)" 1;
|
|
"~*(?:\b)superkanpo\.com(?:\b|)" 1;
|
|
"~*(?:\b)superlist\.biz(?:\b|)" 1;
|
|
"~*(?:\b)supermama\.top(?:\b|)" 1;
|
|
"~*(?:\b)supermesta\.ru(?:\b|)" 1;
|
|
"~*(?:\b)supernew\.org(?:\b|)" 1;
|
|
"~*(?:\b)superoboi\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)supers\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)superstarfloraluk\.com(?:\b|)" 1;
|
|
"~*(?:\b)superstats\.com(?:\b|)" 1;
|
|
"~*(?:\b)supervesti\.ru(?:\b|)" 1;
|
|
"~*(?:\b)support\.nopeas\.sk(?:\b|)" 1;
|
|
"~*(?:\b)suralink\.com(?:\b|)" 1;
|
|
"~*(?:\b)surcentro\.com(?:\b|)" 1;
|
|
"~*(?:\b)sureone\.pro(?:\b|)" 1;
|
|
"~*(?:\b)surfbuyermac\.com(?:\b|)" 1;
|
|
"~*(?:\b)surffoundation\.nl(?:\b|)" 1;
|
|
"~*(?:\b)surflinksmedical\.com(?:\b|)" 1;
|
|
"~*(?:\b)surgut\.zrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)surintech\.ac\.th(?:\b|)" 1;
|
|
"~*(?:\b)survival\.betteroffers\.review(?:\b|)" 1;
|
|
"~*(?:\b)susanholtphotography\.com(?:\b|)" 1;
|
|
"~*(?:\b)suture\.co(?:\b|)" 1;
|
|
"~*(?:\b)svarbit\.com(?:\b|)" 1;
|
|
"~*(?:\b)svarkagid\.com(?:\b|)" 1;
|
|
"~*(?:\b)svbur\.ru(?:\b|)" 1;
|
|
"~*(?:\b)svensk\-poesi\.com(?:\b|)" 1;
|
|
"~*(?:\b)svetlotorg\.ru(?:\b|)" 1;
|
|
"~*(?:\b)svetodiodoff\.ru(?:\b|)" 1;
|
|
"~*(?:\b)svnuppsalaorebro\.se(?:\b|)" 1;
|
|
"~*(?:\b)svolze\.com(?:\b|)" 1;
|
|
"~*(?:\b)svtrd\.com(?:\b|)" 1;
|
|
"~*(?:\b)swagbucks\.com(?:\b|)" 1;
|
|
"~*(?:\b)sweepstakes\.rewardit\.com(?:\b|)" 1;
|
|
"~*(?:\b)swimpool\.ca(?:\b|)" 1;
|
|
"~*(?:\b)swinger\-mobil\.net(?:\b|)" 1;
|
|
"~*(?:\b)swingerseiten\.com(?:\b|)" 1;
|
|
"~*(?:\b)swinginwithme\.ru(?:\b|)" 1;
|
|
"~*(?:\b)swinon\.site(?:\b|)" 1;
|
|
"~*(?:\b)swiped\.su(?:\b|)" 1;
|
|
"~*(?:\b)swsociety\.se(?:\b|)" 1;
|
|
"~*(?:\b)sygraem\.com(?:\b|)" 1;
|
|
"~*(?:\b)symbaloo\.com(?:\b|)" 1;
|
|
"~*(?:\b)symphonyintegratedhealthcare\.com(?:\b|)" 1;
|
|
"~*(?:\b)syndicate\.fun(?:\b|)" 1;
|
|
"~*(?:\b)syvertsen\-da\.no(?:\b|)" 1;
|
|
"~*(?:\b)szamponrevita\.pl(?:\b|)" 1;
|
|
"~*(?:\b)szucs\.ru(?:\b|)" 1;
|
|
"~*(?:\b)t3chtonic\.com(?:\b|)" 1;
|
|
"~*(?:\b)taaaak\.com(?:\b|)" 1;
|
|
"~*(?:\b)tabakur77\.com(?:\b|)" 1;
|
|
"~*(?:\b)tabletkinaodchudzanie\.com\.pl(?:\b|)" 1;
|
|
"~*(?:\b)taboola\.com(?:\b|)" 1;
|
|
"~*(?:\b)tacbelarus\.ru(?:\b|)" 1;
|
|
"~*(?:\b)tackletarts\.co(?:\b|)" 1;
|
|
"~*(?:\b)tagil\.zrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)taihouse\.ru(?:\b|)" 1;
|
|
"~*(?:\b)takeflyte\.com(?:\b|)" 1;
|
|
"~*(?:\b)takeprofitsystem\.com(?:\b|)" 1;
|
|
"~*(?:\b)takethatad\.com(?:\b|)" 1;
|
|
"~*(?:\b)tako3\.com(?:\b|)" 1;
|
|
"~*(?:\b)talant\-factory\.ru(?:\b|)" 1;
|
|
"~*(?:\b)tamada69\.com(?:\b|)" 1;
|
|
"~*(?:\b)tam\-gde\-more\.ru(?:\b|)" 1;
|
|
"~*(?:\b)tampabaywatch\.org(?:\b|)" 1;
|
|
"~*(?:\b)tandvardshuset\.net(?:\b|)" 1;
|
|
"~*(?:\b)tanieaukcje\.com\.pl(?:\b|)" 1;
|
|
"~*(?:\b)taqplayer\.info(?:\b|)" 1;
|
|
"~*(?:\b)taqywu51\.soup\.io(?:\b|)" 1;
|
|
"~*(?:\b)tarad\.com(?:\b|)" 1;
|
|
"~*(?:\b)taraz\.xkaz\.org(?:\b|)" 1;
|
|
"~*(?:\b)tasteidea\.com(?:\b|)" 1;
|
|
"~*(?:\b)tastyfoodideas\.com(?:\b|)" 1;
|
|
"~*(?:\b)tattomedia\.com(?:\b|)" 1;
|
|
"~*(?:\b)tattoo33\.ru(?:\b|)" 1;
|
|
"~*(?:\b)tattooha\.com(?:\b|)" 1;
|
|
"~*(?:\b)tattooreligion\.ru(?:\b|)" 1;
|
|
"~*(?:\b)taximytishi\.ru(?:\b|)" 1;
|
|
"~*(?:\b)taxi\-v\-eisk\.ru(?:\b|)" 1;
|
|
"~*(?:\b)t\-bygg\.com(?:\b|)" 1;
|
|
"~*(?:\b)td\-33\.ru(?:\b|)" 1;
|
|
"~*(?:\b)td\-l\-market\.ru(?:\b|)" 1;
|
|
"~*(?:\b)tds\-advert002\.info(?:\b|)" 1;
|
|
"~*(?:\b)tds\-advert005\.info(?:\b|)" 1;
|
|
"~*(?:\b)tdsing\.ru(?:\b|)" 1;
|
|
"~*(?:\b)teastory\.co(?:\b|)" 1;
|
|
"~*(?:\b)tech4master\.com(?:\b|)" 1;
|
|
"~*(?:\b)techart24\.com(?:\b|)" 1;
|
|
"~*(?:\b)technika\-remont\.ru(?:\b|)" 1;
|
|
"~*(?:\b)technopellet\.gr(?:\b|)" 1;
|
|
"~*(?:\b)tecspb\.ru(?:\b|)" 1;
|
|
"~*(?:\b)tedxrj\.com(?:\b|)" 1;
|
|
"~*(?:\b)tedy\.su(?:\b|)" 1;
|
|
"~*(?:\b)teenbbw\.yopoint\.in(?:\b|)" 1;
|
|
"~*(?:\b)teesdaleflyballclub\.co\.uk(?:\b|)" 1;
|
|
"~*(?:\b)teguh\.info(?:\b|)" 1;
|
|
"~*(?:\b)tehngr\.ru(?:\b|)" 1;
|
|
"~*(?:\b)telefonsexi\.com(?:\b|)" 1;
|
|
"~*(?:\b)telefonsexkostenlos\.tk(?:\b|)" 1;
|
|
"~*(?:\b)telefonsex\-ohne0900\.net(?:\b|)" 1;
|
|
"~*(?:\b)telefonsexsofort\.tk(?:\b|)" 1;
|
|
"~*(?:\b)telegraf\.by(?:\b|)" 1;
|
|
"~*(?:\b)telegramdownload10\.com(?:\b|)" 1;
|
|
"~*(?:\b)telemetryverification\.net(?:\b|)" 1;
|
|
"~*(?:\b)telesvoboda\.ru(?:\b|)" 1;
|
|
"~*(?:\b)telsis\.com(?:\b|)" 1;
|
|
"~*(?:\b)template\-kid\.com(?:\b|)" 1;
|
|
"~*(?:\b)templates\.franklinfire\.co(?:\b|)" 1;
|
|
"~*(?:\b)templates\.radiodigital\.co(?:\b|)" 1;
|
|
"~*(?:\b)tengohydar\.tk(?:\b|)" 1;
|
|
"~*(?:\b)terraclicks\.com(?:\b|)" 1;
|
|
"~*(?:\b)terrafootwear\.us(?:\b|)" 1;
|
|
"~*(?:\b)teslathemes\.com(?:\b|)" 1;
|
|
"~*(?:\b)testingads\.pro(?:\b|)" 1;
|
|
"~*(?:\b)tetracsaudi\.com(?:\b|)" 1;
|
|
"~*(?:\b)texbaza\.by(?:\b|)" 1;
|
|
"~*(?:\b)textads\.men(?:\b|)" 1;
|
|
"~*(?:\b)tfxiq\.com(?:\b|)" 1;
|
|
"~*(?:\b)tgtclick\.com(?:\b|)" 1;
|
|
"~*(?:\b)thaisamkok\.com(?:\b|)" 1;
|
|
"~*(?:\b)thaismartloan\.com(?:\b|)" 1;
|
|
"~*(?:\b)theallgirlarcade\.com(?:\b|)" 1;
|
|
"~*(?:\b)theautoprofit\.ml(?:\b|)" 1;
|
|
"~*(?:\b)thebestphotos\.eu(?:\b|)" 1;
|
|
"~*(?:\b)thebestweightlosspills\.ovh(?:\b|)" 1;
|
|
"~*(?:\b)thebitcoincode\.com(?:\b|)" 1;
|
|
"~*(?:\b)thebluenoodle\.com(?:\b|)" 1;
|
|
"~*(?:\b)thebluffs\.com(?:\b|)" 1;
|
|
"~*(?:\b)thecoolimages\.net(?:\b|)" 1;
|
|
"~*(?:\b)thecoral\.com\.br(?:\b|)" 1;
|
|
"~*(?:\b)thecounter\.com(?:\b|)" 1;
|
|
"~*(?:\b)thedownloadfreeonlinegames\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)thedownloadfromwarez\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)theendivechronicles\.com(?:\b|)" 1;
|
|
"~*(?:\b)thefarmergame\.com(?:\b|)" 1;
|
|
"~*(?:\b)thefds\.net(?:\b|)" 1;
|
|
"~*(?:\b)thefotosgratis\.eu(?:\b|)" 1;
|
|
"~*(?:\b)thegalerie\.eu(?:\b|)" 1;
|
|
"~*(?:\b)thegameriders\.com(?:\b|)" 1;
|
|
"~*(?:\b)thegamerznetwork\.com(?:\b|)" 1;
|
|
"~*(?:\b)thegioixekhach\.com(?:\b|)" 1;
|
|
"~*(?:\b)thegolfclub\.info(?:\b|)" 1;
|
|
"~*(?:\b)theguardlan\.com(?:\b|)" 1;
|
|
"~*(?:\b)theheroes\.ru(?:\b|)" 1;
|
|
"~*(?:\b)thejournal\.ru(?:\b|)" 1;
|
|
"~*(?:\b)thelottosecrets\.com(?:\b|)" 1;
|
|
"~*(?:\b)themeforest\.net(?:\b|)" 1;
|
|
"~*(?:\b)themestotal\.com(?:\b|)" 1;
|
|
"~*(?:\b)thenetinfo\.com(?:\b|)" 1;
|
|
"~*(?:\b)thenews\-today\.info(?:\b|)" 1;
|
|
"~*(?:\b)thepantonpractice\.co\.uk(?:\b|)" 1;
|
|
"~*(?:\b)theplacetoupdating\.pw(?:\b|)" 1;
|
|
"~*(?:\b)thepokertimer\.com(?:\b|)" 1;
|
|
"~*(?:\b)theporndude\.com(?:\b|)" 1;
|
|
"~*(?:\b)theprofitsmaker\.net(?:\b|)" 1;
|
|
"~*(?:\b)thesmartsearch\.net(?:\b|)" 1;
|
|
"~*(?:\b)thetardistimes\.ovh(?:\b|)" 1;
|
|
"~*(?:\b)thetattoohut\.com(?:\b|)" 1;
|
|
"~*(?:\b)thetoiletpaper\.com(?:\b|)" 1;
|
|
"~*(?:\b)the\-torrent\-tracker\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)the\-trader\.net(?:\b|)" 1;
|
|
"~*(?:\b)the\-usa\-games\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)thewebsitetemplate\.info(?:\b|)" 1;
|
|
"~*(?:\b)thewomenlife\.com(?:\b|)" 1;
|
|
"~*(?:\b)thexart\.club(?:\b|)" 1;
|
|
"~*(?:\b)thfox\.com(?:\b|)" 1;
|
|
"~*(?:\b)thiegs\.reco\.ws(?:\b|)" 1;
|
|
"~*(?:\b)thin\.me\.pn(?:\b|)" 1;
|
|
"~*(?:\b)threecolumnblogger\.com(?:\b|)" 1;
|
|
"~*(?:\b)thruport\.com(?:\b|)" 1;
|
|
"~*(?:\b)tiandeural\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ticketsys\.inetwd\.com(?:\b|)" 1;
|
|
"~*(?:\b)tiens2010\.ru(?:\b|)" 1;
|
|
"~*(?:\b)tilido\.com(?:\b|)" 1;
|
|
"~*(?:\b)timdreby\.com(?:\b|)" 1;
|
|
"~*(?:\b)timeallnews\.ru(?:\b|)" 1;
|
|
"~*(?:\b)timecrimea\.ru(?:\b|)" 1;
|
|
"~*(?:\b)time\-japan\.ru(?:\b|)" 1;
|
|
"~*(?:\b)timer4web\.com(?:\b|)" 1;
|
|
"~*(?:\b)timetorelax\.biz(?:\b|)" 1;
|
|
"~*(?:\b)timhost\.ru(?:\b|)" 1;
|
|
"~*(?:\b)titan\-ads\.life(?:\b|)" 1;
|
|
"~*(?:\b)titan\-cloud\.life(?:\b|)" 1;
|
|
"~*(?:\b)titangel\-vietnam\.com(?:\b|)" 1;
|
|
"~*(?:\b)titelhelden\.eu(?:\b|)" 1;
|
|
"~*(?:\b)titslove\.yopoint\.in(?:\b|)" 1;
|
|
"~*(?:\b)tizanidine4mg\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidine4mgprice\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidine4mgstreetprice\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidine4mgstreetvalue\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidine4mgtablets\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidine4mguses\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidine6mg\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidineandcipro\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidineandgabapentin\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidineandhydrocodone\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinecapsules\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinecost\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinedosage\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinedosageforsleep\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinedruginteractions\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinedrugtest\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidineduringpregnancy\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinefibromyalgia\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidineformigraines\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidineforopiatewithdrawal\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinehcl2mg\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinehcl2mgsideeffects\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinehcl2mgtablet\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinehcl4mgisitanarcotic\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinehcl4mgtab\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinehcl4mgtabinfo\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinehcl4mgtablet\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinehclsideeffects\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinehydrochloride2mg\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinehydrochloride4mgstreetvalue\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidineinfo\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidineingredients\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidineinteractions\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinemusclerelaxant\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinenarcotic\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidineonline\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidineoral\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidineorflexeril\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinepain\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinepills\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinerecreationaluse\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinerestlesslegsyndrome\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidineshowupondrugtest\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinesideeffects\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinesideeffectsweightloss\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinesleepaid\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinestreetprice\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinestreetvalue\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidineusedfor\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinevscyclobenzaprine\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinevssoma\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinevsvalium\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinewithdrawal\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinewithdrawalsymptoms\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tizanidinezanaflex\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)tjkckpytpnje\.com(?:\b|)" 1;
|
|
"~*(?:\b)tkanorganizma\.ru(?:\b|)" 1;
|
|
"~*(?:\b)tk\-assortiment\.ru(?:\b|)" 1;
|
|
"~*(?:\b)tksn\.ru(?:\b|)" 1;
|
|
"~*(?:\b)tmearegion26\.com(?:\b|)" 1;
|
|
"~*(?:\b)tmm\-kurs\.ru(?:\b|)" 1;
|
|
"~*(?:\b)tmtrck\.com(?:\b|)" 1;
|
|
"~*(?:\b)tn811\.us(?:\b|)" 1;
|
|
"~*(?:\b)tnaionline\.org(?:\b|)" 1;
|
|
"~*(?:\b)tnctrx\.com(?:\b|)" 1;
|
|
"~*(?:\b)tobeyouday\.win(?:\b|)" 1;
|
|
"~*(?:\b)todohr\.com(?:\b|)" 1;
|
|
"~*(?:\b)token\-lab\.org(?:\b|)" 1;
|
|
"~*(?:\b)toloka\.hurtom\.com(?:\b|)" 1;
|
|
"~*(?:\b)tomatis\.gospartner\.com(?:\b|)" 1;
|
|
"~*(?:\b)tomck\.com(?:\b|)" 1;
|
|
"~*(?:\b)tonerbox\.kz(?:\b|)" 1;
|
|
"~*(?:\b)tongkatmadura\.info(?:\b|)" 1;
|
|
"~*(?:\b)toolsky\.com(?:\b|)" 1;
|
|
"~*(?:\b)toondinsey\.com(?:\b|)" 1;
|
|
"~*(?:\b)toon\-families\.com(?:\b|)" 1;
|
|
"~*(?:\b)toonfamilies\.net(?:\b|)" 1;
|
|
"~*(?:\b)tooplay\.com(?:\b|)" 1;
|
|
"~*(?:\b)tootoo\.to(?:\b|)" 1;
|
|
"~*(?:\b)top10\-online\-games\.com(?:\b|)" 1;
|
|
"~*(?:\b)top10registrycleaners\.com(?:\b|)" 1;
|
|
"~*(?:\b)top10\-way\.com(?:\b|)" 1;
|
|
"~*(?:\b)top1\-seo\-service\.com(?:\b|)" 1;
|
|
"~*(?:\b)top250movies\.ru(?:\b|)" 1;
|
|
"~*(?:\b)topads\.men(?:\b|)" 1;
|
|
"~*(?:\b)topappspro\.com(?:\b|)" 1;
|
|
"~*(?:\b)topbestgames\.com(?:\b|)" 1;
|
|
"~*(?:\b)topcar\-krasnodar\.ru(?:\b|)" 1;
|
|
"~*(?:\b)topclickguru\.com(?:\b|)" 1;
|
|
"~*(?:\b)top\-deal\.com\.pl(?:\b|)" 1;
|
|
"~*(?:\b)topdownloads\.ru(?:\b|)" 1;
|
|
"~*(?:\b)topkarkas\.com(?:\b|)" 1;
|
|
"~*(?:\b)top\-karkas\.ru(?:\b|)" 1;
|
|
"~*(?:\b)top\-l2\.com(?:\b|)" 1;
|
|
"~*(?:\b)topmira\.com(?:\b|)" 1;
|
|
"~*(?:\b)topquality\.cf(?:\b|)" 1;
|
|
"~*(?:\b)toproadrunner5\.info(?:\b|)" 1;
|
|
"~*(?:\b)topshef\.ru(?:\b|)" 1;
|
|
"~*(?:\b)topsiteminecraft\.com(?:\b|)" 1;
|
|
"~*(?:\b)top\-study\.work(?:\b|)" 1;
|
|
"~*(?:\b)topsy\.com(?:\b|)" 1;
|
|
"~*(?:\b)topvidos\.ru(?:\b|)" 1;
|
|
"~*(?:\b)torontoplumbinggroup\.com(?:\b|)" 1;
|
|
"~*(?:\b)torrentdownloadhub\.com(?:\b|)" 1;
|
|
"~*(?:\b)torrentgamer\.net(?:\b|)" 1;
|
|
"~*(?:\b)torrent\-newgames\.com(?:\b|)" 1;
|
|
"~*(?:\b)torrents\.cd(?:\b|)" 1;
|
|
"~*(?:\b)torrents\-tracker\.com(?:\b|)" 1;
|
|
"~*(?:\b)torrent\-to\-magnet\.com(?:\b|)" 1;
|
|
"~*(?:\b)torrnada\.ru(?:\b|)" 1;
|
|
"~*(?:\b)torture\.ml(?:\b|)" 1;
|
|
"~*(?:\b)totu\.info(?:\b|)" 1;
|
|
"~*(?:\b)totu\.us(?:\b|)" 1;
|
|
"~*(?:\b)touchmods\.fr(?:\b|)" 1;
|
|
"~*(?:\b)tourcroatia\.co\.uk(?:\b|)" 1;
|
|
"~*(?:\b)tourismvictoria\.com(?:\b|)" 1;
|
|
"~*(?:\b)tour\-line\.net(?:\b|)" 1;
|
|
"~*(?:\b)toursmaps\.com(?:\b|)" 1;
|
|
"~*(?:\b)tovaroboom\.vast\.ru(?:\b|)" 1;
|
|
"~*(?:\b)toxicwap\.com(?:\b|)" 1;
|
|
"~*(?:\b)toyota\.7zap\.com(?:\b|)" 1;
|
|
"~*(?:\b)toys\.erolove\.in(?:\b|)" 1;
|
|
"~*(?:\b)toy\-shop\.top(?:\b|)" 1;
|
|
"~*(?:\b)tozup\.com(?:\b|)" 1;
|
|
"~*(?:\b)tpu\.ru(?:\b|)" 1;
|
|
"~*(?:\b)tracfone\.com(?:\b|)" 1;
|
|
"~*(?:\b)track112\.site(?:\b|)" 1;
|
|
"~*(?:\b)track2\.shop(?:\b|)" 1;
|
|
"~*(?:\b)tracklead\.net(?:\b|)" 1;
|
|
"~*(?:\b)trackmedia101\.com(?:\b|)" 1;
|
|
"~*(?:\b)track\-rankings\.online(?:\b|)" 1;
|
|
"~*(?:\b)tracksurf\.daooda\.com(?:\b|)" 1;
|
|
"~*(?:\b)tracksz\.co(?:\b|)" 1;
|
|
"~*(?:\b)trackzapper\.com(?:\b|)" 1;
|
|
"~*(?:\b)tracxn\.com(?:\b|)" 1;
|
|
"~*(?:\b)tradedeals\.biz(?:\b|)" 1;
|
|
"~*(?:\b)traderzplanet\.in(?:\b|)" 1;
|
|
"~*(?:\b)tradgardspartner\.se(?:\b|)" 1;
|
|
"~*(?:\b)trafaret74\.ru(?:\b|)" 1;
|
|
"~*(?:\b)traffic100\.com(?:\b|)" 1;
|
|
"~*(?:\b)traffic2cash\.org(?:\b|)" 1;
|
|
"~*(?:\b)traffic2money\.com(?:\b|)" 1;
|
|
"~*(?:\b)trafficfactory\.biz(?:\b|)" 1;
|
|
"~*(?:\b)trafficgenius\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)trafficjunky\.com(?:\b|)" 1;
|
|
"~*(?:\b)trafficjunky\.net(?:\b|)" 1;
|
|
"~*(?:\b)trafficmania\.com(?:\b|)" 1;
|
|
"~*(?:\b)trafficmonetize\.org(?:\b|)" 1;
|
|
"~*(?:\b)trafficmp\.com(?:\b|)" 1;
|
|
"~*(?:\b)trafficnetzwerk\.de(?:\b|)" 1;
|
|
"~*(?:\b)trafficreceiver\.club(?:\b|)" 1;
|
|
"~*(?:\b)trafficstars\.com(?:\b|)" 1;
|
|
"~*(?:\b)traffictrade\.life(?:\b|)" 1;
|
|
"~*(?:\b)traffique\.net(?:\b|)" 1;
|
|
"~*(?:\b)traffixer\.com(?:\b|)" 1;
|
|
"~*(?:\b)traffmonster\.info(?:\b|)" 1;
|
|
"~*(?:\b)traffpartners\.com(?:\b|)" 1;
|
|
"~*(?:\b)trahic\.ru(?:\b|)" 1;
|
|
"~*(?:\b)trahvid\.com(?:\b|)" 1;
|
|
"~*(?:\b)trailer\.cinemaflix\.website(?:\b|)" 1;
|
|
"~*(?:\b)trainoffend\.ml(?:\b|)" 1;
|
|
"~*(?:\b)tramadolandtizanidine\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)traxdom\.ru(?:\b|)" 1;
|
|
"~*(?:\b)treasuretrack\-a\.akamaihd\.net(?:\b|)" 1;
|
|
"~*(?:\b)trichizobswiv\.agddns\.net(?:\b|)" 1;
|
|
"~*(?:\b)trion\.od\.ua(?:\b|)" 1;
|
|
"~*(?:\b)tripper\.de(?:\b|)" 1;
|
|
"~*(?:\b)tri\-slona\.org(?:\b|)" 1;
|
|
"~*(?:\b)triumf\-realty\.ru(?:\b|)" 1;
|
|
"~*(?:\b)trk\-4\.net(?:\b|)" 1;
|
|
"~*(?:\b)trkdf\.com(?:\b|)" 1;
|
|
"~*(?:\b)trkur\.com(?:\b|)" 1;
|
|
"~*(?:\b)trubywriting\.com(?:\b|)" 1;
|
|
"~*(?:\b)truck\-addzilla\.life(?:\b|)" 1;
|
|
"~*(?:\b)truck\-land\.life(?:\b|)" 1;
|
|
"~*(?:\b)truck\-rece\.life(?:\b|)" 1;
|
|
"~*(?:\b)trucri\.me(?:\b|)" 1;
|
|
"~*(?:\b)trudogolik\.net(?:\b|)" 1;
|
|
"~*(?:\b)truebeauty\.cc(?:\b|)" 1;
|
|
"~*(?:\b)truemfilelj\.gq(?:\b|)" 1;
|
|
"~*(?:\b)trumpetedextremes\.com(?:\b|)" 1;
|
|
"~*(?:\b)trustaffs\.com(?:\b|)" 1;
|
|
"~*(?:\b)trustedhealthtips\.com(?:\b|)" 1;
|
|
"~*(?:\b)trustedmaccleaner\.com(?:\b|)" 1;
|
|
"~*(?:\b)trustl\.life(?:\b|)" 1;
|
|
"~*(?:\b)try\-rx\.com(?:\b|)" 1;
|
|
"~*(?:\b)tsan\.net(?:\b|)" 1;
|
|
"~*(?:\b)tsstcorpcddvdwshbbdriverfb\.aircus\.com(?:\b|)" 1;
|
|
"~*(?:\b)tsyndicate\.com(?:\b|)" 1;
|
|
"~*(?:\b)tt\-ipd\.info(?:\b|)" 1;
|
|
"~*(?:\b)ttrraacckkrr\.com(?:\b|)" 1;
|
|
"~*(?:\b)ttsq\.fr(?:\b|)" 1;
|
|
"~*(?:\b)tube8\.com(?:\b|)" 1;
|
|
"~*(?:\b)tubeline\.biz(?:\b|)" 1;
|
|
"~*(?:\b)tubeoffline\.com(?:\b|)" 1;
|
|
"~*(?:\b)tuberkulezanet\.ru(?:\b|)" 1;
|
|
"~*(?:\b)tuberkuleznik\.ru(?:\b|)" 1;
|
|
"~*(?:\b)tubo360\.com(?:\b|)" 1;
|
|
"~*(?:\b)tuckermktg\.com(?:\b|)" 1;
|
|
"~*(?:\b)tuckpointingmasonrysystems\.com(?:\b|)" 1;
|
|
"~*(?:\b)tula\.howotorg\.ru(?:\b|)" 1;
|
|
"~*(?:\b)tula\.mdverey\.ru(?:\b|)" 1;
|
|
"~*(?:\b)tupper\-posuda\.ru(?:\b|)" 1;
|
|
"~*(?:\b)tupper\-shop\.ru(?:\b|)" 1;
|
|
"~*(?:\b)turbabitload\.weebly\.com(?:\b|)" 1;
|
|
"~*(?:\b)turbodsp\.com(?:\b|)" 1;
|
|
"~*(?:\b)turbo\-suslik\.org(?:\b|)" 1;
|
|
"~*(?:\b)turist\-strani\.ru(?:\b|)" 1;
|
|
"~*(?:\b)turizm\.bz(?:\b|)" 1;
|
|
"~*(?:\b)turizmus\.us(?:\b|)" 1;
|
|
"~*(?:\b)turkeyreport\.tk(?:\b|)" 1;
|
|
"~*(?:\b)turn\-up\-life\.life(?:\b|)" 1;
|
|
"~*(?:\b)turvgori\.ru(?:\b|)" 1;
|
|
"~*(?:\b)tvand\.ru(?:\b|)" 1;
|
|
"~*(?:\b)tversvet\.ru(?:\b|)" 1;
|
|
"~*(?:\b)tvnewsclips\.info(?:\b|)" 1;
|
|
"~*(?:\b)tvorozhnaja\-zapekanka\-recept\.ru(?:\b|)" 1;
|
|
"~*(?:\b)tvoystartup\.ru(?:\b|)" 1;
|
|
"~*(?:\b)tv\-spoty\.info(?:\b|)" 1;
|
|
"~*(?:\b)tvteleport\.ru(?:\b|)" 1;
|
|
"~*(?:\b)twelvevisionspartyofcolorado\.com(?:\b|)" 1;
|
|
"~*(?:\b)twiclub\.in(?:\b|)" 1;
|
|
"~*(?:\b)twincitiescarservice\.com(?:\b|)" 1;
|
|
"~*(?:\b)twinderbella\.com(?:\b|)" 1;
|
|
"~*(?:\b)twitlinks\.com(?:\b|)" 1;
|
|
"~*(?:\b)twittrading\.com(?:\b|)" 1;
|
|
"~*(?:\b)twittruth\.com(?:\b|)" 1;
|
|
"~*(?:\b)twodollarshows\.com(?:\b|)" 1;
|
|
"~*(?:\b)twojebook\.pl(?:\b|)" 1;
|
|
"~*(?:\b)twu\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)tx41tclega\.ru(?:\b|)" 1;
|
|
"~*(?:\b)txxx\.com(?:\b|)" 1;
|
|
"~*(?:\b)typer\.one(?:\b|)" 1;
|
|
"~*(?:\b)typimga\.pw(?:\b|)" 1;
|
|
"~*(?:\b)tytoona\.com(?:\b|)" 1;
|
|
"~*(?:\b)tyumen\.xrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)tzritel\.tk(?:\b|)" 1;
|
|
"~*(?:\b)u17795\.netangels\.ru(?:\b|)" 1;
|
|
"~*(?:\b)u555u\.info(?:\b|)" 1;
|
|
"~*(?:\b)uac\.net\.au(?:\b|)" 1;
|
|
"~*(?:\b)ua\-company\.ru(?:\b|)" 1;
|
|
"~*(?:\b)uamtrk\.com(?:\b|)" 1;
|
|
"~*(?:\b)uasb\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ua\.tc(?:\b|)" 1;
|
|
"~*(?:\b)ublaze\.ru(?:\b|)" 1;
|
|
"~*(?:\b)u\-cheats\.ru(?:\b|)" 1;
|
|
"~*(?:\b)uchebavchehii\.ru(?:\b|)" 1;
|
|
"~*(?:\b)uchetunet\.su(?:\b|)" 1;
|
|
"~*(?:\b)uchil\.net(?:\b|)" 1;
|
|
"~*(?:\b)ucoz\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ucsol\.ru(?:\b|)" 1;
|
|
"~*(?:\b)udayavani\.com(?:\b|)" 1;
|
|
"~*(?:\b)udsgame\.online(?:\b|)" 1;
|
|
"~*(?:\b)ufa\.xrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)uggbootsoutletsale\.us(?:\b|)" 1;
|
|
"~*(?:\b)uggsale\.online(?:\b|)" 1;
|
|
"~*(?:\b)ugguk\.online(?:\b|)" 1;
|
|
"~*(?:\b)uginekologa\.com(?:\b|)" 1;
|
|
"~*(?:\b)ugogo\.info(?:\b|)" 1;
|
|
"~*(?:\b)uhdtv\.website(?:\b|)" 1;
|
|
"~*(?:\b)uhodzalijami\.ru(?:\b|)" 1;
|
|
"~*(?:\b)uhod\-za\-sobakoj\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ukkelberg\.no(?:\b|)" 1;
|
|
"~*(?:\b)ukrobstep\.com(?:\b|)" 1;
|
|
"~*(?:\b)ukrup\.com(?:\b|)" 1;
|
|
"~*(?:\b)uk\-zheu20\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ultimateclassicrock\.com(?:\b|)" 1;
|
|
"~*(?:\b)ultimatesetnewfreeallsoftupgradesystems\.pw(?:\b|)" 1;
|
|
"~*(?:\b)ultramart\.biz(?:\b|)" 1;
|
|
"~*(?:\b)umaseh\.com(?:\b|)" 1;
|
|
"~*(?:\b)umekana\.ru(?:\b|)" 1;
|
|
"~*(?:\b)umg\-stroy\.ru(?:\b|)" 1;
|
|
"~*(?:\b)umityangin\.net(?:\b|)" 1;
|
|
"~*(?:\b)umnovocaminho\.com(?:\b|)" 1;
|
|
"~*(?:\b)um\-razum\.ru(?:\b|)" 1;
|
|
"~*(?:\b)unacittaconte\.org(?:\b|)" 1;
|
|
"~*(?:\b)unblocksit\.es(?:\b|)" 1;
|
|
"~*(?:\b)undergroundcityphoto\.com(?:\b|)" 1;
|
|
"~*(?:\b)underthesite\.com(?:\b|)" 1;
|
|
"~*(?:\b)unece\.org(?:\b|)" 1;
|
|
"~*(?:\b)uni\.me(?:\b|)" 1;
|
|
"~*(?:\b)unimodemhalfduplefw\.pen\.io(?:\b|)" 1;
|
|
"~*(?:\b)unionmarkt\.de(?:\b|)" 1;
|
|
"~*(?:\b)unisexjewelry\.org(?:\b|)" 1;
|
|
"~*(?:\b)unitexindia\.com(?:\b|)" 1;
|
|
"~*(?:\b)unitygame3d\.com(?:\b|)" 1;
|
|
"~*(?:\b)univerfiles\.com(?:\b|)" 1;
|
|
"~*(?:\b)universals\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)unlimitdocs\.net(?:\b|)" 1;
|
|
"~*(?:\b)unmaroll\.ya\.ru(?:\b|)" 1;
|
|
"~*(?:\b)unpredictable\.ga(?:\b|)" 1;
|
|
"~*(?:\b)unrealcommander\.biz(?:\b|)" 1;
|
|
"~*(?:\b)unrealcommander\.com(?:\b|)" 1;
|
|
"~*(?:\b)unrealcommander\.org(?:\b|)" 1;
|
|
"~*(?:\b)uogonline\.com(?:\b|)" 1;
|
|
"~*(?:\b)upproar\.com(?:\b|)" 1;
|
|
"~*(?:\b)uprour\.com(?:\b|)" 1;
|
|
"~*(?:\b)upstore\.me(?:\b|)" 1;
|
|
"~*(?:\b)uptime\-alpha\.net(?:\b|)" 1;
|
|
"~*(?:\b)uptime\-as\.net(?:\b|)" 1;
|
|
"~*(?:\b)uptimebot\.net(?:\b|)" 1;
|
|
"~*(?:\b)uptimechecker\.com(?:\b|)" 1;
|
|
"~*(?:\b)uptime\.com(?:\b|)" 1;
|
|
"~*(?:\b)uptime\-delta\.net(?:\b|)" 1;
|
|
"~*(?:\b)uptime\-gamma\.net(?:\b|)" 1;
|
|
"~*(?:\b)upupa\.net(?:\b|)" 1;
|
|
"~*(?:\b)ural\-buldozer\.ru(?:\b|)" 1;
|
|
"~*(?:\b)urccvfmc\.bloger\.index\.hr(?:\b|)" 1;
|
|
"~*(?:\b)urdoot\.win(?:\b|)" 1;
|
|
"~*(?:\b)urengoy\.pro(?:\b|)" 1;
|
|
"~*(?:\b)url2image\.com(?:\b|)" 1;
|
|
"~*(?:\b)urlcut\.ru(?:\b|)" 1;
|
|
"~*(?:\b)urldelivery\.com(?:\b|)" 1;
|
|
"~*(?:\b)url\-img\.link(?:\b|)" 1;
|
|
"~*(?:\b)urll\.eu(?:\b|)" 1;
|
|
"~*(?:\b)urlopener\.blogspot\.com\.au(?:\b|)" 1;
|
|
"~*(?:\b)urlopener\.com(?:\b|)" 1;
|
|
"~*(?:\b)uroffer\.link(?:\b|)" 1;
|
|
"~*(?:\b)uroki\.net(?:\b|)" 1;
|
|
"~*(?:\b)urzedowski\.eu(?:\b|)" 1;
|
|
"~*(?:\b)usacasino\.com(?:\b|)" 1;
|
|
"~*(?:\b)usadacha\.net(?:\b|)" 1;
|
|
"~*(?:\b)us\-america\.ru(?:\b|)" 1;
|
|
"~*(?:\b)usbggettwku\.ga(?:\b|)" 1;
|
|
"~*(?:\b)usdx\.us(?:\b|)" 1;
|
|
"~*(?:\b)userequip\.com(?:\b|)" 1;
|
|
"~*(?:\b)usiad\.net(?:\b|)" 1;
|
|
"~*(?:\b)ussearche\.cf(?:\b|)" 1;
|
|
"~*(?:\b)usswrite\.com(?:\b|)" 1;
|
|
"~*(?:\b)ustion\.ru(?:\b|)" 1;
|
|
"~*(?:\b)utiblog\.fr(?:\b|)" 1;
|
|
"~*(?:\b)utrolive\.ru(?:\b|)" 1;
|
|
"~*(?:\b)uvozdeckych\.info(?:\b|)" 1;
|
|
"~*(?:\b)uytmaster\.ru(?:\b|)" 1;
|
|
"~*(?:\b)uzungil\.com(?:\b|)" 1;
|
|
"~*(?:\b)v24s\.net(?:\b|)" 1;
|
|
"~*(?:\b)v720hd\.ru(?:\b|)" 1;
|
|
"~*(?:\b)vabasa\.inwtrade\.com(?:\b|)" 1;
|
|
"~*(?:\b)vacances\-voyages\.info(?:\b|)" 1;
|
|
"~*(?:\b)vacuumscleaner\.com(?:\b|)" 1;
|
|
"~*(?:\b)vadimkravtcov\.ru(?:\b|)" 1;
|
|
"~*(?:\b)validccseller\.com(?:\b|)" 1;
|
|
"~*(?:\b)validdomain\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)valkiria\-tk\.ru(?:\b|)" 1;
|
|
"~*(?:\b)valmetrundan\.se(?:\b|)" 1;
|
|
"~*(?:\b)valoresito\.com(?:\b|)" 1;
|
|
"~*(?:\b)valsalud\.com(?:\b|)" 1;
|
|
"~*(?:\b)valuado\.com(?:\b|)" 1;
|
|
"~*(?:\b)valueclick\.com(?:\b|)" 1;
|
|
"~*(?:\b)vancleefreplica\.pw(?:\b|)" 1;
|
|
"~*(?:\b)vandrie\-ict\.nl(?:\b|)" 1;
|
|
"~*(?:\b)vapeface\.club(?:\b|)" 1;
|
|
"~*(?:\b)vapomnoncri\.tk(?:\b|)" 1;
|
|
"~*(?:\b)vapsy\.com(?:\b|)" 1;
|
|
"~*(?:\b)varbergsvind\.se(?:\b|)" 1;
|
|
"~*(?:\b)varikoz24\.com(?:\b|)" 1;
|
|
"~*(?:\b)varikozdok\.ru(?:\b|)" 1;
|
|
"~*(?:\b)vashsvet\.com(?:\b|)" 1;
|
|
"~*(?:\b)vasileostrovsky\-rayon\.ru(?:\b|)" 1;
|
|
"~*(?:\b)vavilone\.com(?:\b|)" 1;
|
|
"~*(?:\b)vbabule\.net(?:\b|)" 1;
|
|
"~*(?:\b)vchulkax\.com(?:\b|)" 1;
|
|
"~*(?:\b)vclicks\.net(?:\b|)" 1;
|
|
"~*(?:\b)v\-doc\.co(?:\b|)" 1;
|
|
"~*(?:\b)vduplo\.ru(?:\b|)" 1;
|
|
"~*(?:\b)vedomstvo\.net(?:\b|)" 1;
|
|
"~*(?:\b)veerotech\.com(?:\b|)" 1;
|
|
"~*(?:\b)vegan\-foods\.us(?:\b|)" 1;
|
|
"~*(?:\b)vegascosmetics\.ru(?:\b|)" 1;
|
|
"~*(?:\b)vektorpress\.ru(?:\b|)" 1;
|
|
"~*(?:\b)vekzdorov\.ru(?:\b|)" 1;
|
|
"~*(?:\b)veles\.shop(?:\b|)" 1;
|
|
"~*(?:\b)vellings\.info(?:\b|)" 1;
|
|
"~*(?:\b)velobikestock\.com(?:\b|)" 1;
|
|
"~*(?:\b)venerologiya\.com(?:\b|)" 1;
|
|
"~*(?:\b)venta\-prom\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ventelnos\.com(?:\b|)" 1;
|
|
"~*(?:\b)veopornogratis\.xxx(?:\b|)" 1;
|
|
"~*(?:\b)vepad\.com(?:\b|)" 1;
|
|
"~*(?:\b)vereo\.eu(?:\b|)" 1;
|
|
"~*(?:\b)versaut\.xxx\-cam\.webcam(?:\b|)" 1;
|
|
"~*(?:\b)vertaform\.com(?:\b|)" 1;
|
|
"~*(?:\b)verymes\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)veselokloun\.ru(?:\b|)" 1;
|
|
"~*(?:\b)vesnatehno\.com(?:\b|)" 1;
|
|
"~*(?:\b)vesnatehno\.ru(?:\b|)" 1;
|
|
"~*(?:\b)vezuviy\.su(?:\b|)" 1;
|
|
"~*(?:\b)vgoloveboli\.net(?:\b|)" 1;
|
|
"~*(?:\b)via\-energy\-acquistare\.com(?:\b|)" 1;
|
|
"~*(?:\b)via\-energy\-cumpara\.com(?:\b|)" 1;
|
|
"~*(?:\b)via\-energy\-order\.com(?:\b|)" 1;
|
|
"~*(?:\b)viagengrarx\.com(?:\b|)" 1;
|
|
"~*(?:\b)viagraneggrx\.com(?:\b|)" 1;
|
|
"~*(?:\b)viagra\.pp\.ua(?:\b|)" 1;
|
|
"~*(?:\b)viagra\-soft\.ru(?:\b|)" 1;
|
|
"~*(?:\b)via\-gra\.webstarts\.com(?:\b|)" 1;
|
|
"~*(?:\b)viagroid\.ru(?:\b|)" 1;
|
|
"~*(?:\b)viandpet\.com(?:\b|)" 1;
|
|
"~*(?:\b)viberdownload10\.com(?:\b|)" 1;
|
|
"~*(?:\b)viddyoze\.com(?:\b|)" 1;
|
|
"~*(?:\b)video\-camer\.com(?:\b|)" 1;
|
|
"~*(?:\b)videochat\.bz(?:\b|)" 1;
|
|
"~*(?:\b)videochat\.cafe(?:\b|)" 1;
|
|
"~*(?:\b)video\-chat\.cn(?:\b|)" 1;
|
|
"~*(?:\b)video\-chat\.in(?:\b|)" 1;
|
|
"~*(?:\b)videochat\.life(?:\b|)" 1;
|
|
"~*(?:\b)video\-chat\.love(?:\b|)" 1;
|
|
"~*(?:\b)videochat\.mx(?:\b|)" 1;
|
|
"~*(?:\b)videochat\.ph(?:\b|)" 1;
|
|
"~*(?:\b)videochat\.tv\.br(?:\b|)" 1;
|
|
"~*(?:\b)videochat\.world(?:\b|)" 1;
|
|
"~*(?:\b)videochaty\.ru(?:\b|)" 1;
|
|
"~*(?:\b)videogamesecrets\.com(?:\b|)" 1;
|
|
"~*(?:\b)video\-hollywood\.ru(?:\b|)" 1;
|
|
"~*(?:\b)videojam\.tv(?:\b|)" 1;
|
|
"~*(?:\b)videokrik\.net(?:\b|)" 1;
|
|
"~*(?:\b)videooko\.weebly\.com(?:\b|)" 1;
|
|
"~*(?:\b)video\-\-production\.com(?:\b|)" 1;
|
|
"~*(?:\b)video\-production\.com(?:\b|)" 1;
|
|
"~*(?:\b)videosbox\.ru(?:\b|)" 1;
|
|
"~*(?:\b)videos\-for\-your\-business\.com(?:\b|)" 1;
|
|
"~*(?:\b)videositename\.com(?:\b|)" 1;
|
|
"~*(?:\b)videospornogratisx\.net(?:\b|)" 1;
|
|
"~*(?:\b)videotuber\.ru(?:\b|)" 1;
|
|
"~*(?:\b)video\-woman\.com(?:\b|)" 1;
|
|
"~*(?:\b)videtubs\.pl(?:\b|)" 1;
|
|
"~*(?:\b)vielporno\.net(?:\b|)" 1;
|
|
"~*(?:\b)viel\.su(?:\b|)" 1;
|
|
"~*(?:\b)vietimgy\.pw(?:\b|)" 1;
|
|
"~*(?:\b)vigrx\-original\.ru(?:\b|)" 1;
|
|
"~*(?:\b)vikistars\.com(?:\b|)" 1;
|
|
"~*(?:\b)viktoria\-center\.ru(?:\b|)" 1;
|
|
"~*(?:\b)vilingstore\.net(?:\b|)" 1;
|
|
"~*(?:\b)villacoloniale\.com(?:\b|)" 1;
|
|
"~*(?:\b)villakohlanta\.nu(?:\b|)" 1;
|
|
"~*(?:\b)vinsit\.ru(?:\b|)" 1;
|
|
"~*(?:\b)vintontech\.info(?:\b|)" 1;
|
|
"~*(?:\b)vinylvault\.co\.uk(?:\b|)" 1;
|
|
"~*(?:\b)vip2ch\.com(?:\b|)" 1;
|
|
"~*(?:\b)vip\.51\.la(?:\b|)" 1;
|
|
"~*(?:\b)vip\-dom\.in(?:\b|)" 1;
|
|
"~*(?:\b)vip\-file\.com(?:\b|)" 1;
|
|
"~*(?:\b)vipms\.ru(?:\b|)" 1;
|
|
"~*(?:\b)vip\-parfumeria\.ru(?:\b|)" 1;
|
|
"~*(?:\b)vipps\.com\.my(?:\b|)" 1;
|
|
"~*(?:\b)vipromoffers\.com(?:\b|)" 1;
|
|
"~*(?:\b)vipsexfinders\.com(?:\b|)" 1;
|
|
"~*(?:\b)vipsiterip\.org(?:\b|)" 1;
|
|
"~*(?:\b)virtuagirl\.com(?:\b|)" 1;
|
|
"~*(?:\b)visa\-china\.ru(?:\b|)" 1;
|
|
"~*(?:\b)visa\-pasport\.ru(?:\b|)" 1;
|
|
"~*(?:\b)visionwell\.com\.cn(?:\b|)" 1;
|
|
"~*(?:\b)visitcambridge\.org(?:\b|)" 1;
|
|
"~*(?:\b)vita\.com\.hr(?:\b|)" 1;
|
|
"~*(?:\b)vitalads\.net(?:\b|)" 1;
|
|
"~*(?:\b)vitanail\.ru(?:\b|)" 1;
|
|
"~*(?:\b)viteonlusarezzo\.it(?:\b|)" 1;
|
|
"~*(?:\b)vitoriacabos\.com(?:\b|)" 1;
|
|
"~*(?:\b)viven\.host\.sk(?:\b|)" 1;
|
|
"~*(?:\b)vizag\.kharkov\.ua(?:\b|)" 1;
|
|
"~*(?:\b)vizitki\.net(?:\b|)" 1;
|
|
"~*(?:\b)vkak\.ru(?:\b|)" 1;
|
|
"~*(?:\b)vkgaleria\.com(?:\b|)" 1;
|
|
"~*(?:\b)vkmusics\.ru(?:\b|)" 1;
|
|
"~*(?:\b)vk\-mus\.ru(?:\b|)" 1;
|
|
"~*(?:\b)vkonche\.com(?:\b|)" 1;
|
|
"~*(?:\b)vkontaktemusic\.ru(?:\b|)" 1;
|
|
"~*(?:\b)vkontarkte\.com(?:\b|)" 1;
|
|
"~*(?:\b)vksaver\-all\.ru(?:\b|)" 1;
|
|
"~*(?:\b)vladhistory\.com(?:\b|)" 1;
|
|
"~*(?:\b)vladimir\.xrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)vladimir\.zrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)vltai\.com(?:\b|)" 1;
|
|
"~*(?:\b)vmnmvzsmn\.over\-blog\.com(?:\b|)" 1;
|
|
"~*(?:\b)vodaodessa\.com(?:\b|)" 1;
|
|
"~*(?:\b)vod\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)voditeltrezviy\.ru(?:\b|)" 1;
|
|
"~*(?:\b)vodkoved\.ru(?:\b|)" 1;
|
|
"~*(?:\b)volgograd\.xrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)voloomoney\.com(?:\b|)" 1;
|
|
"~*(?:\b)voloo\.ru(?:\b|)" 1;
|
|
"~*(?:\b)voloslove\.ru(?:\b|)" 1;
|
|
"~*(?:\b)voltrknc1\.com(?:\b|)" 1;
|
|
"~*(?:\b)volume\-pills\.biz(?:\b|)" 1;
|
|
"~*(?:\b)voluumtracker1\.com(?:\b|)" 1;
|
|
"~*(?:\b)voluumtrk\.com(?:\b|)" 1;
|
|
"~*(?:\b)vonradio\.com(?:\b|)" 1;
|
|
"~*(?:\b)voprosotvet24\.ru(?:\b|)" 1;
|
|
"~*(?:\b)voronezh\.xrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)vostoktrade\.info(?:\b|)" 1;
|
|
"~*(?:\b)vote\-up\.ru(?:\b|)" 1;
|
|
"~*(?:\b)vozbujdenie\.com(?:\b|)" 1;
|
|
"~*(?:\b)vpnhowto\.info(?:\b|)" 1;
|
|
"~*(?:\b)vpnmouse\.com(?:\b|)" 1;
|
|
"~*(?:\b)vremya\.eu(?:\b|)" 1;
|
|
"~*(?:\b)vriel\.batcave\.net(?:\b|)" 1;
|
|
"~*(?:\b)vrnelectro\.ru(?:\b|)" 1;
|
|
"~*(?:\b)vrotike\.ru(?:\b|)" 1;
|
|
"~*(?:\b)vsdshnik\.com(?:\b|)" 1;
|
|
"~*(?:\b)vseigru\.one(?:\b|)" 1;
|
|
"~*(?:\b)vsesubwaysurfers\.com(?:\b|)" 1;
|
|
"~*(?:\b)vseuznaem\.com(?:\b|)" 1;
|
|
"~*(?:\b)vsexkontakte\.net(?:\b|)" 1;
|
|
"~*(?:\b)vtc\.pw(?:\b|)" 1;
|
|
"~*(?:\b)vucms\.com(?:\b|)" 1;
|
|
"~*(?:\b)vut\.com\.ru(?:\b|)" 1;
|
|
"~*(?:\b)vvon\.co\.uk(?:\b|)" 1;
|
|
"~*(?:\b)vvpg\.ru(?:\b|)" 1;
|
|
"~*(?:\b)vykup\-avto\-krasnodar\.ru(?:\b|)" 1;
|
|
"~*(?:\b)vykupavto\-krasnodar\.ru(?:\b|)" 1;
|
|
"~*(?:\b)vysigy\.su(?:\b|)" 1;
|
|
"~*(?:\b)vzglyadriv\.kg(?:\b|)" 1;
|
|
"~*(?:\b)vzlom\-na\-zakaz\.com(?:\b|)" 1;
|
|
"~*(?:\b)vzubah\.com(?:\b|)" 1;
|
|
"~*(?:\b)vzube\.com(?:\b|)" 1;
|
|
"~*(?:\b)w3data\.co(?:\b|)" 1;
|
|
"~*(?:\b)w3javascript\.com(?:\b|)" 1;
|
|
"~*(?:\b)w7s\.ru(?:\b|)" 1;
|
|
"~*(?:\b)wahicbefa31\.soup\.io(?:\b|)" 1;
|
|
"~*(?:\b)wait3sec\.org(?:\b|)" 1;
|
|
"~*(?:\b)walkme\.com(?:\b|)" 1;
|
|
"~*(?:\b)wallpapers\-best\.com(?:\b|)" 1;
|
|
"~*(?:\b)wallpapersdesk\.info(?:\b|)" 1;
|
|
"~*(?:\b)wallpapersist\.com(?:\b|)" 1;
|
|
"~*(?:\b)wallpaperstock\.net(?:\b|)" 1;
|
|
"~*(?:\b)wanker\.us(?:\b|)" 1;
|
|
"~*(?:\b)wapsite\.me(?:\b|)" 1;
|
|
"~*(?:\b)wareseeker\.com(?:\b|)" 1;
|
|
"~*(?:\b)warezaccess\.com(?:\b|)" 1;
|
|
"~*(?:\b)warezkeeper\.com(?:\b|)" 1;
|
|
"~*(?:\b)warning\.or\.kr(?:\b|)" 1;
|
|
"~*(?:\b)warningwar\.ru(?:\b|)" 1;
|
|
"~*(?:\b)warningzscaler\.heraeus\.com(?:\b|)" 1;
|
|
"~*(?:\b)watchdogs\-2\.ru(?:\b|)" 1;
|
|
"~*(?:\b)watchinf\.com(?:\b|)" 1;
|
|
"~*(?:\b)watch\-movies\.ru(?:\b|)" 1;
|
|
"~*(?:\b)watchmyfb\.pl(?:\b|)" 1;
|
|
"~*(?:\b)watchmygf\.net(?:\b|)" 1;
|
|
"~*(?:\b)waterefficiency\.co(?:\b|)" 1;
|
|
"~*(?:\b)waterpurifier\.club(?:\b|)" 1;
|
|
"~*(?:\b)watsonrealtycorp\.com(?:\b|)" 1;
|
|
"~*(?:\b)waycash\.net(?:\b|)" 1;
|
|
"~*(?:\b)waysbetter\.cn(?:\b|)" 1;
|
|
"~*(?:\b)wcb\.su(?:\b|)" 1;
|
|
"~*(?:\b)wdfdocando\.com(?:\b|)" 1;
|
|
"~*(?:\b)wdrake\.com(?:\b|)" 1;
|
|
"~*(?:\b)we\-are\-gamers\.com(?:\b|)" 1;
|
|
"~*(?:\b)webads\.co\.nz(?:\b|)" 1;
|
|
"~*(?:\b)webadvance\.club(?:\b|)" 1;
|
|
"~*(?:\b)webalan\.ru(?:\b|)" 1;
|
|
"~*(?:\b)web\-betting\.ru(?:\b|)" 1;
|
|
"~*(?:\b)webcamdevochka\.com(?:\b|)" 1;
|
|
"~*(?:\b)web\.cvut\.cz(?:\b|)" 1;
|
|
"~*(?:\b)webenlace\.com\.ar(?:\b|)" 1;
|
|
"~*(?:\b)webextract\.profound\.net(?:\b|)" 1;
|
|
"~*(?:\b)webinstantservice\.com(?:\b|)" 1;
|
|
"~*(?:\b)webix\.biz(?:\b|)" 1;
|
|
"~*(?:\b)webix\.me(?:\b|)" 1;
|
|
"~*(?:\b)webjam\.com(?:\b|)" 1;
|
|
"~*(?:\b)webkeyit\.com(?:\b|)" 1;
|
|
"~*(?:\b)weblo\.com(?:\b|)" 1;
|
|
"~*(?:\b)webmasterhome\.cn(?:\b|)" 1;
|
|
"~*(?:\b)webmasters\.stackexchange\.com(?:\b|)" 1;
|
|
"~*(?:\b)webmonetizer\.net(?:\b|)" 1;
|
|
"~*(?:\b)webnode\.me(?:\b|)" 1;
|
|
"~*(?:\b)weboptimizes\.com(?:\b|)" 1;
|
|
"~*(?:\b)webpromotion\.ae(?:\b|)" 1;
|
|
"~*(?:\b)webradiology\.ru(?:\b|)" 1;
|
|
"~*(?:\b)webs\.com(?:\b|)" 1;
|
|
"~*(?:\b)webscouter\.net(?:\b|)" 1;
|
|
"~*(?:\b)webshoppermac\.com(?:\b|)" 1;
|
|
"~*(?:\b)websiteaccountant\.de(?:\b|)" 1;
|
|
"~*(?:\b)website\-analytics\.online(?:\b|)" 1;
|
|
"~*(?:\b)website\-analyzer\.info(?:\b|)" 1;
|
|
"~*(?:\b)website\-audit\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)website\-datenbank\.de(?:\b|)" 1;
|
|
"~*(?:\b)websiteexplorer\.info(?:\b|)" 1;
|
|
"~*(?:\b)website\-speed\-checker\.site(?:\b|)" 1;
|
|
"~*(?:\b)website\-speed\-check\.site(?:\b|)" 1;
|
|
"~*(?:\b)website\-speed\-up\.site(?:\b|)" 1;
|
|
"~*(?:\b)website\-speed\-up\.top(?:\b|)" 1;
|
|
"~*(?:\b)websites\-reviews\.com(?:\b|)" 1;
|
|
"~*(?:\b)website\-stealer\.nufaq\.com(?:\b|)" 1;
|
|
"~*(?:\b)websitevaluebot\.com(?:\b|)" 1;
|
|
"~*(?:\b)webstatsdomain\.org(?:\b|)" 1;
|
|
"~*(?:\b)webtherapy\.ru(?:\b|)" 1;
|
|
"~*(?:\b)weburlopener\.com(?:\b|)" 1;
|
|
"~*(?:\b)weburok\.com(?:\b|)" 1;
|
|
"~*(?:\b)wechatdownload10\.com(?:\b|)" 1;
|
|
"~*(?:\b)weclipart\.com(?:\b|)" 1;
|
|
"~*(?:\b)wedding0venues\.tk(?:\b|)" 1;
|
|
"~*(?:\b)weddingdresses\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)wedding\-salon\.net(?:\b|)" 1;
|
|
"~*(?:\b)weekes\.biz\.tc(?:\b|)" 1;
|
|
"~*(?:\b)weightatraining\.com(?:\b|)" 1;
|
|
"~*(?:\b)wejdz\-tu\.pl(?:\b|)" 1;
|
|
"~*(?:\b)welck\.octopis\.com(?:\b|)" 1;
|
|
"~*(?:\b)welcomeauto\.ru(?:\b|)" 1;
|
|
"~*(?:\b)wellcome2slovenia\.ru(?:\b|)" 1;
|
|
"~*(?:\b)wemarketing\.se(?:\b|)" 1;
|
|
"~*(?:\b)wemedinc\.com(?:\b|)" 1;
|
|
"~*(?:\b)weprik\.ru(?:\b|)" 1;
|
|
"~*(?:\b)wesharepics\.com(?:\b|)" 1;
|
|
"~*(?:\b)wesharepics\.info(?:\b|)" 1;
|
|
"~*(?:\b)wesharepics\.site(?:\b|)" 1;
|
|
"~*(?:\b)westen\-v\.life(?:\b|)" 1;
|
|
"~*(?:\b)westen\-z\.life(?:\b|)" 1;
|
|
"~*(?:\b)westermarkanjou\.se(?:\b|)" 1;
|
|
"~*(?:\b)westsextube\.com(?:\b|)" 1;
|
|
"~*(?:\b)westum\.se(?:\b|)" 1;
|
|
"~*(?:\b)westvilletowingservices\.co\.za(?:\b|)" 1;
|
|
"~*(?:\b)wetgames\.ru(?:\b|)" 1;
|
|
"~*(?:\b)wfb\.hatedriveapart\.com(?:\b|)" 1;
|
|
"~*(?:\b)whatistizanidine2mg\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)whatistizanidinehclusedfor\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)whatsappdownload10\.com(?:\b|)" 1;
|
|
"~*(?:\b)whatsupinfoley\.com(?:\b|)" 1;
|
|
"~*(?:\b)whatzmyip\.net(?:\b|)" 1;
|
|
"~*(?:\b)wheelchairliftsarea\.com(?:\b|)" 1;
|
|
"~*(?:\b)whengirlsgowild\.com(?:\b|)" 1;
|
|
"~*(?:\b)whereiskentoday\.com(?:\b|)" 1;
|
|
"~*(?:\b)where\-toget\.com(?:\b|)" 1;
|
|
"~*(?:\b)whereverdesperate\.gq(?:\b|)" 1;
|
|
"~*(?:\b)while\.cheapwebsitehoster\.com(?:\b|)" 1;
|
|
"~*(?:\b)whipme\.yopoint\.in(?:\b|)" 1;
|
|
"~*(?:\b)whiteelephantwellington\.com(?:\b|)" 1;
|
|
"~*(?:\b)whiteproduct\.com(?:\b|)" 1;
|
|
"~*(?:\b)white\-truck\.life(?:\b|)" 1;
|
|
"~*(?:\b)wholesalecheapjerseysfree\.com(?:\b|)" 1;
|
|
"~*(?:\b)wholesalejerseychinaoutlet\.com(?:\b|)" 1;
|
|
"~*(?:\b)wholesalejerseychinashop\.com(?:\b|)" 1;
|
|
"~*(?:\b)wholesalejerseys\-cheapest\.com(?:\b|)" 1;
|
|
"~*(?:\b)wholesalejerseyscheapjerseys\.us\.com(?:\b|)" 1;
|
|
"~*(?:\b)wholesalejerseysgaa\.com(?:\b|)" 1;
|
|
"~*(?:\b)wholesalenfljerseys\.us\.com(?:\b|)" 1;
|
|
"~*(?:\b)wholinkstome\.com(?:\b|)" 1;
|
|
"~*(?:\b)whos\.amung\.us(?:\b|)" 1;
|
|
"~*(?:\b)whosonmyserver\.com(?:\b|)" 1;
|
|
"~*(?:\b)wieseversa\.no(?:\b|)" 1;
|
|
"~*(?:\b)wikes\.20fr\.com(?:\b|)" 1;
|
|
"~*(?:\b)wildcattube\.com(?:\b|)" 1;
|
|
"~*(?:\b)wildnatureimages\.com(?:\b|)" 1;
|
|
"~*(?:\b)wildworld\.site(?:\b|)" 1;
|
|
"~*(?:\b)williamrobsonproperty\.com(?:\b|)" 1;
|
|
"~*(?:\b)windowssearch\-exp\.com(?:\b|)" 1;
|
|
"~*(?:\b)wineitudes\.wordpress\.com(?:\b|)" 1;
|
|
"~*(?:\b)wineration\.com(?:\b|)" 1;
|
|
"~*(?:\b)wingsoffury2\.com(?:\b|)" 1;
|
|
"~*(?:\b)wingsofrefuge\.net(?:\b|)" 1;
|
|
"~*(?:\b)winner7777\.net(?:\b|)" 1;
|
|
"~*(?:\b)win\-spy\.com(?:\b|)" 1;
|
|
"~*(?:\b)winterclassichockeyjerseys\.com(?:\b|)" 1;
|
|
"~*(?:\b)winwotgold\.pl(?:\b|)" 1;
|
|
"~*(?:\b)winx\-play\.ru(?:\b|)" 1;
|
|
"~*(?:\b)wiosenny\-bon\-1500\.pl(?:\b|)" 1;
|
|
"~*(?:\b)witherrom55\.eklablog\.fr(?:\b|)" 1;
|
|
"~*(?:\b)withstandingheartwarming\.com(?:\b|)" 1;
|
|
"~*(?:\b)wjgony\.com(?:\b|)" 1;
|
|
"~*(?:\b)w\-journal\.ru(?:\b|)" 1;
|
|
"~*(?:\b)wladimirpayen\.com(?:\b|)" 1;
|
|
"~*(?:\b)wleuaprpxuvr\.ga(?:\b|)" 1;
|
|
"~*(?:\b)wma\-x\.com(?:\b|)" 1;
|
|
"~*(?:\b)wnhjavlhezp\.gq(?:\b|)" 1;
|
|
"~*(?:\b)wnoz\.de(?:\b|)" 1;
|
|
"~*(?:\b)womama\.ru(?:\b|)" 1;
|
|
"~*(?:\b)woman\-h\.ru(?:\b|)" 1;
|
|
"~*(?:\b)woman\-orgasm\.ru(?:\b|)" 1;
|
|
"~*(?:\b)woman\-tampon\.ru(?:\b|)" 1;
|
|
"~*(?:\b)womens\-journal\.net(?:\b|)" 1;
|
|
"~*(?:\b)womensplay\.net(?:\b|)" 1;
|
|
"~*(?:\b)womensterritory\.ru(?:\b|)" 1;
|
|
"~*(?:\b)wonderfulflowers\.biz(?:\b|)" 1;
|
|
"~*(?:\b)woodyguthrie\.se(?:\b|)" 1;
|
|
"~*(?:\b)wordkeyhelper\.com(?:\b|)" 1;
|
|
"~*(?:\b)wordpresscore\.com(?:\b|)" 1;
|
|
"~*(?:\b)wordpress\-crew\.net(?:\b|)" 1;
|
|
"~*(?:\b)word\-vorlagen\.net(?:\b|)" 1;
|
|
"~*(?:\b)word\-vorlagen\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)workle\.website(?:\b|)" 1;
|
|
"~*(?:\b)works\.if\.ua(?:\b|)" 1;
|
|
"~*(?:\b)worldhistory\.biz(?:\b|)" 1;
|
|
"~*(?:\b)worldinternetauthority\.com(?:\b|)" 1;
|
|
"~*(?:\b)worldis\.me(?:\b|)" 1;
|
|
"~*(?:\b)worldlovers\.ru(?:\b|)" 1;
|
|
"~*(?:\b)world\-mmo\.com(?:\b|)" 1;
|
|
"~*(?:\b)worldmusicfests\.com(?:\b|)" 1;
|
|
"~*(?:\b)worldoffiles\.ru(?:\b|)" 1;
|
|
"~*(?:\b)worldtraveler\.world(?:\b|)" 1;
|
|
"~*(?:\b)wormix\-cheats\.ru(?:\b|)" 1;
|
|
"~*(?:\b)worst\-sites\.online(?:\b|)" 1;
|
|
"~*(?:\b)wosik\-dach\.service\-for\-web\.de(?:\b|)" 1;
|
|
"~*(?:\b)wowas31\.ucoz\.ru(?:\b|)" 1;
|
|
"~*(?:\b)wowcasinoonline\.ooo(?:\b|)" 1;
|
|
"~*(?:\b)woweb\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)wpsecurity\.website(?:\b|)" 1;
|
|
"~*(?:\b)wpthemedetector\.co\.uk(?:\b|)" 1;
|
|
"~*(?:\b)writersgroup580\.web\.fc2\.com(?:\b|)" 1;
|
|
"~*(?:\b)writingservices17\.blogspot\.ru(?:\b|)" 1;
|
|
"~*(?:\b)wrona\.it(?:\b|)" 1;
|
|
"~*(?:\b)ws\.ampower\.me(?:\b|)" 1;
|
|
"~*(?:\b)wsgames\.ru(?:\b|)" 1;
|
|
"~*(?:\b)wstroika\.ru(?:\b|)" 1;
|
|
"~*(?:\b)wtsindia\.in(?:\b|)" 1;
|
|
"~*(?:\b)wttavern\.com(?:\b|)" 1;
|
|
"~*(?:\b)wufak\.com(?:\b|)" 1;
|
|
"~*(?:\b)wurr\.voila\.net(?:\b|)" 1;
|
|
"~*(?:\b)ww1943\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ww2awards\.info(?:\b|)" 1;
|
|
"~*(?:\b)www\.888\.com(?:\b|)" 1;
|
|
"~*(?:\b)wwwadultcheck\.com(?:\b|)" 1;
|
|
"~*(?:\b)www\.arenda\-yeisk\.ru(?:\b|)" 1;
|
|
"~*(?:\b)www\.event\-tracking\.com(?:\b|)" 1;
|
|
"~*(?:\b)www\.get\-free\-traffic\-now\.com(?:\b|)" 1;
|
|
"~*(?:\b)www\.kabbalah\-red\-bracelets\.com(?:\b|)" 1;
|
|
"~*(?:\b)www\.timer4web\.com(?:\b|)" 1;
|
|
"~*(?:\b)wygraj\-skiny\.win(?:\b|)" 1;
|
|
"~*(?:\b)wygraj\-teraz\.com(?:\b|)" 1;
|
|
"~*(?:\b)wyniki\-lista\.pl(?:\b|)" 1;
|
|
"~*(?:\b)wzgyyq\.com(?:\b|)" 1;
|
|
"~*(?:\b)x5market\.ru(?:\b|)" 1;
|
|
"~*(?:\b)x69ty\.ru(?:\b|)" 1;
|
|
"~*(?:\b)xaijo\.com(?:\b|)" 1;
|
|
"~*(?:\b)xaylapdiendanang\.com(?:\b|)" 1;
|
|
"~*(?:\b)xbaboon\.com(?:\b|)" 1;
|
|
"~*(?:\b)xblog\.in(?:\b|)" 1;
|
|
"~*(?:\b)xblognetwork\.com(?:\b|)" 1;
|
|
"~*(?:\b)xboxster\.ru(?:\b|)" 1;
|
|
"~*(?:\b)xcc24\.pl(?:\b|)" 1;
|
|
"~*(?:\b)xchangetrak\.com(?:\b|)" 1;
|
|
"~*(?:\b)xchat26\.myfreecams\.com(?:\b|)" 1;
|
|
"~*(?:\b)xclicks\.net(?:\b|)" 1;
|
|
"~*(?:\b)xcombear\.ru(?:\b|)" 1;
|
|
"~*(?:\b)x\-diesel\.biz(?:\b|)" 1;
|
|
"~*(?:\b)x\-diesel\.com(?:\b|)" 1;
|
|
"~*(?:\b)x\-diesel\.info(?:\b|)" 1;
|
|
"~*(?:\b)x\-diesel\.org(?:\b|)" 1;
|
|
"~*(?:\b)xdoza\.com(?:\b|)" 1;
|
|
"~*(?:\b)xedserver\.com(?:\b|)" 1;
|
|
"~*(?:\b)xep\.info(?:\b|)" 1;
|
|
"~*(?:\b)xerox\-douglas\.cf(?:\b|)" 1;
|
|
"~*(?:\b)xev\.ru(?:\b|)" 1;
|
|
"~*(?:\b)xfire\.com(?:\b|)" 1;
|
|
"~*(?:\b)xfluro\.com(?:\b|)" 1;
|
|
"~*(?:\b)xgames\-04\.com(?:\b|)" 1;
|
|
"~*(?:\b)xgftnlrt\.bloger\.index\.hr(?:\b|)" 1;
|
|
"~*(?:\b)xingzi\-vision\.com(?:\b|)" 1;
|
|
"~*(?:\b)xitjw\.info(?:\b|)" 1;
|
|
"~*(?:\b)xjlottery\.com(?:\b|)" 1;
|
|
"~*(?:\b)xjrul\.com(?:\b|)" 1;
|
|
"~*(?:\b)xkaz\.org(?:\b|)" 1;
|
|
"~*(?:\b)x\-lime\.com(?:\b|)" 1;
|
|
"~*(?:\b)x\-lime\.net(?:\b|)" 1;
|
|
"~*(?:\b)xlolitka\.com(?:\b|)" 1;
|
|
"~*(?:\b)xlovecam\.com(?:\b|)" 1;
|
|
"~*(?:\b)x\-mix\.info(?:\b|)" 1;
|
|
"~*(?:\b)xmladserver\.com(?:\b|)" 1;
|
|
"~*(?:\b)xmlinde\.com(?:\b|)" 1;
|
|
"~*(?:\b)xmronta\.com(?:\b|)" 1;
|
|
"~*(?:\b)x\-musics\.com(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-1\-8sbcpb0bdm8k6a\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-24\-glceagatoq7c2a6ioc\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-\-\-\-6kcaabbafhu7cskl7akvongwpo7hvjj\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-\-\-\-6kcaacnblni5c5bicdpcmficy\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-\-\-\-6kccaibs5cb8afhjrfmix2n\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-\-\-\-\-7cdbapdecfd4ak1bn0amjffj7afu3y\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-\-\-\-7kcabaipgeakzcss7bjdqdwpfnhv\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-\-\-\-7kceclhb4abre1b4a0ccl2fxch1a\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-\-\-7sbaaabaei0cc8aj5bj0bncejx\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-\-\-7sbahjd3btneuw1joc\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-\-\-7sbaphztdjeboffeiof6c\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-\-\-7sbbagbq7bd5aheftfllo4m\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-\-\-7sbbahaq9bb5afgiqfliv4m\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-\-\-7sbho2agebbhlivy\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-\-\-7sbifcamovvfggw9d\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-80aaafbn2bc2ahdfrfkln6l\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-80aaagvmjabrs1aoc9luc\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-80aaajbdbddwj2alwjieei2afr3v\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-80aaaks3bbhabgbigamdr2h\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-80aafb2a\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-80aagddcgkbcqbad7amllnejg6dya\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-80aanaardaperhcem4a6i\.com(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-80ab4aa2g\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-80abgj3a5acid6ghs\.top(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-80adaggc5bdhlfamsfdij4p7b\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-80aeahghtf8ac5i\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-80aebbcbcdemfkhba4byaehoejh8dza3v\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-80ahdheogk5l\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-80ahvj9e\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-80aikhbrhr\.net(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-80ajbshivpvn2i\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-80ajjbdhgmudixfjc8c5a9df8b\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-80ak6aa92e\.com(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-80aodinpgi\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-\-\-\-8kcatubaocd1bneepefojs1h2e\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-\-\-8sbarihbihxpxqgaf0g1e\.xn\-\-80adxhks(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-\-\-8sbdbjgb1ap7a9c4czbh\.xn\-\-p1acf(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-\-\-8sbhefaln6acifdaon5c6f4axh\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-\-\-8sblgmbj1a1bk8l\.xn\-\-\-\-161\-4vemb6cjl7anbaea3afninj\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-90acenikpebbdd4f6d\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-\-\-9sbebi2bvzr7h\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-\-\-9sbubg3ambdfl1j\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-b1adccaf1bzj\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-b1ag5cfn\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-b1agm2d\.net(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-\-\-btbdvdh4aafrfciljm6k\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-c1acygb\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-\-\-ctbbcjd3dbsehgi\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-\-\-ctbigni3aj4h\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-d1abj0abs9d\.in\.ua(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-d1aifoe0a9a\.top(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-\-\-dtbndd4ae7eub\.top(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-e1afanlbnfckd7c3d\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-e1aggki3c\.xn\-\-80adxhks(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-h1aakne2ba\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-h1ahbi\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-hxazdsfy\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-\-\-itbeirbjbi7bc6bh2d\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-\-\-itbkqkfiq\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-l1aengat\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-lifehacer\-1rb\.com(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-oogle\-wmc\.com(?:\b|)" 1;
|
|
"~*(?:\b)xn\-\-q1a\.xn\-\-b1aube0e\.xn\-\-c1acygb\.xn\-\-p1ai(?:\b|)" 1;
|
|
"~*(?:\b)xnxxandxvideos\.com(?:\b|)" 1;
|
|
"~*(?:\b)xnxx\-n\.com(?:\b|)" 1;
|
|
"~*(?:\b)xolodremont\.ru(?:\b|)" 1;
|
|
"~*(?:\b)x\-porno\.video(?:\b|)" 1;
|
|
"~*(?:\b)xportvusbdriver8i\.snack\.ws(?:\b|)" 1;
|
|
"~*(?:\b)xpresscare\.ru(?:\b|)" 1;
|
|
"~*(?:\b)x\-rates\.ru(?:\b|)" 1;
|
|
"~*(?:\b)xrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)xsion\.net(?:\b|)" 1;
|
|
"~*(?:\b)x\-stars\.ru(?:\b|)" 1;
|
|
"~*(?:\b)xtraffic\.plus(?:\b|)" 1;
|
|
"~*(?:\b)xtrafficplus\.com(?:\b|)" 1;
|
|
"~*(?:\b)xtremeeagles\.net(?:\b|)" 1;
|
|
"~*(?:\b)x\-true\.info(?:\b|)" 1;
|
|
"~*(?:\b)xtube\.com(?:\b|)" 1;
|
|
"~*(?:\b)xtubeporno\.net(?:\b|)" 1;
|
|
"~*(?:\b)xuki\.us(?:\b|)" 1;
|
|
"~*(?:\b)xvideosbay\.com(?:\b|)" 1;
|
|
"~*(?:\b)xvideosporn\.biz(?:\b|)" 1;
|
|
"~*(?:\b)xvideospornoru\.com(?:\b|)" 1;
|
|
"~*(?:\b)xwatt\.ru(?:\b|)" 1;
|
|
"~*(?:\b)xxart\.ru(?:\b|)" 1;
|
|
"~*(?:\b)xxlargepop\.com(?:\b|)" 1;
|
|
"~*(?:\b)xxx\-cam\.webcam(?:\b|)" 1;
|
|
"~*(?:\b)xxxdatinglocal\.us(?:\b|)" 1;
|
|
"~*(?:\b)xxxguitars\.com(?:\b|)" 1;
|
|
"~*(?:\b)xxxkaz\.org(?:\b|)" 1;
|
|
"~*(?:\b)xxxnatelefon\.ru(?:\b|)" 1;
|
|
"~*(?:\b)xxxrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)xxx\-treker\.ru(?:\b|)" 1;
|
|
"~*(?:\b)xxxtube69\.com(?:\b|)" 1;
|
|
"~*(?:\b)xxxtubesafari\.com(?:\b|)" 1;
|
|
"~*(?:\b)xz618\.com(?:\b|)" 1;
|
|
"~*(?:\b)xzlive\.com(?:\b|)" 1;
|
|
"~*(?:\b)y8games\-free\.com(?:\b|)" 1;
|
|
"~*(?:\b)yaaknaa\.info(?:\b|)" 1;
|
|
"~*(?:\b)yachts\-cruise\.info(?:\b|)" 1;
|
|
"~*(?:\b)yaderenergy\.ru(?:\b|)" 1;
|
|
"~*(?:\b)yadro\.ru(?:\b|)" 1;
|
|
"~*(?:\b)yaminecraft\.ru(?:\b|)" 1;
|
|
"~*(?:\b)yaoguangdj\.com(?:\b|)" 1;
|
|
"~*(?:\b)yatrk\.xyz(?:\b|)" 1;
|
|
"~*(?:\b)yeartwit\.com(?:\b|)" 1;
|
|
"~*(?:\b)yebocasino\.com(?:\b|)" 1;
|
|
"~*(?:\b)yebocasino\.co\.za(?:\b|)" 1;
|
|
"~*(?:\b)yellocloud\.be(?:\b|)" 1;
|
|
"~*(?:\b)yellowads\.men(?:\b|)" 1;
|
|
"~*(?:\b)yellowfootprints\.com(?:\b|)" 1;
|
|
"~*(?:\b)yellowstonesafaritours\.com(?:\b|)" 1;
|
|
"~*(?:\b)yellowstonevisitortours\.com(?:\b|)" 1;
|
|
"~*(?:\b)yes\-com\.com(?:\b|)" 1;
|
|
"~*(?:\b)yginekologa\.com(?:\b|)" 1;
|
|
"~*(?:\b)yhit\.press(?:\b|)" 1;
|
|
"~*(?:\b)ynymnwbm\.bloger\.index\.hr(?:\b|)" 1;
|
|
"~*(?:\b)yogamatsexpert\.com(?:\b|)" 1;
|
|
"~*(?:\b)yoluxuryevents\.com(?:\b|)" 1;
|
|
"~*(?:\b)yoopsie\.com(?:\b|)" 1;
|
|
"~*(?:\b)yopoint\.in(?:\b|)" 1;
|
|
"~*(?:\b)yoshkarola\.zrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)yottos\.com(?:\b|)" 1;
|
|
"~*(?:\b)youandcredit\.ru(?:\b|)" 1;
|
|
"~*(?:\b)youbloodyripper\.com(?:\b|)" 1;
|
|
"~*(?:\b)youbrainboost\.asia(?:\b|)" 1;
|
|
"~*(?:\b)youdao\.com(?:\b|)" 1;
|
|
"~*(?:\b)youdesigner\.kz(?:\b|)" 1;
|
|
"~*(?:\b)yougame\.biz(?:\b|)" 1;
|
|
"~*(?:\b)yougetsignal\.com(?:\b|)" 1;
|
|
"~*(?:\b)youghbould\.wordpress\.com(?:\b|)" 1;
|
|
"~*(?:\b)yougotanewdomain\.com(?:\b|)" 1;
|
|
"~*(?:\b)youjizz\.com(?:\b|)" 1;
|
|
"~*(?:\b)youjizz\.vc(?:\b|)" 1;
|
|
"~*(?:\b)youporn\-forum\.ga(?:\b|)" 1;
|
|
"~*(?:\b)youporn\-ru\.com(?:\b|)" 1;
|
|
"~*(?:\b)youradexchange\.com(?:\b|)" 1;
|
|
"~*(?:\b)yourads\.website(?:\b|)" 1;
|
|
"~*(?:\b)youradulthosting\.com(?:\b|)" 1;
|
|
"~*(?:\b)youraticles\.pl(?:\b|)" 1;
|
|
"~*(?:\b)your\-bearings\.com(?:\b|)" 1;
|
|
"~*(?:\b)yourdesires\.ru(?:\b|)" 1;
|
|
"~*(?:\b)youresponsive\.com(?:\b|)" 1;
|
|
"~*(?:\b)yourmovies\.pl(?:\b|)" 1;
|
|
"~*(?:\b)yourothersite\.com(?:\b|)" 1;
|
|
"~*(?:\b)yourporn\.com(?:\b|)" 1;
|
|
"~*(?:\b)yourporngay\.com(?:\b|)" 1;
|
|
"~*(?:\b)yoursearch\.me(?:\b|)" 1;
|
|
"~*(?:\b)yourserverisdown\.com(?:\b|)" 1;
|
|
"~*(?:\b)yoursite\.com(?:\b|)" 1;
|
|
"~*(?:\b)yourtemplatefinder\.com(?:\b|)" 1;
|
|
"~*(?:\b)yousense\.info(?:\b|)" 1;
|
|
"~*(?:\b)you\-shall\-not\-pass\.is74\.ru(?:\b|)" 1;
|
|
"~*(?:\b)youthreaders\.com(?:\b|)" 1;
|
|
"~*(?:\b)youtoner\.it(?:\b|)" 1;
|
|
"~*(?:\b)youtube\-downloader\.savetubevideo\.com(?:\b|)" 1;
|
|
"~*(?:\b)youtubedownload\.org(?:\b|)" 1;
|
|
"~*(?:\b)youtuhe\.com(?:\b|)" 1;
|
|
"~*(?:\b)ypmuseum\.ru(?:\b|)" 1;
|
|
"~*(?:\b)ytmnd\.com(?:\b|)" 1;
|
|
"~*(?:\b)yuarra\.pluto\.ro(?:\b|)" 1;
|
|
"~*(?:\b)yubikk\.info(?:\b|)" 1;
|
|
"~*(?:\b)yugk\.net(?:\b|)" 1;
|
|
"~*(?:\b)yugo\-star\.ru(?:\b|)" 1;
|
|
"~*(?:\b)yun56\.co(?:\b|)" 1;
|
|
"~*(?:\b)yunque\.pluto\.ro(?:\b|)" 1;
|
|
"~*(?:\b)yurgorod\.ru(?:\b|)" 1;
|
|
"~*(?:\b)yur\-p\.ru(?:\b|)" 1;
|
|
"~*(?:\b)yuweng\.info(?:\b|)" 1;
|
|
"~*(?:\b)zaapplesales\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)zacreditom\.ru(?:\b|)" 1;
|
|
"~*(?:\b)za\-fun\-offer\.com(?:\b|)" 1;
|
|
"~*(?:\b)zagadki\.in\.ua(?:\b|)" 1;
|
|
"~*(?:\b)zahvat\.ru(?:\b|)" 1;
|
|
"~*(?:\b)zaidia\.xhost\.ro(?:\b|)" 1;
|
|
"~*(?:\b)zaimhelp\.ru(?:\b|)" 1;
|
|
"~*(?:\b)zaimite\.ru(?:\b|)" 1;
|
|
"~*(?:\b)zaim\-pod\-zalog\-krasnodar\.ru(?:\b|)" 1;
|
|
"~*(?:\b)zajm\-pod\-zalog\-nedvizhimosti\.ru(?:\b|)" 1;
|
|
"~*(?:\b)zajm\-zalog\-krasnodar\.ru(?:\b|)" 1;
|
|
"~*(?:\b)zakazfutbolki\.com(?:\b|)" 1;
|
|
"~*(?:\b)zakazvzloma\.com(?:\b|)" 1;
|
|
"~*(?:\b)zakon\-ob\-obrazovanii\.ru(?:\b|)" 1;
|
|
"~*(?:\b)zakonobosago\.ru(?:\b|)" 1;
|
|
"~*(?:\b)zaloadi\.ru(?:\b|)" 1;
|
|
"~*(?:\b)zaloro\.com(?:\b|)" 1;
|
|
"~*(?:\b)zambini\.ru(?:\b|)" 1;
|
|
"~*(?:\b)za\-music\.mymobiplanet\.com(?:\b|)" 1;
|
|
"~*(?:\b)zaobao\.com\.sg(?:\b|)" 1;
|
|
"~*(?:\b)zapatosenventa\.info(?:\b|)" 1;
|
|
"~*(?:\b)zapiszto\.pl(?:\b|)" 1;
|
|
"~*(?:\b)zarabiaj\-dzis\.pl(?:\b|)" 1;
|
|
"~*(?:\b)zarabotat\-na\-sajte\.ru(?:\b|)" 1;
|
|
"~*(?:\b)zarabotok\-\-doma\.ru(?:\b|)" 1;
|
|
"~*(?:\b)zarajbuilders\.com(?:\b|)" 1;
|
|
"~*(?:\b)zarenica\.net(?:\b|)" 1;
|
|
"~*(?:\b)zarepta\.com(?:\b|)" 1;
|
|
"~*(?:\b)zastenchivosti\.net(?:\b|)" 1;
|
|
"~*(?:\b)zastroyka\.org(?:\b|)" 1;
|
|
"~*(?:\b)zatjmuzu\.info(?:\b|)" 1;
|
|
"~*(?:\b)zawyna\.ua(?:\b|)" 1;
|
|
"~*(?:\b)zazagames\.org(?:\b|)" 1;
|
|
"~*(?:\b)zdesformula\.ru(?:\b|)" 1;
|
|
"~*(?:\b)zdesoboi\.com(?:\b|)" 1;
|
|
"~*(?:\b)zebradudka\.com(?:\b|)" 1;
|
|
"~*(?:\b)zebramart\.ru(?:\b|)" 1;
|
|
"~*(?:\b)zed21\.net(?:\b|)" 1;
|
|
"~*(?:\b)zeg\-distribution\.com(?:\b|)" 1;
|
|
"~*(?:\b)zeikopay\.com(?:\b|)" 1;
|
|
"~*(?:\b)zeleznobeton\.ru(?:\b|)" 1;
|
|
"~*(?:\b)zero1\.it(?:\b|)" 1;
|
|
"~*(?:\b)zerocash\.msk\.ru(?:\b|)" 1;
|
|
"~*(?:\b)zeroredirect10\.com(?:\b|)" 1;
|
|
"~*(?:\b)zeroredirect11\.com(?:\b|)" 1;
|
|
"~*(?:\b)zeroredirect12\.com(?:\b|)" 1;
|
|
"~*(?:\b)zeroredirect1\.com(?:\b|)" 1;
|
|
"~*(?:\b)zeroredirect2\.com(?:\b|)" 1;
|
|
"~*(?:\b)zeroredirect5\.com(?:\b|)" 1;
|
|
"~*(?:\b)zeroredirect6\.com(?:\b|)" 1;
|
|
"~*(?:\b)zeroredirect7\.com(?:\b|)" 1;
|
|
"~*(?:\b)zeroredirect8\.com(?:\b|)" 1;
|
|
"~*(?:\b)zeroredirect9\.com(?:\b|)" 1;
|
|
"~*(?:\b)zeroredirect\.com(?:\b|)" 1;
|
|
"~*(?:\b)zetgie\.com\.pl(?:\b|)" 1;
|
|
"~*(?:\b)zetmaster\.ru(?:\b|)" 1;
|
|
"~*(?:\b)zhacker\.net(?:\b|)" 1;
|
|
"~*(?:\b)zhongwenlink\.com(?:\b|)" 1;
|
|
"~*(?:\b)zhorapankratov7\.blogspot\.com(?:\b|)" 1;
|
|
"~*(?:\b)zhuravlev\.info(?:\b|)" 1;
|
|
"~*(?:\b)zigarettenonl\.canalblog\.com(?:\b|)" 1;
|
|
"~*(?:\b)zigarettenonlinekaufen1\.bloog\.pl(?:\b|)" 1;
|
|
"~*(?:\b)zigarettenonlinekaufen1\.blox\.pl(?:\b|)" 1;
|
|
"~*(?:\b)zigarettenonlinekaufen2\.bloog\.pl(?:\b|)" 1;
|
|
"~*(?:\b)zigarettenonlinekaufen2\.drupalgardens\.com(?:\b|)" 1;
|
|
"~*(?:\b)zigarettenonlinekaufen\.tumblr\.com(?:\b|)" 1;
|
|
"~*(?:\b)zigzog\.ru(?:\b|)" 1;
|
|
"~*(?:\b)zionstar\.net(?:\b|)" 1;
|
|
"~*(?:\b)zixizop\.net\.ru(?:\b|)" 1;
|
|
"~*(?:\b)zkjovpdgxivg\.ga(?:\b|)" 1;
|
|
"~*(?:\b)zlatnajesen\.com(?:\b|)" 1;
|
|
"~*(?:\b)z\-master\.ru(?:\b|)" 1;
|
|
"~*(?:\b)zmoda\.hostreo\.com(?:\b|)" 1;
|
|
"~*(?:\b)znakom\.sibtest\.ru(?:\b|)" 1;
|
|
"~*(?:\b)znakomstva\-moskva77\.ru(?:\b|)" 1;
|
|
"~*(?:\b)znakomstvaonlain\.ru(?:\b|)" 1;
|
|
"~*(?:\b)znakomstva\-piter78\.ru(?:\b|)" 1;
|
|
"~*(?:\b)znaniyapolza\.ru(?:\b|)" 1;
|
|
"~*(?:\b)znaturaloriginal\.com(?:\b|)" 1;
|
|
"~*(?:\b)zocaparj\.kz(?:\b|)" 1;
|
|
"~*(?:\b)zog\.link(?:\b|)" 1;
|
|
"~*(?:\b)zojirushi\-products\.ru(?:\b|)" 1;
|
|
"~*(?:\b)zolotoy\-lis\.ru(?:\b|)" 1;
|
|
"~*(?:\b)zona\-aqua\.ru(?:\b|)" 1;
|
|
"~*(?:\b)zone\-kev717\.info(?:\b|)" 1;
|
|
"~*(?:\b)zoodrawings\.com(?:\b|)" 1;
|
|
"~*(?:\b)zoogdiesney\.com(?:\b|)" 1;
|
|
"~*(?:\b)zoogdinsney\.com(?:\b|)" 1;
|
|
"~*(?:\b)zoogdisany\.com(?:\b|)" 1;
|
|
"~*(?:\b)zooggames\.com(?:\b|)" 1;
|
|
"~*(?:\b)zoolubimets\.ru(?:\b|)" 1;
|
|
"~*(?:\b)zoominfo\.com(?:\b|)" 1;
|
|
"~*(?:\b)zoomovies\.org(?:\b|)" 1;
|
|
"~*(?:\b)zoompegs\.com(?:\b|)" 1;
|
|
"~*(?:\b)zoosexart\.com(?:\b|)" 1;
|
|
"~*(?:\b)zootoplist\.com(?:\b|)" 1;
|
|
"~*(?:\b)zootravel\.com(?:\b|)" 1;
|
|
"~*(?:\b)zophim\.me(?:\b|)" 1;
|
|
"~*(?:\b)zrelaya\.pw(?:\b|)" 1;
|
|
"~*(?:\b)zrizvtrnpale\.tk(?:\b|)" 1;
|
|
"~*(?:\b)zrus\.org(?:\b|)" 1;
|
|
"~*(?:\b)zryydi\.com(?:\b|)" 1;
|
|
"~*(?:\b)zs2vm\.top(?:\b|)" 1;
|
|
"~*(?:\b)zscaler\.net(?:\b|)" 1;
|
|
"~*(?:\b)zscalerone\.net(?:\b|)" 1;
|
|
"~*(?:\b)zscalertwo\.net(?:\b|)" 1;
|
|
"~*(?:\b)zverokruh\-shop\.cz(?:\b|)" 1;
|
|
"~*(?:\b)zvetki\.ru(?:\b|)" 1;
|
|
"~*(?:\b)zvezdagedon\.ru(?:\b|)" 1;
|
|
"~*(?:\b)zx6\.ru(?:\b|)" 1;
|
|
"~*(?:\b)zynax\.ua(?:\b|)" 1;
|
|
"~*(?:\b)zytpirwai\.net(?:\b|)" 1;
|
|
"~*(?:\b)zzbroya\.com\.ua(?:\b|)" 1;
|
|
"~*(?:\b)zzlgxh\.com(?:\b|)" 1;
|
|
# END BAD REFERRERS ### DO NOT EDIT THIS LINE AT ALL ###
|
|
}
|
|
|
|
|
|
# ***********************************************
|
|
# WHITELISTING AND BLACKLISTING IP ADDRESS RANGES
|
|
# ***********************************************
|
|
|
|
# Geo directive to deny and also whitelist certain ip addresses
|
|
|
|
geo $validate_client {
|
|
|
|
# ********************
|
|
# First Our Safety Net
|
|
# ********************
|
|
|
|
# Anything not matching our rules is allowed through with default 0;
|
|
|
|
default 0;
|
|
|
|
# *************************
|
|
# Wordpress Theme Detectors
|
|
# *************************
|
|
|
|
# START WP THEME DETECTORS ### DO NOT EDIT THIS LINE AT ALL ###
|
|
|
|
104.197.51.76 1; #makeawebsitehub.com/theme-detector/
|
|
108.167.189.81 1; #whatpress.net
|
|
109.73.225.87 1; #theseotools.net/wp-theme-detector
|
|
13.68.211.181 1; #hackertarget.com
|
|
142.4.218.201 1; #builtwith.com (bilby.builtwith.com / monty.builtwith.com / trends.builtwith.com)
|
|
146.66.111.151 1; #https://www.wpthemedetector.com/
|
|
149.56.33.22 1; #freeonlineseo.org/wordpress-theme-detector
|
|
158.69.187.171 1; #builtwith.com
|
|
158.69.26.58 1; #www.mythemedetector.com/detector
|
|
162.13.185.20 1; #makeawebsitehub.com/theme-detector/
|
|
172.96.184.5 1; #http://wpdetector.com/
|
|
173.237.189.235 1; #seo-tools.freedirectorywebsites.com/wordpress-theme-detector
|
|
173.255.210.133 1; #www.scanwp.com
|
|
185.195.18.158 1; #https://whoiswp.com/
|
|
185.45.14.186 1; #whoiswp.com
|
|
192.163.217.239 1; #scanwp.net
|
|
192.185.4.40 1; #whatwpthemeisthat.com
|
|
192.95.29.139 1; #seotoolstation.com/wordpress-theme-detector
|
|
192.99.17.79 1; #builtwith.com (oscar.builtwith.com)
|
|
198.27.69.229 1; #builtwith.com (fluffy.builtwith.com)
|
|
198.58.124.46 1; #makeawebsitehub.com/theme-detector/
|
|
199.241.28.124 1; #wordpressthemedetector.org
|
|
212.71.238.108 1; #pentest-tools.com (Vulnerability Scanner)
|
|
2604:180::1370:bcde 1; #http://wordpressthemedetector.org/
|
|
2607:5300:60:2c8b:: 1; #http://seotoolstation.com/wordpress-theme-detector
|
|
2a02:4780:3:1::d 1; #https://smallseo.tools/wordpress-theme-detector
|
|
37.247.121.179 1; #wpthemedetector.com
|
|
37.60.253.215 1; #wploop.com/wordpress-theme-detector-tool/
|
|
3.91.36.137 1; #https://smallseotools.com/wordpress-theme-detector/
|
|
45.63.68.250 1; #www.cuteseotools.net/wordpress-theme-detector
|
|
45.79.139.191 1; #wprecon.com
|
|
50.116.71.205 1; #http://wp-detector.com/
|
|
50.116.84.148 1; #detectwptheme.com
|
|
52.66.147.75 1; #https://smallseotools.com/wordpress-theme-detector/
|
|
52.87.112.125 1; #whattheme.com
|
|
66.96.183.60 1; #www.callseotools.com/wordpress-theme-detector
|
|
69.174.53.46 1; #https://firstsiteguide.com
|
|
89.36.223.188 1; #www.cuteseotools.net/wordpress-theme-detector
|
|
# END WP THEME DETECTORS ### DO NOT EDIT THIS LINE AT ALL ###
|
|
|
|
# ****************************************
|
|
# NIBBLER - SEO testing and reporting tool
|
|
# ****************************************
|
|
# See - http://nibbler.silktide.com/
|
|
|
|
# START NIBBLER ### DO NOT EDIT THIS LINE AT ALL ###
|
|
52.201.238.175 1;
|
|
52.90.20.216 1;
|
|
54.161.247.146 1;
|
|
54.211.214.177 1;
|
|
54.227.194.252 1;
|
|
54.242.239.179 1;
|
|
54.242.250.203 1;
|
|
# END NIBBLER ### DO NOT EDIT THIS LINE AT ALL ###
|
|
|
|
|
|
# ****************************
|
|
# Known Bad IP's and IP Ranges
|
|
# *************************************************
|
|
# Blacklist IP addresses and IP Ranges Customizable
|
|
# *************************************************
|
|
|
|
# BLACKLIST all your IP addresses and Ranges using the new include file below.
|
|
# New Method Uses the include file below so that when pulling future updates your
|
|
# Custom Blacklisted IP addresses are automatically now included for you.
|
|
# Read Comments inside blacklist-ips.conf for customization tips.
|
|
# Updating the main globalblacklist.conf file will not touch your custom include files
|
|
|
|
# ********************************************************************
|
|
# START BLACKLISTED IPS ### DO NOT EDIT OR REMOVE THIS LINE AT ALL ###
|
|
# ********************************************************************
|
|
|
|
include /etc/nginx/bots.d/blacklist-ips.conf;
|
|
|
|
# ******************************************************************
|
|
# END BLACKLISTED IPS ### DO NOT EDIT OR REMOVE THIS LINE AT ALL ###
|
|
# ******************************************************************
|
|
|
|
# *********************************************************************************************
|
|
# KNOWN BAD IP ADDRESSES
|
|
# Source: https://github.com/mitchellkrogza/Suspicious.Snooping.Sniffing.Hacking.IP.Addresses
|
|
# A Reliable Daily Updated List Included Below of Known Bad IP Addresses, Snoopers and Sniffers
|
|
# *********************************************************************************************
|
|
|
|
# START KNOWN BAD IP ADDRESSES ### DO NOT EDIT THIS LINE AT ALL ###
|
|
0.0.10.40 1;
|
|
0.0.10.42 1;
|
|
0.0.10.44 1;
|
|
0.0.10.45 1;
|
|
0.0.10.47 1;
|
|
0.0.7.209 1;
|
|
100.36.236.72 1;
|
|
101.132.243.11 1;
|
|
101.200.178.241 1;
|
|
101.200.182.206 1;
|
|
101.200.186.145 1;
|
|
101.200.89.115 1;
|
|
101.201.40.230 1;
|
|
101.201.47.86 1;
|
|
101.201.64.88 1;
|
|
101.79.5.113 1;
|
|
101.98.209.223 1;
|
|
101.98.27.245 1;
|
|
103.109.0.226 1;
|
|
103.14.45.67 1;
|
|
103.15.49.42 1;
|
|
103.196.100.66 1;
|
|
103.19.88.162 1;
|
|
103.207.36.141 1;
|
|
103.207.36.202 1;
|
|
103.207.37.50 1;
|
|
103.207.38.195 1;
|
|
103.207.39.222 1;
|
|
103.207.39.83 1;
|
|
103.21.117.223 1;
|
|
103.21.70.138 1;
|
|
103.224.248.203 1;
|
|
103.230.63.50 1;
|
|
103.233.158.19 1;
|
|
103.249.31.189 1;
|
|
103.253.147.154 1;
|
|
103.253.147.212 1;
|
|
103.28.149.188 1;
|
|
103.40.22.73 1;
|
|
103.50.255.6 1;
|
|
103.56.189.134 1;
|
|
103.61.44.83 1;
|
|
103.6.33.5 1;
|
|
103.75.34.18 1;
|
|
103.79.141.138 1;
|
|
103.80.36.19 1;
|
|
103.89.88.95 1;
|
|
103.9.158.159 1;
|
|
103.95.197.43 1;
|
|
103.99.2.120 1;
|
|
104.131.106.203 1;
|
|
104.131.109.173 1;
|
|
104.131.158.236 1;
|
|
104.131.184.239 1;
|
|
104.131.213.59 1;
|
|
104.131.214.193 1;
|
|
104.131.81.254 1;
|
|
104.131.82.239 1;
|
|
104.131.86.222 1;
|
|
104.131.86.71 1;
|
|
104.149.163.162 1;
|
|
104.156.230.245 1;
|
|
104.160.185.192 1;
|
|
104.167.123.34 1;
|
|
104.168.65.2 1;
|
|
104.194.26.204 1;
|
|
104.196.173.222 1;
|
|
104.197.20.240 1;
|
|
104.197.49.154 1;
|
|
104.199.149.92 1;
|
|
104.206.243.106 1;
|
|
104.206.243.174 1;
|
|
104.206.243.22 1;
|
|
104.206.243.246 1;
|
|
104.206.243.72 1;
|
|
104.210.11.59 1;
|
|
104.211.203.193 1;
|
|
104.215.155.210 1;
|
|
104.215.156.172 1;
|
|
104.215.61.5 1;
|
|
104.223.52.151 1;
|
|
104.227.32.120 1;
|
|
104.232.103.226 1;
|
|
104.232.79.22 1;
|
|
104.236.101.68 1;
|
|
104.236.129.219 1;
|
|
104.236.155.79 1;
|
|
104.236.208.101 1;
|
|
104.236.234.82 1;
|
|
104.238.80.144 1;
|
|
104.238.83.234 1;
|
|
104.243.129.210 1;
|
|
104.243.129.98 1;
|
|
104.248.124.57 1;
|
|
104.248.131.112 1;
|
|
104.248.180.149 1;
|
|
104.248.239.65 1;
|
|
104.248.27.238 1;
|
|
104.248.53.184 1;
|
|
104.41.164.126 1;
|
|
104.41.5.236 1;
|
|
104.45.158.248 1;
|
|
104.5.92.27 1;
|
|
105.228.157.123 1;
|
|
106.120.173.148 1;
|
|
106.12.34.154 1;
|
|
106.187.95.64 1;
|
|
106.254.51.233 1;
|
|
106.51.127.128 1;
|
|
106.75.6.3 1;
|
|
107.150.15.121 1;
|
|
107.152.145.21 1;
|
|
107.152.245.92 1;
|
|
107.167.109.214 1;
|
|
107.167.116.30 1;
|
|
107.167.98.99 1;
|
|
107.170.186.223 1;
|
|
107.170.20.63 1;
|
|
107.170.234.156 1;
|
|
107.170.91.99 1;
|
|
107.172.144.92 1;
|
|
107.172.51.119 1;
|
|
107.172.73.215 1;
|
|
107.172.76.187 1;
|
|
107.172.98.232 1;
|
|
107.173.177.108 1;
|
|
107.173.182.246 1;
|
|
107.173.3.100 1;
|
|
107.173.31.42 1;
|
|
107.174.145.67 1;
|
|
107.175.154.171 1;
|
|
107.175.65.207 1;
|
|
107.180.68.170 1;
|
|
107.23.89.231 1;
|
|
108.13.176.75 1;
|
|
108.168.234.154 1;
|
|
108.7.202.43 1;
|
|
109.104.88.43 1;
|
|
109.161.57.125 1;
|
|
109.194.19.243 1;
|
|
109.202.78.51 1;
|
|
109.203.109.210 1;
|
|
109.228.53.70 1;
|
|
109.228.54.28 1;
|
|
109.245.221.126 1;
|
|
109.248.9.9 1;
|
|
109.73.46.142 1;
|
|
110.10.129.226 1;
|
|
110.45.132.212 1;
|
|
110.89.41.242 1;
|
|
111.231.190.181 1;
|
|
111.231.244.35 1;
|
|
111.73.46.169 1;
|
|
111.85.15.196 1;
|
|
112.111.185.155 1;
|
|
112.133.100.73 1;
|
|
112.133.231.212 1;
|
|
112.196.35.197 1;
|
|
112.220.234.195 1;
|
|
112.33.7.18 1;
|
|
112.33.7.40 1;
|
|
112.65.205.194 1;
|
|
112.85.42.144 1;
|
|
112.85.42.146 1;
|
|
112.85.42.194 1;
|
|
113.105.224.111 1;
|
|
113.107.237.220 1;
|
|
113.195.145.12 1;
|
|
113.195.145.70 1;
|
|
113.195.145.85 1;
|
|
113.209.20.234 1;
|
|
113.23.105.40 1;
|
|
113.28.139.225 1;
|
|
113.53.241.15 1;
|
|
113.67.168.3 1;
|
|
114.215.150.146 1;
|
|
114.215.153.127 1;
|
|
114.32.153.15 1;
|
|
115.146.126.168 1;
|
|
115.159.0.225 1;
|
|
115.159.22.186 1;
|
|
115.208.240.137 1;
|
|
115.236.69.123 1;
|
|
115.236.71.44 1;
|
|
115.238.245.14 1;
|
|
115.238.245.2 1;
|
|
115.238.245.4 1;
|
|
115.238.245.8 1;
|
|
115.28.151.238 1;
|
|
115.29.172.220 1;
|
|
115.29.177.151 1;
|
|
115.29.178.238 1;
|
|
115.29.226.207 1;
|
|
115.29.97.173 1;
|
|
115.68.14.70 1;
|
|
115.88.201.58 1;
|
|
116.100.68.208 1;
|
|
116.104.120.144 1;
|
|
116.109.165.250 1;
|
|
116.126.142.174 1;
|
|
116.236.105.170 1;
|
|
116.31.116.15 1;
|
|
116.31.116.16 1;
|
|
116.31.116.17 1;
|
|
116.31.116.20 1;
|
|
116.31.116.23 1;
|
|
116.31.116.24 1;
|
|
116.31.116.25 1;
|
|
116.31.116.26 1;
|
|
116.31.116.27 1;
|
|
116.31.116.28 1;
|
|
116.31.116.35 1;
|
|
116.31.116.36 1;
|
|
116.31.116.37 1;
|
|
116.31.116.5 1;
|
|
116.31.116.7 1;
|
|
116.31.116.8 1;
|
|
116.56.137.251 1;
|
|
117.0.35.153 1;
|
|
117.121.7.103 1;
|
|
117.156.94.32 1;
|
|
117.248.137.57 1;
|
|
117.255.216.106 1;
|
|
117.255.216.116 1;
|
|
117.27.144.63 1;
|
|
117.50.7.159 1;
|
|
117.7.92.132 1;
|
|
118.100.183.87 1;
|
|
118.139.178.67 1;
|
|
118.163.24.179 1;
|
|
118.163.94.252 1;
|
|
118.174.8.175 1;
|
|
118.179.136.29 1;
|
|
118.185.32.18 1;
|
|
118.187.4.130 1;
|
|
118.187.6.111 1;
|
|
118.187.7.37 1;
|
|
118.190.111.5 1;
|
|
118.193.207.162 1;
|
|
118.212.132.231 1;
|
|
118.212.143.43 1;
|
|
118.212.143.47 1;
|
|
118.23.153.177 1;
|
|
118.24.142.63 1;
|
|
118.244.203.36 1;
|
|
118.244.238.4 1;
|
|
118.24.72.96 1;
|
|
118.24.78.87 1;
|
|
118.25.104.166 1;
|
|
118.26.69.133 1;
|
|
118.31.39.88 1;
|
|
118.34.242.58 1;
|
|
118.36.193.215 1;
|
|
118.89.23.209 1;
|
|
118.89.238.227 1;
|
|
118.89.249.42 1;
|
|
118.89.49.45 1;
|
|
119.147.137.10 1;
|
|
119.149.145.80 1;
|
|
119.163.120.202 1;
|
|
119.235.21.178 1;
|
|
119.249.54.217 1;
|
|
119.254.103.104 1;
|
|
119.27.189.149 1;
|
|
119.28.77.70 1;
|
|
119.29.14.115 1;
|
|
119.57.251.164 1;
|
|
119.60.9.7 1;
|
|
119.81.108.146 1;
|
|
119.9.30.30 1;
|
|
120.132.71.116 1;
|
|
120.24.156.23 1;
|
|
120.25.151.173 1;
|
|
120.25.230.179 1;
|
|
120.26.238.8 1;
|
|
120.27.133.174 1;
|
|
120.27.92.112 1;
|
|
120.27.97.226 1;
|
|
120.55.164.49 1;
|
|
120.79.197.139 1;
|
|
120.92.4.184 1;
|
|
121.126.171.30 1;
|
|
121.181.127.115 1;
|
|
121.18.238.115 1;
|
|
121.18.238.12 1;
|
|
121.18.238.123 1;
|
|
121.18.238.29 1;
|
|
121.18.238.32 1;
|
|
121.18.238.7 1;
|
|
121.199.52.73 1;
|
|
121.31.114.174 1;
|
|
121.41.84.79 1;
|
|
121.42.37.14 1;
|
|
121.58.209.165 1;
|
|
121.58.255.67 1;
|
|
121.67.246.139 1;
|
|
122.112.246.91 1;
|
|
122.116.26.186 1;
|
|
122.193.9.41 1;
|
|
122.224.165.228 1;
|
|
122.224.214.18 1;
|
|
122.226.181.164 1;
|
|
122.226.181.165 1;
|
|
122.226.181.166 1;
|
|
122.226.181.167 1;
|
|
123.103.51.69 1;
|
|
123.125.196.210 1;
|
|
123.207.160.217 1;
|
|
123.207.39.209 1;
|
|
123.249.79.214 1;
|
|
123.30.186.165 1;
|
|
123.30.245.45 1;
|
|
123.31.43.25 1;
|
|
1.234.31.65 1;
|
|
1.234.31.70 1;
|
|
1.234.83.222 1;
|
|
123.56.217.114 1;
|
|
123.59.128.10 1;
|
|
123.59.134.76 1;
|
|
123.59.143.157 1;
|
|
123.59.187.114 1;
|
|
123.59.199.40 1;
|
|
123.59.53.43 1;
|
|
123.59.55.83 1;
|
|
123.59.64.175 1;
|
|
123.59.80.248 1;
|
|
124.158.5.112 1;
|
|
124.160.104.74 1;
|
|
124.95.129.105 1;
|
|
125.134.251.45 1;
|
|
125.138.211.245 1;
|
|
125.211.222.103 1;
|
|
125.212.228.165 1;
|
|
125.212.232.73 1;
|
|
125.22.36.42 1;
|
|
125.88.146.140 1;
|
|
125.88.177.95 1;
|
|
128.0.116.86 1;
|
|
128.0.117.36 1;
|
|
128.0.120.105 1;
|
|
128.0.121.163 1;
|
|
128.0.121.171 1;
|
|
128.0.121.217 1;
|
|
128.1.163.61 1;
|
|
128.143.16.75 1;
|
|
128.199.168.156 1;
|
|
128.199.169.197 1;
|
|
128.199.186.30 1;
|
|
128.199.212.120 1;
|
|
128.199.213.187 1;
|
|
128.199.219.197 1;
|
|
128.77.34.95 1;
|
|
128.77.6.76 1;
|
|
129.205.138.194 1;
|
|
130.185.156.115 1;
|
|
131.161.43.34 1;
|
|
13.124.141.10 1;
|
|
132.148.142.117 1;
|
|
132.148.144.96 1;
|
|
132.148.21.101 1;
|
|
132.148.242.150 1;
|
|
132.232.95.27 1;
|
|
13.231.248.85 1;
|
|
133.130.114.67 1;
|
|
134.119.46.205 1;
|
|
134.175.4.105 1;
|
|
134.209.11.118 1;
|
|
134.209.232.210 1;
|
|
134.209.50.242 1;
|
|
134.255.235.69 1;
|
|
136.243.63.48 1;
|
|
13.66.193.177 1;
|
|
13.66.63.216 1;
|
|
13.67.34.43 1;
|
|
13.67.74.53 1;
|
|
13.67.90.28 1;
|
|
13.69.193.20 1;
|
|
137.116.207.109 1;
|
|
137.117.215.210 1;
|
|
137.226.113.12 1;
|
|
137.226.113.26 1;
|
|
137.74.113.23 1;
|
|
137.74.166.182 1;
|
|
137.74.175.67 1;
|
|
137.74.198.136 1;
|
|
137.74.202.165 1;
|
|
137.74.223.238 1;
|
|
137.74.233.235 1;
|
|
137.74.233.252 1;
|
|
137.74.234.8 1;
|
|
137.74.47.60 1;
|
|
137.74.65.133 1;
|
|
13.78.103.72 1;
|
|
13.79.230.20 1;
|
|
138.121.71.4 1;
|
|
138.197.127.59 1;
|
|
138.197.20.0 1;
|
|
138.68.14.54 1;
|
|
138.68.156.105 1;
|
|
138.68.237.168 1;
|
|
138.68.238.4 1;
|
|
138.68.249.156 1;
|
|
138.68.57.194 1;
|
|
138.68.8.233 1;
|
|
138.68.92.227 1;
|
|
138.94.58.133 1;
|
|
139.0.4.182 1;
|
|
13.91.110.135 1;
|
|
139.130.172.49 1;
|
|
13.91.53.213 1;
|
|
139.162.75.112 1;
|
|
139.196.46.138 1;
|
|
139.199.213.62 1;
|
|
139.199.248.123 1;
|
|
139.199.248.209 1;
|
|
139.217.15.94 1;
|
|
13.92.183.81 1;
|
|
139.219.0.120 1;
|
|
139.219.100.104 1;
|
|
139.219.128.173 1;
|
|
139.219.8.52 1;
|
|
13.94.43.10 1;
|
|
139.59.127.29 1;
|
|
139.59.133.66 1;
|
|
139.59.159.216 1;
|
|
139.59.167.38 1;
|
|
139.59.209.242 1;
|
|
139.59.241.163 1;
|
|
139.59.242.49 1;
|
|
139.59.78.70 1;
|
|
139.59.83.175 1;
|
|
139.99.113.83 1;
|
|
139.99.130.143 1;
|
|
139.99.199.141 1;
|
|
139.99.98.249 1;
|
|
139.99.99.145 1;
|
|
140.143.246.199 1;
|
|
141.138.158.105 1;
|
|
14.165.152.106 1;
|
|
14.185.117.96 1;
|
|
142.4.200.211 1;
|
|
142.4.204.122 1;
|
|
142.4.213.48 1;
|
|
142.44.134.139 1;
|
|
142.44.163.101 1;
|
|
142.44.207.84 1;
|
|
142.54.186.26 1;
|
|
142.93.164.209 1;
|
|
142.93.171.125 1;
|
|
142.93.49.13 1;
|
|
142.93.60.248 1;
|
|
142.93.87.64 1;
|
|
142.93.88.170 1;
|
|
144.173.143.28 1;
|
|
144.217.13.82 1;
|
|
144.217.14.14 1;
|
|
144.217.162.205 1;
|
|
144.217.65.92 1;
|
|
144.217.7.226 1;
|
|
144.217.79.233 1;
|
|
144.217.82.205 1;
|
|
144.217.83.0 1;
|
|
144.217.85.183 1;
|
|
144.217.87.93 1;
|
|
144.217.91.168 1;
|
|
144.6.228.121 1;
|
|
145.131.230.79 1;
|
|
145.239.0.239 1;
|
|
145.239.123.117 1;
|
|
145.239.130.49 1;
|
|
145.239.136.98 1;
|
|
145.239.137.89 1;
|
|
145.239.17.121 1;
|
|
145.239.212.20 1;
|
|
145.239.230.16 1;
|
|
145.239.76.62 1;
|
|
145.239.82.107 1;
|
|
145.239.8.229 1;
|
|
145.239.86.220 1;
|
|
145.239.89.89 1;
|
|
145.239.90.16 1;
|
|
145.239.92.188 1;
|
|
145.239.92.239 1;
|
|
145.239.93.12 1;
|
|
145.239.93.247 1;
|
|
146.185.145.41 1;
|
|
146.185.223.79 1;
|
|
146.185.253.122 1;
|
|
146.20.15.118 1;
|
|
14.63.166.243 1;
|
|
14.63.221.184 1;
|
|
14.63.221.39 1;
|
|
14.63.228.101 1;
|
|
147.135.119.100 1;
|
|
147.135.173.236 1;
|
|
147.135.210.84 1;
|
|
147.135.211.27 1;
|
|
147.135.64.62 1;
|
|
147.213.113.76 1;
|
|
147.75.96.90 1;
|
|
148.0.108.121 1;
|
|
149.13.17.161 1;
|
|
149.202.126.72 1;
|
|
149.202.152.219 1;
|
|
149.202.169.211 1;
|
|
149.202.174.248 1;
|
|
149.202.178.129 1;
|
|
149.202.178.136 1;
|
|
149.202.178.186 1;
|
|
149.202.200.143 1;
|
|
149.202.234.211 1;
|
|
149.202.25.57 1;
|
|
149.202.45.162 1;
|
|
149.202.49.30 1;
|
|
149.202.75.205 1;
|
|
149.202.7.83 1;
|
|
149.202.86.215 1;
|
|
149.210.147.123 1;
|
|
149.56.100.153 1;
|
|
149.56.106.45 1;
|
|
149.56.12.204 1;
|
|
149.56.131.129 1;
|
|
149.56.132.134 1;
|
|
149.56.141.180 1;
|
|
149.56.192.219 1;
|
|
149.56.19.71 1;
|
|
149.56.204.150 1;
|
|
149.56.30.130 1;
|
|
149.56.86.166 1;
|
|
149.56.97.26 1;
|
|
149.56.98.93 1;
|
|
150.107.8.23 1;
|
|
150.95.131.96 1;
|
|
150.95.146.154 1;
|
|
150.95.157.94 1;
|
|
151.0.141.215 1;
|
|
151.182.106.5 1;
|
|
151.224.81.112 1;
|
|
151.237.181.128 1;
|
|
151.237.181.185 1;
|
|
151.80.132.215 1;
|
|
151.80.14.196 1;
|
|
151.80.152.143 1;
|
|
151.80.152.189 1;
|
|
151.80.155.3 1;
|
|
151.80.190.160 1;
|
|
151.80.192.116 1;
|
|
151.80.209.237 1;
|
|
151.80.220.213 1;
|
|
151.80.230.2 1;
|
|
151.80.232.83 1;
|
|
151.80.37.219 1;
|
|
151.80.38.149 1;
|
|
151.80.45.85 1;
|
|
151.80.47.186 1;
|
|
151.80.58.173 1;
|
|
151.80.58.88 1;
|
|
151.80.80.3 1;
|
|
151.80.80.7 1;
|
|
152.149.59.146 1;
|
|
153.3.61.164 1;
|
|
154.0.171.164 1;
|
|
154.8.159.71 1;
|
|
155.133.27.150 1;
|
|
155.94.88.58 1;
|
|
156.155.190.7 1;
|
|
156.155.253.221 1;
|
|
156.38.147.110 1;
|
|
157.100.241.220 1;
|
|
157.230.101.83 1;
|
|
157.230.29.186 1;
|
|
158.49.17.235 1;
|
|
158.69.112.202 1;
|
|
158.69.113.199 1;
|
|
158.69.123.240 1;
|
|
158.69.123.25 1;
|
|
158.69.124.9 1;
|
|
158.69.125.77 1;
|
|
158.69.148.206 1;
|
|
158.69.202.201 1;
|
|
158.69.208.212 1;
|
|
158.69.5.136 1;
|
|
158.69.53.42 1;
|
|
158.69.59.90 1;
|
|
158.69.59.92 1;
|
|
158.69.68.189 1;
|
|
158.69.68.249 1;
|
|
158.69.7.126 1;
|
|
158.69.94.28 1;
|
|
158.85.136.67 1;
|
|
158.85.204.249 1;
|
|
159.122.71.24 1;
|
|
159.203.100.52 1;
|
|
159.203.101.0 1;
|
|
159.203.116.244 1;
|
|
159.203.165.206 1;
|
|
159.203.166.216 1;
|
|
159.203.185.59 1;
|
|
159.203.196.100 1;
|
|
159.203.36.38 1;
|
|
159.203.74.187 1;
|
|
159.203.98.228 1;
|
|
159.226.125.73 1;
|
|
159.226.21.146 1;
|
|
159.253.39.245 1;
|
|
159.65.125.60 1;
|
|
159.65.156.144 1;
|
|
159.65.184.238 1;
|
|
159.65.202.67 1;
|
|
159.65.245.203 1;
|
|
159.65.34.82 1;
|
|
159.65.99.152 1;
|
|
159.69.30.254 1;
|
|
159.69.81.18 1;
|
|
159.8.179.119 1;
|
|
159.8.41.180 1;
|
|
159.89.175.92 1;
|
|
159.89.180.93 1;
|
|
159.89.18.60 1;
|
|
159.89.44.76 1;
|
|
159.89.51.68 1;
|
|
160.20.252.243 1;
|
|
162.241.174.96 1;
|
|
162.243.142.143 1;
|
|
162.243.158.198 1;
|
|
162.243.20.97 1;
|
|
162.243.21.95 1;
|
|
162.255.87.220 1;
|
|
163.172.113.71 1;
|
|
163.172.148.154 1;
|
|
163.172.161.181 1;
|
|
163.172.224.41 1;
|
|
163.172.29.150 1;
|
|
163.172.38.211 1;
|
|
163.172.62.130 1;
|
|
163.172.86.176 1;
|
|
163.21.30.1 1;
|
|
163.25.253.4 1;
|
|
163.30.196.168 1;
|
|
163.47.146.236 1;
|
|
164.132.102.125 1;
|
|
164.132.103.243 1;
|
|
164.132.111.178 1;
|
|
164.132.114.155 1;
|
|
164.132.135.199 1;
|
|
164.132.147.120 1;
|
|
164.132.188.204 1;
|
|
164.132.196.164 1;
|
|
164.132.224.157 1;
|
|
164.132.225.151 1;
|
|
164.132.231.84 1;
|
|
164.132.48.41 1;
|
|
164.132.49.78 1;
|
|
164.132.58.90 1;
|
|
164.132.75.34 1;
|
|
164.132.97.4 1;
|
|
164.132.98.35 1;
|
|
164.52.24.164 1;
|
|
165.22.140.156 1;
|
|
165.227.100.224 1;
|
|
165.227.109.151 1;
|
|
165.227.133.157 1;
|
|
165.227.20.176 1;
|
|
165.227.32.81 1;
|
|
165.227.62.195 1;
|
|
165.227.73.144 1;
|
|
165.231.121.128 1;
|
|
165.231.121.187 1;
|
|
165.231.121.196 1;
|
|
165.231.121.230 1;
|
|
165.231.121.3 1;
|
|
165.231.121.54 1;
|
|
165.231.234.185 1;
|
|
165.231.234.20 1;
|
|
165.231.234.237 1;
|
|
165.231.234.62 1;
|
|
165.84.191.236 1;
|
|
166.62.101.80 1;
|
|
166.62.103.147 1;
|
|
166.62.116.24 1;
|
|
166.62.120.26 1;
|
|
166.62.90.10 1;
|
|
167.114.142.33 1;
|
|
167.114.179.237 1;
|
|
167.114.192.248 1;
|
|
167.114.235.25 1;
|
|
167.114.239.199 1;
|
|
167.114.241.241 1;
|
|
167.114.249.132 1;
|
|
167.114.249.225 1;
|
|
167.114.252.40 1;
|
|
167.114.76.175 1;
|
|
167.114.95.218 1;
|
|
167.160.162.191 1;
|
|
167.88.3.65 1;
|
|
167.99.154.189 1;
|
|
167.99.189.57 1;
|
|
167.99.201.146 1;
|
|
167.99.235.251 1;
|
|
167.99.51.3 1;
|
|
167.99.73.206 1;
|
|
168.196.132.27 1;
|
|
169.44.56.181 1;
|
|
169.51.131.214 1;
|
|
169.56.88.250 1;
|
|
169.61.36.7 1;
|
|
170.0.27.167 1;
|
|
170.210.73.180 1;
|
|
171.255.199.129 1;
|
|
172.104.108.109 1;
|
|
172.104.179.221 1;
|
|
172.245.112.33 1;
|
|
172.245.174.183 1;
|
|
172.81.88.1 1;
|
|
173.196.177.69 1;
|
|
173.208.177.59 1;
|
|
173.208.220.131 1;
|
|
173.212.185.241 1;
|
|
173.212.222.48 1;
|
|
173.212.222.57 1;
|
|
173.212.240.87 1;
|
|
173.212.244.172 1;
|
|
173.212.251.56 1;
|
|
173.220.206.162 1;
|
|
173.234.171.18 1;
|
|
173.244.48.65 1;
|
|
173.246.103.138 1;
|
|
173.249.19.57 1;
|
|
173.249.50.165 1;
|
|
173.254.203.75 1;
|
|
173.254.236.4 1;
|
|
173.254.239.2 1;
|
|
173.44.35.37 1;
|
|
173.44.41.235 1;
|
|
173.44.41.238 1;
|
|
173.44.41.243 1;
|
|
174.138.62.132 1;
|
|
174.138.64.179 1;
|
|
174.138.6.8 1;
|
|
174.36.60.111 1;
|
|
175.117.145.239 1;
|
|
175.12.16.235 1;
|
|
175.139.201.77 1;
|
|
175.184.233.107 1;
|
|
175.42.43.218 1;
|
|
176.20.184.196 1;
|
|
176.223.70.186 1;
|
|
176.31.122.135 1;
|
|
176.31.197.128 1;
|
|
176.31.223.177 1;
|
|
176.31.253.170 1;
|
|
176.31.253.41 1;
|
|
176.31.253.95 1;
|
|
176.31.39.23 1;
|
|
176.31.39.77 1;
|
|
176.31.45.49 1;
|
|
176.31.45.51 1;
|
|
176.31.57.43 1;
|
|
176.31.78.54 1;
|
|
177.105.112.6 1;
|
|
177.206.128.131 1;
|
|
177.220.252.122 1;
|
|
177.38.185.103 1;
|
|
177.73.136.228 1;
|
|
177.73.224.38 1;
|
|
177.81.26.244 1;
|
|
178.128.120.205 1;
|
|
178.128.123.84 1;
|
|
178.128.13.61 1;
|
|
178.128.165.111 1;
|
|
178.128.26.209 1;
|
|
178.128.4.109 1;
|
|
178.128.81.57 1;
|
|
178.128.87.175 1;
|
|
178.128.91.123 1;
|
|
178.128.93.241 1;
|
|
178.128.97.71 1;
|
|
178.128.98.86 1;
|
|
178.137.160.2 1;
|
|
178.137.162.120 1;
|
|
178.137.81.70 1;
|
|
178.137.85.67 1;
|
|
178.137.87.242 1;
|
|
178.137.93.108 1;
|
|
178.155.249.205 1;
|
|
178.164.161.164 1;
|
|
178.165.113.164 1;
|
|
178.18.30.186 1;
|
|
178.254.21.252 1;
|
|
178.32.105.63 1;
|
|
178.32.117.75 1;
|
|
178.32.241.164 1;
|
|
178.32.243.118 1;
|
|
178.32.46.62 1;
|
|
178.32.52.218 1;
|
|
178.32.98.31 1;
|
|
178.33.137.202 1;
|
|
178.33.228.67 1;
|
|
178.33.233.146 1;
|
|
178.33.35.0 1;
|
|
178.33.49.219 1;
|
|
178.33.78.255 1;
|
|
178.62.100.85 1;
|
|
178.62.192.218 1;
|
|
178.62.20.238 1;
|
|
178.62.244.178 1;
|
|
178.62.254.48 1;
|
|
178.62.61.110 1;
|
|
178.63.27.46 1;
|
|
178.89.191.77 1;
|
|
179.104.176.66 1;
|
|
179.108.38.59 1;
|
|
179.185.39.196 1;
|
|
180.150.226.116 1;
|
|
180.150.227.246 1;
|
|
180.179.211.2 1;
|
|
180.210.34.35 1;
|
|
180.245.127.179 1;
|
|
180.250.115.75 1;
|
|
180.250.247.43 1;
|
|
180.250.57.166 1;
|
|
180.252.0.245 1;
|
|
180.76.162.111 1;
|
|
180.76.179.219 1;
|
|
180.76.97.79 1;
|
|
180.97.106.39 1;
|
|
180.97.215.110 1;
|
|
181.112.61.162 1;
|
|
181.129.35.170 1;
|
|
181.15.88.133 1;
|
|
181.177.111.186 1;
|
|
181.214.32.54 1;
|
|
181.214.42.59 1;
|
|
181.224.250.124 1;
|
|
18.188.10.92 1;
|
|
182.100.67.201 1;
|
|
182.100.67.235 1;
|
|
182.100.67.59 1;
|
|
182.100.67.60 1;
|
|
182.150.28.230 1;
|
|
182.23.105.66 1;
|
|
182.23.45.72 1;
|
|
182.254.215.222 1;
|
|
182.50.155.54 1;
|
|
182.61.179.84 1;
|
|
182.71.188.10 1;
|
|
182.74.170.203 1;
|
|
182.74.68.35 1;
|
|
182.76.205.94 1;
|
|
183.131.83.5 1;
|
|
183.138.134.134 1;
|
|
183.179.199.225 1;
|
|
183.3.202.170 1;
|
|
183.3.202.185 1;
|
|
183.3.202.197 1;
|
|
183.3.202.201 1;
|
|
183.3.202.88 1;
|
|
183.5.118.98 1;
|
|
183.82.103.144 1;
|
|
184.168.106.44 1;
|
|
184.173.40.70 1;
|
|
184.65.196.22 1;
|
|
184.69.19.14 1;
|
|
184.72.105.200 1;
|
|
184.75.214.146 1;
|
|
185.100.222.110 1;
|
|
185.100.87.190 1;
|
|
185.100.87.245 1;
|
|
185.100.87.247 1;
|
|
185.100.87.248 1;
|
|
185.106.92.118 1;
|
|
185.110.173.158 1;
|
|
185.113.141.158 1;
|
|
185.119.81.11 1;
|
|
185.125.230.37 1;
|
|
185.128.40.182 1;
|
|
185.129.249.185 1;
|
|
185.130.184.210 1;
|
|
185.130.5.191 1;
|
|
185.130.5.246 1;
|
|
185.13.36.80 1;
|
|
185.13.38.222 1;
|
|
185.143.252.100 1;
|
|
185.144.158.32 1;
|
|
185.156.177.59 1;
|
|
185.159.36.2 1;
|
|
185.162.235.206 1;
|
|
185.181.10.141 1;
|
|
185.183.107.92 1;
|
|
185.189.114.98 1;
|
|
185.189.115.37 1;
|
|
185.202.96.119 1;
|
|
185.202.99.84 1;
|
|
185.202.99.94 1;
|
|
185.207.232.232 1;
|
|
185.210.219.134 1;
|
|
185.2.103.165 1;
|
|
185.211.245.166 1;
|
|
185.211.245.197 1;
|
|
185.211.245.199 1;
|
|
185.211.88.119 1;
|
|
1.85.21.39 1;
|
|
185.228.232.226 1;
|
|
185.228.28.32 1;
|
|
185.231.245.14 1;
|
|
185.231.70.253 1;
|
|
185.234.216.28 1;
|
|
185.234.216.29 1;
|
|
185.234.217.102 1;
|
|
185.234.217.105 1;
|
|
185.234.217.106 1;
|
|
185.234.217.107 1;
|
|
185.234.217.108 1;
|
|
185.234.217.114 1;
|
|
185.234.217.125 1;
|
|
185.234.217.126 1;
|
|
185.234.217.127 1;
|
|
185.234.217.132 1;
|
|
185.234.217.149 1;
|
|
185.234.217.151 1;
|
|
185.234.217.152 1;
|
|
185.234.217.160 1;
|
|
185.234.217.164 1;
|
|
185.234.217.192 1;
|
|
185.234.217.203 1;
|
|
185.234.217.21 1;
|
|
185.234.217.218 1;
|
|
185.234.217.28 1;
|
|
185.234.217.29 1;
|
|
185.234.217.31 1;
|
|
185.234.217.32 1;
|
|
185.234.217.33 1;
|
|
185.234.217.34 1;
|
|
185.234.217.45 1;
|
|
185.234.217.58 1;
|
|
185.234.217.64 1;
|
|
185.234.217.67 1;
|
|
185.234.217.73 1;
|
|
185.234.218.125 1;
|
|
185.234.218.40 1;
|
|
185.234.218.41 1;
|
|
185.234.218.42 1;
|
|
185.234.218.43 1;
|
|
185.234.218.44 1;
|
|
185.234.218.54 1;
|
|
185.234.218.55 1;
|
|
185.234.218.56 1;
|
|
185.234.218.62 1;
|
|
185.234.219.222 1;
|
|
185.234.219.226 1;
|
|
185.234.219.230 1;
|
|
185.234.219.231 1;
|
|
185.234.219.232 1;
|
|
185.234.219.233 1;
|
|
185.234.219.234 1;
|
|
185.234.219.235 1;
|
|
185.234.219.37 1;
|
|
185.234.219.39 1;
|
|
185.234.219.42 1;
|
|
185.234.219.43 1;
|
|
185.234.219.44 1;
|
|
185.234.219.45 1;
|
|
185.246.128.25 1;
|
|
185.2.5.12 1;
|
|
185.2.5.15 1;
|
|
185.2.5.24 1;
|
|
185.2.5.37 1;
|
|
185.253.97.242 1;
|
|
185.2.5.40 1;
|
|
185.254.120.6 1;
|
|
185.26.122.68 1;
|
|
185.31.162.123 1;
|
|
185.36.75.105 1;
|
|
185.4.227.218 1;
|
|
185.43.110.51 1;
|
|
185.48.181.170 1;
|
|
185.51.212.2 1;
|
|
185.63.254.19 1;
|
|
185.85.190.132 1;
|
|
185.85.191.201 1;
|
|
185.86.13.213 1;
|
|
185.86.164.100 1;
|
|
185.86.164.101 1;
|
|
185.86.164.102 1;
|
|
185.86.164.103 1;
|
|
185.86.164.104 1;
|
|
185.86.164.106 1;
|
|
185.86.164.107 1;
|
|
185.86.164.108 1;
|
|
185.86.164.109 1;
|
|
185.86.164.110 1;
|
|
185.86.164.98 1;
|
|
185.86.164.99 1;
|
|
185.86.210.111 1;
|
|
185.93.3.123 1;
|
|
186.202.187.208 1;
|
|
186.4.3.197 1;
|
|
186.52.198.142 1;
|
|
186.67.23.122 1;
|
|
187.1.174.180 1;
|
|
187.121.162.238 1;
|
|
187.121.27.171 1;
|
|
187.157.22.131 1;
|
|
187.217.190.121 1;
|
|
187.32.53.122 1;
|
|
187.45.120.58 1;
|
|
187.52.2.242 1;
|
|
187.95.36.187 1;
|
|
188.132.135.28 1;
|
|
188.138.127.28 1;
|
|
188.143.232.27 1;
|
|
188.143.232.32 1;
|
|
188.143.234.155 1;
|
|
188.164.196.153 1;
|
|
188.165.197.221 1;
|
|
188.165.209.216 1;
|
|
188.165.215.143 1;
|
|
188.165.242.200 1;
|
|
188.165.254.127 1;
|
|
188.165.254.65 1;
|
|
188.165.29.110 1;
|
|
188.165.32.74 1;
|
|
188.166.118.192 1;
|
|
188.166.121.128 1;
|
|
188.166.217.80 1;
|
|
188.166.228.28 1;
|
|
188.166.239.168 1;
|
|
188.166.38.103 1;
|
|
188.166.52.150 1;
|
|
188.166.62.12 1;
|
|
188.212.103.222 1;
|
|
188.212.103.45 1;
|
|
188.213.49.39 1;
|
|
188.243.58.117 1;
|
|
188.92.75.240 1;
|
|
188.92.75.248 1;
|
|
188.92.77.235 1;
|
|
188.93.133.214 1;
|
|
188.95.226.94 1;
|
|
189.102.100.154 1;
|
|
189.125.1.14 1;
|
|
189.254.33.157 1;
|
|
189.39.7.100 1;
|
|
190.128.137.10 1;
|
|
190.128.251.170 1;
|
|
190.129.2.114 1;
|
|
190.14.247.90 1;
|
|
190.144.14.170 1;
|
|
190.196.145.74 1;
|
|
190.201.151.145 1;
|
|
190.210.181.231 1;
|
|
190.2.152.163 1;
|
|
190.216.198.146 1;
|
|
190.52.183.220 1;
|
|
190.7.138.138 1;
|
|
190.7.159.170 1;
|
|
191.101.200.196 1;
|
|
191.102.156.168 1;
|
|
191.103.40.26 1;
|
|
191.96.132.126 1;
|
|
192.144.139.95 1;
|
|
192.144.173.202 1;
|
|
192.155.95.28 1;
|
|
192.163.224.116 1;
|
|
192.163.240.55 1;
|
|
192.169.155.230 1;
|
|
192.169.202.1 1;
|
|
192.169.243.116 1;
|
|
192.169.243.214 1;
|
|
192.210.186.151 1;
|
|
192.227.163.146 1;
|
|
192.227.174.110 1;
|
|
192.241.136.24 1;
|
|
192.241.246.120 1;
|
|
192.255.41.80 1;
|
|
192.34.58.215 1;
|
|
192.3.52.232 1;
|
|
192.3.52.245 1;
|
|
192.3.52.253 1;
|
|
192.99.1.38 1;
|
|
192.99.14.119 1;
|
|
192.99.150.120 1;
|
|
192.99.172.169 1;
|
|
192.99.244.120 1;
|
|
192.99.58.114 1;
|
|
192.99.71.15 1;
|
|
192.99.8.153 1;
|
|
193.105.134.97 1;
|
|
193.106.30.99 1;
|
|
193.112.154.67 1;
|
|
193.169.252.100 1;
|
|
193.169.252.113 1;
|
|
193.169.252.115 1;
|
|
193.169.252.142 1;
|
|
193.169.252.143 1;
|
|
193.169.252.145 1;
|
|
193.169.252.146 1;
|
|
193.169.252.147 1;
|
|
193.169.252.148 1;
|
|
193.169.252.149 1;
|
|
193.169.252.180 1;
|
|
193.169.252.181 1;
|
|
193.169.252.183 1;
|
|
193.169.252.184 1;
|
|
193.169.252.185 1;
|
|
193.169.252.186 1;
|
|
193.169.252.187 1;
|
|
193.169.252.188 1;
|
|
193.169.252.189 1;
|
|
193.169.252.76 1;
|
|
193.169.252.77 1;
|
|
193.169.252.81 1;
|
|
193.169.252.82 1;
|
|
193.169.252.83 1;
|
|
193.169.252.94 1;
|
|
193.169.252.95 1;
|
|
193.169.252.96 1;
|
|
193.192.216.254 1;
|
|
193.201.224.12 1;
|
|
193.201.224.158 1;
|
|
193.201.224.199 1;
|
|
193.201.224.206 1;
|
|
193.201.224.208 1;
|
|
193.201.224.211 1;
|
|
193.201.224.212 1;
|
|
193.201.224.213 1;
|
|
193.201.224.214 1;
|
|
193.201.224.216 1;
|
|
193.201.224.218 1;
|
|
193.201.224.225 1;
|
|
193.201.224.236 1;
|
|
193.201.224.241 1;
|
|
193.201.224.246 1;
|
|
193.201.225.54 1;
|
|
193.201.227.177 1;
|
|
193.201.227.89 1;
|
|
193.201.227.92 1;
|
|
193.253.60.124 1;
|
|
193.29.53.14 1;
|
|
193.6.150.26 1;
|
|
193.70.113.237 1;
|
|
193.70.2.161 1;
|
|
193.70.34.209 1;
|
|
193.70.76.158 1;
|
|
193.70.81.160 1;
|
|
193.70.81.234 1;
|
|
193.70.81.238 1;
|
|
193.90.12.115 1;
|
|
194.55.12.45 1;
|
|
194.61.24.252 1;
|
|
194.61.24.253 1;
|
|
195.154.102.207 1;
|
|
195.154.118.186 1;
|
|
195.154.172.153 1;
|
|
195.154.199.128 1;
|
|
195.154.240.184 1;
|
|
195.154.73.102 1;
|
|
195.154.77.81 1;
|
|
195.188.225.233 1;
|
|
195.201.143.48 1;
|
|
195.201.220.228 1;
|
|
195.22.127.231 1;
|
|
195.22.141.33 1;
|
|
195.24.199.66 1;
|
|
195.245.225.95 1;
|
|
195.26.50.246 1;
|
|
195.53.107.60 1;
|
|
195.69.221.254 1;
|
|
195.88.84.78 1;
|
|
196.16.232.86 1;
|
|
196.17.234.39 1;
|
|
196.189.255.26 1;
|
|
196.204.6.175 1;
|
|
196.245.175.189 1;
|
|
196.245.175.190 1;
|
|
196.245.175.193 1;
|
|
196.245.175.88 1;
|
|
196.245.184.97 1;
|
|
196.245.184.98 1;
|
|
196.47.178.191 1;
|
|
197.231.221.211 1;
|
|
197.232.56.157 1;
|
|
197.234.180.174 1;
|
|
198.100.146.147 1;
|
|
198.1.91.6 1;
|
|
198.20.175.146 1;
|
|
198.211.101.109 1;
|
|
198.23.189.18 1;
|
|
198.245.61.60 1;
|
|
198.245.69.163 1;
|
|
198.27.65.93 1;
|
|
198.27.82.105 1;
|
|
198.46.235.95 1;
|
|
198.46.248.209 1;
|
|
198.50.138.27 1;
|
|
198.50.144.54 1;
|
|
199.168.117.101 1;
|
|
199.180.100.148 1;
|
|
199.184.126.3 1;
|
|
199.195.252.213 1;
|
|
200.116.105.213 1;
|
|
200.129.150.3 1;
|
|
200.131.248.2 1;
|
|
200.137.132.36 1;
|
|
200.35.110.58 1;
|
|
200.44.50.155 1;
|
|
200.46.254.107 1;
|
|
200.93.164.2 1;
|
|
201.132.200.243 1;
|
|
201.222.28.113 1;
|
|
202.120.40.169 1;
|
|
202.133.232.154 1;
|
|
202.196.52.8 1;
|
|
202.28.80.169 1;
|
|
202.29.179.85 1;
|
|
202.29.224.50 1;
|
|
202.29.230.216 1;
|
|
202.29.30.206 1;
|
|
202.55.176.202 1;
|
|
202.77.100.235 1;
|
|
202.79.18.69 1;
|
|
202.80.228.67 1;
|
|
202.83.26.130 1;
|
|
202.90.153.91 1;
|
|
203.110.83.178 1;
|
|
203.142.76.28 1;
|
|
203.154.162.168 1;
|
|
203.167.115.179 1;
|
|
203.198.158.147 1;
|
|
203.201.60.14 1;
|
|
203.229.196.132 1;
|
|
203.38.190.252 1;
|
|
204.10.105.9 1;
|
|
204.85.191.30 1;
|
|
205.134.243.100 1;
|
|
206.189.113.98 1;
|
|
206.189.125.33 1;
|
|
206.189.146.101 1;
|
|
206.189.151.206 1;
|
|
206.189.154.22 1;
|
|
206.189.167.156 1;
|
|
206.189.205.127 1;
|
|
206.189.225.249 1;
|
|
206.189.35.27 1;
|
|
206.189.40.35 1;
|
|
206.189.44.77 1;
|
|
206.189.44.94 1;
|
|
206.189.77.106 1;
|
|
206.189.78.206 1;
|
|
206.189.85.147 1;
|
|
206.189.85.177 1;
|
|
206.81.3.84 1;
|
|
207.154.205.218 1;
|
|
207.154.226.21 1;
|
|
207.154.237.85 1;
|
|
207.164.87.242 1;
|
|
207.180.211.161 1;
|
|
207.180.226.88 1;
|
|
207.241.232.40 1;
|
|
207.241.232.41 1;
|
|
208.100.26.230 1;
|
|
208.100.26.231 1;
|
|
208.100.26.232 1;
|
|
209.124.74.29 1;
|
|
209.159.158.26 1;
|
|
209.171.114.142 1;
|
|
209.41.67.92 1;
|
|
209.59.140.201 1;
|
|
209.97.142.250 1;
|
|
210.124.118.212 1;
|
|
210.183.236.30 1;
|
|
2.10.190.248 1;
|
|
210.195.234.169 1;
|
|
210.203.32.104 1;
|
|
210.203.32.190 1;
|
|
210.209.87.46 1;
|
|
210.211.121.20 1;
|
|
210.42.41.133 1;
|
|
210.73.212.35 1;
|
|
210.9.148.206 1;
|
|
211.147.255.42 1;
|
|
211.159.167.87 1;
|
|
211.252.84.20 1;
|
|
212.112.98.158 1;
|
|
212.125.27.66 1;
|
|
212.129.16.22 1;
|
|
212.129.55.80 1;
|
|
212.129.63.132 1;
|
|
212.14.51.3 1;
|
|
212.156.115.58 1;
|
|
212.156.88.46 1;
|
|
212.15.99.53 1;
|
|
212.170.21.181 1;
|
|
212.230.156.5 1;
|
|
212.235.19.204 1;
|
|
212.237.19.237 1;
|
|
212.237.45.250 1;
|
|
212.45.1.10 1;
|
|
212.47.226.25 1;
|
|
212.50.83.152 1;
|
|
212.83.146.163 1;
|
|
212.86.53.163 1;
|
|
212.91.171.178 1;
|
|
213.136.82.51 1;
|
|
213.143.97.179 1;
|
|
213.147.111.187 1;
|
|
213.175.200.18 1;
|
|
213.178.203.20 1;
|
|
213.183.128.161 1;
|
|
213.202.228.56 1;
|
|
213.251.182.110 1;
|
|
213.32.10.113 1;
|
|
213.32.46.100 1;
|
|
213.32.55.100 1;
|
|
213.32.61.253 1;
|
|
213.32.71.170 1;
|
|
213.32.72.47 1;
|
|
213.47.212.59 1;
|
|
213.55.214.171 1;
|
|
213.57.26.237 1;
|
|
216.163.199.159 1;
|
|
216.195.25.93 1;
|
|
216.218.147.196 1;
|
|
216.224.166.11 1;
|
|
216.244.66.240 1;
|
|
216.245.211.174 1;
|
|
217.115.86.6 1;
|
|
217.14.208.84 1;
|
|
217.147.168.40 1;
|
|
217.155.203.116 1;
|
|
217.160.180.118 1;
|
|
217.182.165.158 1;
|
|
217.182.171.144 1;
|
|
217.182.173.240 1;
|
|
217.182.25.1 1;
|
|
217.182.252.123 1;
|
|
217.182.4.122 1;
|
|
217.182.71.2 1;
|
|
217.182.74.96 1;
|
|
217.25.233.185 1;
|
|
217.28.221.138 1;
|
|
217.41.31.72 1;
|
|
217.61.98.145 1;
|
|
217.64.142.251 1;
|
|
217.66.158.221 1;
|
|
217.67.201.162 1;
|
|
217.67.66.197 1;
|
|
217.92.40.161 1;
|
|
217.96.70.250 1;
|
|
218.147.173.48 1;
|
|
218.158.47.3 1;
|
|
218.25.208.90 1;
|
|
218.28.238.170 1;
|
|
218.38.121.17 1;
|
|
218.38.12.159 1;
|
|
218.4.117.26 1;
|
|
218.54.175.51 1;
|
|
218.60.56.174 1;
|
|
218.65.30.107 1;
|
|
218.65.30.23 1;
|
|
218.65.30.38 1;
|
|
218.65.30.61 1;
|
|
218.65.30.92 1;
|
|
218.87.109.253 1;
|
|
218.87.109.60 1;
|
|
218.87.111.116 1;
|
|
218.88.164.159 1;
|
|
219.138.116.130 1;
|
|
219.143.69.56 1;
|
|
219.148.59.154 1;
|
|
219.251.4.92 1;
|
|
220.117.253.41 1;
|
|
220.120.106.254 1;
|
|
220.124.222.222 1;
|
|
220.128.119.251 1;
|
|
220.130.148.106 1;
|
|
220.135.90.91 1;
|
|
220.159.23.125 1;
|
|
220.181.124.1 1;
|
|
220.87.206.62 1;
|
|
221.0.183.42 1;
|
|
221.194.44.211 1;
|
|
221.194.44.232 1;
|
|
221.194.47.205 1;
|
|
221.194.47.221 1;
|
|
221.194.47.236 1;
|
|
221.194.47.239 1;
|
|
221.203.142.133 1;
|
|
221.203.142.70 1;
|
|
221.203.3.102 1;
|
|
221.229.162.7 1;
|
|
221.229.166.101 1;
|
|
221.229.166.98 1;
|
|
221.235.189.176 1;
|
|
221.5.37.194 1;
|
|
222.112.8.73 1;
|
|
222.186.129.234 1;
|
|
222.186.130.242 1;
|
|
222.186.21.143 1;
|
|
222.186.21.200 1;
|
|
222.186.21.31 1;
|
|
222.186.21.61 1;
|
|
222.186.31.136 1;
|
|
222.186.3.184 1;
|
|
222.186.55.169 1;
|
|
222.186.56.117 1;
|
|
222.186.56.141 1;
|
|
222.186.56.42 1;
|
|
222.186.56.87 1;
|
|
222.187.198.50 1;
|
|
222.195.76.28 1;
|
|
222.237.174.91 1;
|
|
222.252.30.117 1;
|
|
222.60.95.243 1;
|
|
223.146.71.5 1;
|
|
223.197.203.28 1;
|
|
223.95.116.176 1;
|
|
23.110.213.90 1;
|
|
23.229.62.250 1;
|
|
23.229.73.68 1;
|
|
23.245.152.154 1;
|
|
23.245.193.22 1;
|
|
23.247.107.98 1;
|
|
23.247.5.42 1;
|
|
23.250.23.124 1;
|
|
23.253.174.219 1;
|
|
23.83.89.174 1;
|
|
23.83.89.84 1;
|
|
23.90.46.236 1;
|
|
23.94.69.34 1;
|
|
23.95.21.136 1;
|
|
23.96.203.238 1;
|
|
23.97.164.84 1;
|
|
23.98.146.21 1;
|
|
24.10.158.236 1;
|
|
24.137.210.173 1;
|
|
24.15.142.205 1;
|
|
27.115.110.69 1;
|
|
27.147.129.54 1;
|
|
27.17.7.70 1;
|
|
27.255.67.21 1;
|
|
27.255.81.146 1;
|
|
27.255.94.166 1;
|
|
27.72.24.93 1;
|
|
27.72.64.32 1;
|
|
27.96.91.36 1;
|
|
2.82.143.65 1;
|
|
31.131.24.168 1;
|
|
31.134.191.119 1;
|
|
31.134.41.47 1;
|
|
31.135.214.120 1;
|
|
31.14.141.55 1;
|
|
31.146.174.158 1;
|
|
31.148.5.122 1;
|
|
31.168.220.77 1;
|
|
31.168.73.2 1;
|
|
31.170.160.209 1;
|
|
31.173.81.184 1;
|
|
31.201.120.191 1;
|
|
31.210.215.251 1;
|
|
31.210.220.210 1;
|
|
3.214.34.28 1;
|
|
34.207.204.29 1;
|
|
34.76.215.94 1;
|
|
35.154.134.64 1;
|
|
35.154.165.208 1;
|
|
35.154.199.109 1;
|
|
35.184.172.244 1;
|
|
35.185.197.17 1;
|
|
35.192.41.81 1;
|
|
35.193.153.123 1;
|
|
35.196.47.242 1;
|
|
35.198.114.216 1;
|
|
35.201.10.199 1;
|
|
35.204.52.77 1;
|
|
35.205.201.147 1;
|
|
35.221.19.109 1;
|
|
35.229.34.225 1;
|
|
36.111.190.229 1;
|
|
37.110.140.31 1;
|
|
37.115.124.231 1;
|
|
37.115.184.19 1;
|
|
37.115.185.236 1;
|
|
37.115.188.53 1;
|
|
37.115.191.132 1;
|
|
37.1.200.139 1;
|
|
37.139.9.113 1;
|
|
37.144.77.188 1;
|
|
37.147.98.34 1;
|
|
37.153.151.24 1;
|
|
37.18.252.174 1;
|
|
37.187.0.29 1;
|
|
37.187.105.132 1;
|
|
37.187.109.147 1;
|
|
37.187.113.94 1;
|
|
37.187.126.3 1;
|
|
37.187.126.99 1;
|
|
37.187.177.178 1;
|
|
37.187.225.54 1;
|
|
37.187.25.138 1;
|
|
37.187.37.210 1;
|
|
37.187.56.139 1;
|
|
37.192.242.69 1;
|
|
37.193.201.121 1;
|
|
37.200.76.41 1;
|
|
37.203.214.247 1;
|
|
37.203.239.192 1;
|
|
37.205.177.106 1;
|
|
37.208.47.117 1;
|
|
37.46.32.127 1;
|
|
37.58.81.100 1;
|
|
37.59.107.31 1;
|
|
37.59.148.191 1;
|
|
37.59.36.9 1;
|
|
37.59.46.75 1;
|
|
37.59.61.129 1;
|
|
37.59.69.1 1;
|
|
37.59.9.162 1;
|
|
37.72.179.170 1;
|
|
37.76.142.95 1;
|
|
37.78.12.253 1;
|
|
38.108.108.178 1;
|
|
39.104.17.56 1;
|
|
39.106.121.173 1;
|
|
40.114.34.133 1;
|
|
40.117.114.0 1;
|
|
40.121.178.68 1;
|
|
40.73.64.190 1;
|
|
40.86.97.169 1;
|
|
40.87.85.25 1;
|
|
41.184.35.31 1;
|
|
41.203.216.86 1;
|
|
41.216.141.2 1;
|
|
41.221.168.159 1;
|
|
41.58.148.3 1;
|
|
4.16.205.42 1;
|
|
41.71.66.4 1;
|
|
41.71.77.165 1;
|
|
41.77.115.114 1;
|
|
41.79.4.15 1;
|
|
42.159.85.237 1;
|
|
42.55.136.241 1;
|
|
42.56.92.103 1;
|
|
42.56.92.29 1;
|
|
42.96.129.215 1;
|
|
43.229.53.20 1;
|
|
45.114.11.18 1;
|
|
45.119.212.105 1;
|
|
45.225.35.253 1;
|
|
45.227.253.251 1;
|
|
45.227.254.252 1;
|
|
45.35.20.139 1;
|
|
45.35.20.140 1;
|
|
45.35.33.58 1;
|
|
45.41.87.190 1;
|
|
45.41.92.66 1;
|
|
45.4.28.6 1;
|
|
45.42.91.42 1;
|
|
45.43.236.210 1;
|
|
45.43.239.3 1;
|
|
45.55.182.97 1;
|
|
45.55.192.88 1;
|
|
45.55.198.217 1;
|
|
45.55.235.208 1;
|
|
45.55.241.175 1;
|
|
45.55.44.142 1;
|
|
45.55.47.28 1;
|
|
45.55.63.121 1;
|
|
45.6.84.14 1;
|
|
45.72.23.163 1;
|
|
45.77.7.55 1;
|
|
46.101.119.15 1;
|
|
46.101.139.133 1;
|
|
46.101.146.4 1;
|
|
46.101.182.119 1;
|
|
46.101.231.197 1;
|
|
46.101.23.208 1;
|
|
46.101.47.213 1;
|
|
46.101.95.173 1;
|
|
46.105.121.42 1;
|
|
46.105.123.124 1;
|
|
46.105.154.69 1;
|
|
46.105.17.52 1;
|
|
46.105.252.106 1;
|
|
46.105.29.207 1;
|
|
46.105.86.227 1;
|
|
46.109.20.103 1;
|
|
46.118.115.22 1;
|
|
46.118.117.217 1;
|
|
46.118.155.165 1;
|
|
46.118.203.200 1;
|
|
46.119.119.241 1;
|
|
46.119.124.124 1;
|
|
46.119.125.32 1;
|
|
46.146.16.36 1;
|
|
46.146.196.150 1;
|
|
46.146.239.182 1;
|
|
46.146.244.222 1;
|
|
46.149.34.245 1;
|
|
46.151.24.167 1;
|
|
46.151.24.177 1;
|
|
46.151.65.183 1;
|
|
46.151.80.201 1;
|
|
46.161.9.31 1;
|
|
46.165.228.89 1;
|
|
46.171.25.26 1;
|
|
46.172.192.80 1;
|
|
46.172.195.80 1;
|
|
46.172.64.35 1;
|
|
46.173.1.213 1;
|
|
46.173.64.157 1;
|
|
46.173.67.128 1;
|
|
46.181.125.45 1;
|
|
46.181.167.10 1;
|
|
46.18.201.225 1;
|
|
46.191.204.8 1;
|
|
46.208.252.197 1;
|
|
46.219.50.112 1;
|
|
46.219.99.56 1;
|
|
46.229.144.232 1;
|
|
46.229.164.100 1;
|
|
46.229.164.101 1;
|
|
46.229.164.102 1;
|
|
46.229.164.98 1;
|
|
46.229.164.99 1;
|
|
46.23.155.208 1;
|
|
46.242.13.83 1;
|
|
46.242.48.148 1;
|
|
46.29.250.33 1;
|
|
46.32.66.3 1;
|
|
46.32.67.136 1;
|
|
46.37.128.73 1;
|
|
46.45.15.160 1;
|
|
46.48.127.70 1;
|
|
46.52.134.6 1;
|
|
46.61.152.185 1;
|
|
46.61.242.150 1;
|
|
46.72.158.9 1;
|
|
46.8.45.98 1;
|
|
46.93.107.65 1;
|
|
47.105.50.212 1;
|
|
47.180.162.186 1;
|
|
47.203.95.143 1;
|
|
47.205.245.164 1;
|
|
47.254.147.224 1;
|
|
47.74.182.171 1;
|
|
4.78.193.138 1;
|
|
47.88.221.55 1;
|
|
47.90.102.190 1;
|
|
49.204.80.142 1;
|
|
49.247.210.83 1;
|
|
49.7.0.30 1;
|
|
50.171.24.221 1;
|
|
50.192.119.251 1;
|
|
50.202.207.81 1;
|
|
50.203.178.234 1;
|
|
50.22.201.133 1;
|
|
50.248.201.173 1;
|
|
50.63.185.184 1;
|
|
50.77.233.185 1;
|
|
5.103.30.101 1;
|
|
5.104.142.99 1;
|
|
5.104.206.2 1;
|
|
5.10.78.52 1;
|
|
51.15.10.239 1;
|
|
51.15.113.61 1;
|
|
51.15.136.169 1;
|
|
51.15.147.154 1;
|
|
51.15.153.65 1;
|
|
51.15.185.27 1;
|
|
51.15.191.189 1;
|
|
51.15.197.81 1;
|
|
51.15.199.88 1;
|
|
51.15.202.254 1;
|
|
51.15.205.186 1;
|
|
51.15.227.154 1;
|
|
51.15.231.244 1;
|
|
51.15.235.91 1;
|
|
51.15.237.133 1;
|
|
51.15.251.165 1;
|
|
51.15.34.19 1;
|
|
51.15.56.143 1;
|
|
51.15.80.123 1;
|
|
51.158.21.96 1;
|
|
51.254.102.112 1;
|
|
51.254.124.86 1;
|
|
51.254.143.166 1;
|
|
51.254.147.85 1;
|
|
51.254.149.60 1;
|
|
51.254.155.40 1;
|
|
51.254.205.41 1;
|
|
51.254.210.211 1;
|
|
51.254.217.7 1;
|
|
51.254.252.178 1;
|
|
51.254.39.129 1;
|
|
51.254.47.198 1;
|
|
51.254.97.224 1;
|
|
51.254.98.26 1;
|
|
51.254.99.33 1;
|
|
51.255.0.147 1;
|
|
51.255.103.70 1;
|
|
51.255.143.163 1;
|
|
51.255.166.189 1;
|
|
51.255.171.209 1;
|
|
51.255.172.246 1;
|
|
51.255.192.48 1;
|
|
51.255.33.31 1;
|
|
51.255.36.135 1;
|
|
51.255.42.134 1;
|
|
51.255.48.153 1;
|
|
51.255.65.136 1;
|
|
51.255.83.104 1;
|
|
51.255.83.44 1;
|
|
51.255.91.75 1;
|
|
51.255.96.244 1;
|
|
5.129.86.220 1;
|
|
5.135.152.45 1;
|
|
5.135.167.146 1;
|
|
5.135.180.133 1;
|
|
5.135.183.135 1;
|
|
5.135.183.29 1;
|
|
5.135.245.237 1;
|
|
5.135.253.154 1;
|
|
51.38.130.199 1;
|
|
51.38.130.52 1;
|
|
51.38.131.124 1;
|
|
51.38.131.98 1;
|
|
51.38.132.168 1;
|
|
51.38.133.136 1;
|
|
51.38.190.99 1;
|
|
51.38.200.250 1;
|
|
51.38.215.64 1;
|
|
51.38.224.237 1;
|
|
51.38.226.89 1;
|
|
51.38.230.224 1;
|
|
51.38.236.43 1;
|
|
51.38.237.46 1;
|
|
51.38.40.38 1;
|
|
51.38.48.127 1;
|
|
51.38.50.182 1;
|
|
51.38.51.182 1;
|
|
51.38.51.73 1;
|
|
51.38.58.42 1;
|
|
51.38.64.33 1;
|
|
51.38.68.96 1;
|
|
51.38.81.250 1;
|
|
51.38.99.169 1;
|
|
5.140.233.110 1;
|
|
5.141.200.248 1;
|
|
5.141.211.185 1;
|
|
5.141.212.216 1;
|
|
5.141.219.88 1;
|
|
5.141.226.86 1;
|
|
5.141.98.229 1;
|
|
5.143.39.32 1;
|
|
5.144.97.4 1;
|
|
5.153.233.10 1;
|
|
5.153.233.114 1;
|
|
5.153.233.130 1;
|
|
5.153.233.18 1;
|
|
5.153.233.26 1;
|
|
5.153.233.34 1;
|
|
5.153.233.42 1;
|
|
5.153.233.50 1;
|
|
5.153.233.58 1;
|
|
5.153.233.70 1;
|
|
5.153.233.78 1;
|
|
5.153.233.98 1;
|
|
5.157.29.28 1;
|
|
5.157.29.72 1;
|
|
5.158.126.149 1;
|
|
5.164.180.145 1;
|
|
5.166.144.231 1;
|
|
5.166.192.19 1;
|
|
5.166.204.153 1;
|
|
5.166.213.182 1;
|
|
5.167.99.7 1;
|
|
51.68.114.235 1;
|
|
51.68.123.198 1;
|
|
51.68.126.225 1;
|
|
51.68.138.243 1;
|
|
51.68.139.249 1;
|
|
51.68.172.58 1;
|
|
51.68.189.39 1;
|
|
51.68.197.225 1;
|
|
51.68.226.205 1;
|
|
5.172.20.190 1;
|
|
5.175.109.214 1;
|
|
51.75.121.162 1;
|
|
51.75.160.218 1;
|
|
51.75.21.57 1;
|
|
51.75.250.174 1;
|
|
51.75.29.61 1;
|
|
51.75.68.150 1;
|
|
51.75.78.200 1;
|
|
51.75.78.201 1;
|
|
51.77.148.240 1;
|
|
51.77.202.135 1;
|
|
51.77.222.160 1;
|
|
51.77.2.7 1;
|
|
5.18.213.96 1;
|
|
51.83.71.37 1;
|
|
51.83.94.102 1;
|
|
51.83.94.103 1;
|
|
51.83.99.119 1;
|
|
5.188.10.156 1;
|
|
5.188.136.151 1;
|
|
5.188.203.113 1;
|
|
5.188.203.114 1;
|
|
5.188.207.23 1;
|
|
5.188.62.117 1;
|
|
5.188.86.36 1;
|
|
5.189.150.125 1;
|
|
5.189.150.217 1;
|
|
5.189.155.246 1;
|
|
5.189.156.204 1;
|
|
5.18.97.248 1;
|
|
5.196.125.195 1;
|
|
5.196.14.8 1;
|
|
5.196.188.44 1;
|
|
5.196.193.54 1;
|
|
5.196.196.128 1;
|
|
5.196.226.89 1;
|
|
5.196.53.17 1;
|
|
5.196.6.95 1;
|
|
5.196.70.227 1;
|
|
5.196.95.183 1;
|
|
5.196.95.231 1;
|
|
52.10.103.213 1;
|
|
52.160.108.16 1;
|
|
52.160.91.134 1;
|
|
52.168.177.217 1;
|
|
52.171.223.45 1;
|
|
52.206.101.20 1;
|
|
52.21.230.131 1;
|
|
52.213.181.184 1;
|
|
52.221.29.220 1;
|
|
52.231.184.181 1;
|
|
52.3.252.121 1;
|
|
52.41.190.29 1;
|
|
52.4.24.238 1;
|
|
52.66.24.221 1;
|
|
52.80.49.191 1;
|
|
52.90.109.172 1;
|
|
52.91.82.49 1;
|
|
5.3.152.16 1;
|
|
5.35.30.176 1;
|
|
5.35.88.217 1;
|
|
5.39.67.11 1;
|
|
5.39.6.89 1;
|
|
5.39.80.99 1;
|
|
5.39.87.71 1;
|
|
5.39.92.92 1;
|
|
54.145.64.204 1;
|
|
54.149.161.72 1;
|
|
54.156.15.50 1;
|
|
54.159.107.163 1;
|
|
54.159.167.42 1;
|
|
54.169.145.191 1;
|
|
54.172.209.166 1;
|
|
54.173.164.79 1;
|
|
54.175.70.228 1;
|
|
54.187.155.230 1;
|
|
54.187.213.44 1;
|
|
54.197.9.142 1;
|
|
54.204.128.230 1;
|
|
54.208.251.49 1;
|
|
54.210.66.151 1;
|
|
54.211.65.139 1;
|
|
54.221.174.156 1;
|
|
54.36.101.230 1;
|
|
54.36.133.103 1;
|
|
54.36.151.64 1;
|
|
54.36.190.156 1;
|
|
54.36.191.151 1;
|
|
54.36.193.246 1;
|
|
54.36.198.40 1;
|
|
54.36.250.91 1;
|
|
54.36.89.141 1;
|
|
54.37.100.246 1;
|
|
54.37.10.110 1;
|
|
54.37.128.11 1;
|
|
54.37.134.103 1;
|
|
54.37.13.62 1;
|
|
54.37.139.198 1;
|
|
54.37.149.75 1;
|
|
54.37.161.71 1;
|
|
54.37.164.219 1;
|
|
54.37.166.55 1;
|
|
54.37.191.248 1;
|
|
54.37.226.230 1;
|
|
54.37.235.90 1;
|
|
54.37.254.57 1;
|
|
54.37.30.7 1;
|
|
54.37.46.229 1;
|
|
54.37.67.113 1;
|
|
54.37.67.211 1;
|
|
54.37.75.165 1;
|
|
54.37.82.213 1;
|
|
54.37.9.157 1;
|
|
54.37.9.246 1;
|
|
54.38.11.249 1;
|
|
54.38.113.13 1;
|
|
54.38.156.88 1;
|
|
54.38.159.243 1;
|
|
54.38.181.118 1;
|
|
54.38.184.63 1;
|
|
54.38.185.123 1;
|
|
54.38.185.150 1;
|
|
54.38.187.146 1;
|
|
54.38.212.149 1;
|
|
54.38.238.92 1;
|
|
54.38.244.150 1;
|
|
54.38.31.134 1;
|
|
54.38.33.63 1;
|
|
54.38.39.241 1;
|
|
54.38.52.101 1;
|
|
54.38.53.21 1;
|
|
54.38.55.127 1;
|
|
54.38.90.66 1;
|
|
54.39.167.115 1;
|
|
54.39.179.91 1;
|
|
54.39.196.33 1;
|
|
54.39.23.191 1;
|
|
54.39.23.199 1;
|
|
54.39.99.246 1;
|
|
5.44.168.93 1;
|
|
5.44.169.231 1;
|
|
5.44.169.42 1;
|
|
5.44.170.69 1;
|
|
5.44.174.45 1;
|
|
5.44.174.95 1;
|
|
5.48.245.205 1;
|
|
54.95.33.77 1;
|
|
5.79.244.70 1;
|
|
58.117.73.8 1;
|
|
58.16.83.211 1;
|
|
58.215.218.22 1;
|
|
58.218.198.138 1;
|
|
58.218.198.141 1;
|
|
58.218.198.150 1;
|
|
58.218.198.165 1;
|
|
58.218.198.168 1;
|
|
58.218.198.185 1;
|
|
58.218.199.166 1;
|
|
58.218.199.96 1;
|
|
58.218.204.107 1;
|
|
58.218.204.211 1;
|
|
58.218.204.248 1;
|
|
58.218.204.30 1;
|
|
58.218.204.80 1;
|
|
58.218.205.101 1;
|
|
58.218.205.97 1;
|
|
58.218.211.166 1;
|
|
58.218.211.198 1;
|
|
58.218.211.244 1;
|
|
58.218.211.38 1;
|
|
58.221.199.242 1;
|
|
58.242.83.15 1;
|
|
58.242.83.18 1;
|
|
58.242.83.26 1;
|
|
58.242.83.27 1;
|
|
58.242.83.28 1;
|
|
58.242.83.32 1;
|
|
58.242.83.34 1;
|
|
58.242.83.35 1;
|
|
58.242.83.36 1;
|
|
58.242.83.37 1;
|
|
58.242.83.38 1;
|
|
58.242.83.39 1;
|
|
58.250.79.7 1;
|
|
58.27.217.75 1;
|
|
58.27.48.16 1;
|
|
58.48.177.62 1;
|
|
58.59.2.26 1;
|
|
58.64.163.132 1;
|
|
58.87.93.52 1;
|
|
59.110.237.76 1;
|
|
59.120.243.8 1;
|
|
59.124.231.152 1;
|
|
59.125.57.148 1;
|
|
5.9.158.75 1;
|
|
59.173.19.39 1;
|
|
59.45.79.116 1;
|
|
59.45.79.21 1;
|
|
59.45.79.36 1;
|
|
59.45.79.40 1;
|
|
59.45.79.52 1;
|
|
59.45.79.69 1;
|
|
59.46.13.65 1;
|
|
59.47.0.149 1;
|
|
59.47.0.152 1;
|
|
59.47.0.222 1;
|
|
59.47.226.16 1;
|
|
59.47.5.229 1;
|
|
59.47.5.236 1;
|
|
59.49.129.247 1;
|
|
59.56.110.68 1;
|
|
59.63.188.44 1;
|
|
59.63.188.53 1;
|
|
60.15.239.190 1;
|
|
60.169.74.139 1;
|
|
60.191.249.244 1;
|
|
60.194.89.122 1;
|
|
60.251.43.70 1;
|
|
60.251.56.44 1;
|
|
61.0.236.231 1;
|
|
61.12.84.13 1;
|
|
61.155.203.54 1;
|
|
61.160.247.34 1;
|
|
61.177.172.188 1;
|
|
61.177.172.60 1;
|
|
61.177.172.86 1;
|
|
61.234.37.3 1;
|
|
61.35.89.157 1;
|
|
61.72.255.26 1;
|
|
61.75.30.52 1;
|
|
61.76.169.138 1;
|
|
61.78.63.147 1;
|
|
62.102.148.152 1;
|
|
62.102.148.164 1;
|
|
62.109.13.73 1;
|
|
62.118.139.0 1;
|
|
62.118.139.7 1;
|
|
62.119.14.198 1;
|
|
62.140.230.163 1;
|
|
62.148.148.19 1;
|
|
62.177.43.154 1;
|
|
62.192.232.99 1;
|
|
62.210.107.56 1;
|
|
62.210.108.172 1;
|
|
62.210.11.28 1;
|
|
62.210.123.127 1;
|
|
62.210.130.211 1;
|
|
62.210.131.54 1;
|
|
62.210.15.96 1;
|
|
62.210.162.209 1;
|
|
62.210.162.37 1;
|
|
62.210.167.232 1;
|
|
62.210.169.48 1;
|
|
62.210.178.11 1;
|
|
62.210.189.101 1;
|
|
62.210.214.136 1;
|
|
62.210.246.39 1;
|
|
62.210.251.42 1;
|
|
62.210.79.236 1;
|
|
62.210.80.21 1;
|
|
62.210.82.104 1;
|
|
62.218.23.244 1;
|
|
62.233.168.181 1;
|
|
62.24.102.106 1;
|
|
62.245.47.13 1;
|
|
62.32.1.150 1;
|
|
62.33.1.14 1;
|
|
62.76.144.115 1;
|
|
62.80.184.198 1;
|
|
62.89.28.108 1;
|
|
62.94.206.57 1;
|
|
63.135.16.12 1;
|
|
63.250.83.212 1;
|
|
64.13.139.226 1;
|
|
64.68.50.128 1;
|
|
65.39.196.86 1;
|
|
65.74.175.205 1;
|
|
66.111.41.200 1;
|
|
66.186.228.194 1;
|
|
66.70.179.168 1;
|
|
66.70.230.144 1;
|
|
66.96.209.252 1;
|
|
67.149.3.37 1;
|
|
67.197.202.205 1;
|
|
67.197.204.134 1;
|
|
67.205.153.81 1;
|
|
68.180.229.178 1;
|
|
68.180.229.185 1;
|
|
68.183.113.232 1;
|
|
68.183.223.12 1;
|
|
68.60.103.4 1;
|
|
69.12.77.220 1;
|
|
69.146.244.126 1;
|
|
69.172.231.58 1;
|
|
69.197.139.202 1;
|
|
69.197.169.202 1;
|
|
69.7.31.254 1;
|
|
69.90.223.232 1;
|
|
70.35.201.155 1;
|
|
70.35.207.236 1;
|
|
70.50.15.181 1;
|
|
70.75.96.67 1;
|
|
70.90.165.236 1;
|
|
71.173.86.60 1;
|
|
71.226.159.44 1;
|
|
71.231.68.139 1;
|
|
71.244.49.72 1;
|
|
71.6.202.198 1;
|
|
72.13.200.13 1;
|
|
72.18.132.221 1;
|
|
72.53.158.103 1;
|
|
73.114.79.156 1;
|
|
73.158.127.66 1;
|
|
73.2.139.100 1;
|
|
73.81.203.250 1;
|
|
74.208.128.190 1;
|
|
74.208.171.39 1;
|
|
75.101.185.53 1;
|
|
75.76.246.228 1;
|
|
76.126.126.180 1;
|
|
77.108.83.90 1;
|
|
77.121.232.181 1;
|
|
77.129.137.229 1;
|
|
77.164.209.69 1;
|
|
77.222.105.24 1;
|
|
77.222.114.140 1;
|
|
77.222.114.95 1;
|
|
77.222.115.133 1;
|
|
77.222.96.142 1;
|
|
77.222.97.5 1;
|
|
77.232.48.86 1;
|
|
77.242.219.206 1;
|
|
77.243.102.35 1;
|
|
77.247.181.162 1;
|
|
77.34.58.238 1;
|
|
77.37.207.127 1;
|
|
77.39.127.154 1;
|
|
77.41.153.178 1;
|
|
77.43.20.234 1;
|
|
77.45.223.32 1;
|
|
77.45.233.191 1;
|
|
77.55.215.137 1;
|
|
77.55.223.233 1;
|
|
77.68.28.249 1;
|
|
77.72.244.71 1;
|
|
77.73.111.254 1;
|
|
77.82.149.146 1;
|
|
77.87.170.200 1;
|
|
77.88.5.2 1;
|
|
77.91.192.78 1;
|
|
77.94.198.197 1;
|
|
77.94.216.215 1;
|
|
78.110.163.196 1;
|
|
78.130.225.195 1;
|
|
78.137.5.38 1;
|
|
78.138.129.77 1;
|
|
78.138.169.142 1;
|
|
78.140.20.128 1;
|
|
78.145.233.109 1;
|
|
78.170.50.79 1;
|
|
78.186.32.133 1;
|
|
78.217.134.141 1;
|
|
78.235.194.238 1;
|
|
78.29.122.137 1;
|
|
78.29.18.102 1;
|
|
78.56.78.115 1;
|
|
78.58.143.166 1;
|
|
78.84.122.20 1;
|
|
78.85.129.11 1;
|
|
79.1.194.178 1;
|
|
79.120.176.38 1;
|
|
79.120.37.34 1;
|
|
79.120.76.114 1;
|
|
79.122.168.14 1;
|
|
79.130.106.42 1;
|
|
79.134.207.42 1;
|
|
79.134.3.25 1;
|
|
79.137.109.83 1;
|
|
79.137.216.219 1;
|
|
79.137.51.66 1;
|
|
79.139.225.139 1;
|
|
79.143.191.224 1;
|
|
79.161.15.172 1;
|
|
79.181.62.153 1;
|
|
79.198.139.157 1;
|
|
79.30.172.25 1;
|
|
79.6.172.120 1;
|
|
79.78.143.1 1;
|
|
79.7.97.222 1;
|
|
80.15.190.203 1;
|
|
80.153.183.23 1;
|
|
80.15.46.247 1;
|
|
80.211.103.236 1;
|
|
80.211.180.115 1;
|
|
80.211.181.14 1;
|
|
80.211.189.123 1;
|
|
80.211.196.238 1;
|
|
80.211.251.249 1;
|
|
80.211.254.233 1;
|
|
80.211.69.213 1;
|
|
80.211.82.143 1;
|
|
80.240.104.226 1;
|
|
80.240.217.163 1;
|
|
80.250.213.58 1;
|
|
80.251.56.187 1;
|
|
80.254.172.212 1;
|
|
80.254.58.66 1;
|
|
80.64.18.225 1;
|
|
80.67.220.77 1;
|
|
80.67.250.109 1;
|
|
80.76.179.153 1;
|
|
80.76.191.89 1;
|
|
80.77.157.82 1;
|
|
80.78.241.214 1;
|
|
80.78.73.116 1;
|
|
80.82.77.139 1;
|
|
80.91.166.224 1;
|
|
80.95.210.75 1;
|
|
81.132.138.121 1;
|
|
81.177.127.236 1;
|
|
81.177.127.80 1;
|
|
81.200.30.233 1;
|
|
81.200.82.163 1;
|
|
81.203.113.37 1;
|
|
81.23.107.110 1;
|
|
81.231.155.182 1;
|
|
81.248.28.61 1;
|
|
81.25.45.50 1;
|
|
81.25.46.152 1;
|
|
81.255.105.165 1;
|
|
81.28.170.249 1;
|
|
81.30.217.84 1;
|
|
81.47.128.178 1;
|
|
81.88.116.30 1;
|
|
81.88.144.71 1;
|
|
81.95.135.70 1;
|
|
82.112.32.45 1;
|
|
82.114.78.68 1;
|
|
82.125.207.6 1;
|
|
82.125.78.115 1;
|
|
82.127.105.104 1;
|
|
82.127.46.131 1;
|
|
82.138.1.118 1;
|
|
82.145.46.102 1;
|
|
82.145.72.180 1;
|
|
82.147.78.11 1;
|
|
82.151.193.208 1;
|
|
82.155.64.101 1;
|
|
82.162.121.43 1;
|
|
82.165.128.119 1;
|
|
82.194.247.201 1;
|
|
82.196.15.164 1;
|
|
82.196.5.99 1;
|
|
82.199.121.205 1;
|
|
82.200.204.254 1;
|
|
82.200.205.71 1;
|
|
82.200.40.68 1;
|
|
82.209.219.244 1;
|
|
82.209.66.132 1;
|
|
82.220.39.245 1;
|
|
82.223.110.159 1;
|
|
82.223.30.89 1;
|
|
82.223.36.139 1;
|
|
82.64.5.64 1;
|
|
82.64.8.34 1;
|
|
82.99.223.120 1;
|
|
83.102.198.99 1;
|
|
83.115.5.18 1;
|
|
83.115.5.80 1;
|
|
83.115.9.67 1;
|
|
83.12.163.41 1;
|
|
83.149.226.11 1;
|
|
83.174.209.143 1;
|
|
83.212.82.131 1;
|
|
83.234.149.1 1;
|
|
83.234.149.59 1;
|
|
83.239.96.82 1;
|
|
83.246.166.20 1;
|
|
83.246.167.26 1;
|
|
83.60.253.115 1;
|
|
84.188.68.188 1;
|
|
84.19.176.196 1;
|
|
84.200.22.205 1;
|
|
84.201.255.236 1;
|
|
84.2.224.145 1;
|
|
84.23.62.90 1;
|
|
84.39.40.69 1;
|
|
84.42.19.172 1;
|
|
84.42.31.8 1;
|
|
84.52.110.14 1;
|
|
84.52.124.57 1;
|
|
84.53.198.208 1;
|
|
84.54.232.182 1;
|
|
84.54.37.69 1;
|
|
85.113.55.213 1;
|
|
85.114.17.218 1;
|
|
85.140.3.217 1;
|
|
85.140.3.44 1;
|
|
85.140.40.253 1;
|
|
85.140.92.221 1;
|
|
85.140.92.223 1;
|
|
85.140.93.83 1;
|
|
85.143.140.54 1;
|
|
85.143.164.122 1;
|
|
85.143.205.177 1;
|
|
85.172.10.51 1;
|
|
85.172.12.78 1;
|
|
85.175.46.210 1;
|
|
85.185.45.174 1;
|
|
85.198.74.130 1;
|
|
85.214.19.249 1;
|
|
85.214.253.70 1;
|
|
85.225.9.94 1;
|
|
85.233.153.26 1;
|
|
85.234.121.226 1;
|
|
85.234.121.33 1;
|
|
85.237.61.86 1;
|
|
85.25.195.202 1;
|
|
85.25.218.215 1;
|
|
85.25.226.239 1;
|
|
85.25.237.166 1;
|
|
85.25.43.106 1;
|
|
85.25.43.241 1;
|
|
85.25.74.102 1;
|
|
85.93.93.146 1;
|
|
85.93.93.26 1;
|
|
85.93.93.40 1;
|
|
85.93.93.47 1;
|
|
85.93.93.50 1;
|
|
85.93.93.52 1;
|
|
85.93.93.53 1;
|
|
85.93.93.56 1;
|
|
85.93.93.63 1;
|
|
85.93.93.79 1;
|
|
85.93.93.80 1;
|
|
85.93.93.81 1;
|
|
85.93.93.83 1;
|
|
85.94.0.112 1;
|
|
85.94.0.117 1;
|
|
85.95.178.49 1;
|
|
85.95.185.42 1;
|
|
86.102.46.213 1;
|
|
86.105.60.72 1;
|
|
86.109.100.64 1;
|
|
86.110.118.172 1;
|
|
86.135.241.185 1;
|
|
86.154.181.214 1;
|
|
86.35.30.169 1;
|
|
87.101.176.49 1;
|
|
87.103.208.133 1;
|
|
87.103.242.29 1;
|
|
87.117.185.23 1;
|
|
87.225.17.224 1;
|
|
87.225.17.225 1;
|
|
87.236.23.151 1;
|
|
87.245.166.242 1;
|
|
87.249.207.129 1;
|
|
87.251.187.34 1;
|
|
87.255.243.189 1;
|
|
87.255.31.191 1;
|
|
87.255.31.253 1;
|
|
87.27.150.229 1;
|
|
87.50.153.85 1;
|
|
87.76.240.222 1;
|
|
87.98.139.12 1;
|
|
87.98.182.151 1;
|
|
87.98.182.87 1;
|
|
87.98.184.11 1;
|
|
88.147.114.176 1;
|
|
88.147.173.30 1;
|
|
88.147.252.69 1;
|
|
88.176.68.132 1;
|
|
88.190.20.8 1;
|
|
88.198.53.87 1;
|
|
88.201.171.160 1;
|
|
88.210.29.10 1;
|
|
88.250.183.88 1;
|
|
88.41.58.86 1;
|
|
88.56.41.148 1;
|
|
88.85.172.30 1;
|
|
88.85.179.39 1;
|
|
88.87.202.71 1;
|
|
88.87.80.97 1;
|
|
89.100.106.42 1;
|
|
89.109.201.171 1;
|
|
89.109.42.59 1;
|
|
89.140.72.119 1;
|
|
89.151.130.21 1;
|
|
89.162.64.102 1;
|
|
89.163.130.178 1;
|
|
89.163.132.167 1;
|
|
89.163.132.77 1;
|
|
89.163.209.57 1;
|
|
89.163.213.163 1;
|
|
89.169.142.106 1;
|
|
89.169.20.154 1;
|
|
89.169.6.182 1;
|
|
89.169.83.66 1;
|
|
89.175.168.47 1;
|
|
89.178.236.247 1;
|
|
89.178.238.120 1;
|
|
89.179.197.100 1;
|
|
89.18.156.157 1;
|
|
89.18.156.188 1;
|
|
89.188.110.72 1;
|
|
89.188.124.119 1;
|
|
89.208.70.21 1;
|
|
89.208.90.38 1;
|
|
89.22.177.142 1;
|
|
89.22.178.16 1;
|
|
89.22.178.8 1;
|
|
89.22.180.69 1;
|
|
89.22.183.125 1;
|
|
89.222.242.222 1;
|
|
89.223.47.219 1;
|
|
89.22.52.1 1;
|
|
89.248.172.196 1;
|
|
89.248.174.141 1;
|
|
89.250.212.86 1;
|
|
89.255.92.36 1;
|
|
89.31.37.231 1;
|
|
89.38.150.219 1;
|
|
89.44.32.18 1;
|
|
89.96.131.43 1;
|
|
90.114.18.9 1;
|
|
90.151.88.198 1;
|
|
90.151.95.251 1;
|
|
90.157.58.51 1;
|
|
90.188.4.53 1;
|
|
90.189.184.213 1;
|
|
90.198.60.51 1;
|
|
90.24.100.85 1;
|
|
90.63.176.42 1;
|
|
91.105.172.236 1;
|
|
91.121.0.74 1;
|
|
91.121.101.159 1;
|
|
91.121.119.195 1;
|
|
91.121.144.26 1;
|
|
91.121.159.6 1;
|
|
91.121.164.131 1;
|
|
91.121.165.211 1;
|
|
91.121.174.88 1;
|
|
91.121.211.34 1;
|
|
91.121.211.79 1;
|
|
91.121.221.131 1;
|
|
91.121.26.184 1;
|
|
91.121.48.148 1;
|
|
91.121.51.237 1;
|
|
91.121.85.30 1;
|
|
91.121.90.133 1;
|
|
91.121.94.32 1;
|
|
91.122.14.81 1;
|
|
91.122.198.141 1;
|
|
91.122.73.222 1;
|
|
91.122.85.189 1;
|
|
91.124.240.88 1;
|
|
91.133.11.239 1;
|
|
91.134.140.32 1;
|
|
91.134.158.106 1;
|
|
91.134.180.89 1;
|
|
91.134.203.217 1;
|
|
91.134.208.128 1;
|
|
91.134.216.18 1;
|
|
91.134.217.10 1;
|
|
91.134.243.12 1;
|
|
91.134.29.89 1;
|
|
91.142.81.46 1;
|
|
91.144.188.243 1;
|
|
91.144.191.118 1;
|
|
91.147.182.131 1;
|
|
91.185.49.58 1;
|
|
91.185.51.160 1;
|
|
91.188.189.194 1;
|
|
91.189.201.70 1;
|
|
91.189.234.114 1;
|
|
91.193.130.66 1;
|
|
91.193.222.10 1;
|
|
91.197.232.108 1;
|
|
91.197.232.11 1;
|
|
91.198.130.230 1;
|
|
91.200.12.22 1;
|
|
91.200.12.36 1;
|
|
91.200.12.47 1;
|
|
91.200.12.56 1;
|
|
91.200.12.60 1;
|
|
91.200.12.65 1;
|
|
91.200.12.73 1;
|
|
91.200.12.9 1;
|
|
91.200.12.97 1;
|
|
91.203.238.208 1;
|
|
91.203.242.98 1;
|
|
91.206.63.212 1;
|
|
91.210.156.103 1;
|
|
91.210.178.96 1;
|
|
91.211.209.139 1;
|
|
91.211.226.65 1;
|
|
91.211.50.221 1;
|
|
91.217.62.194 1;
|
|
91.218.102.5 1;
|
|
91.218.202.8 1;
|
|
91.220.145.215 1;
|
|
91.225.77.98 1;
|
|
91.227.46.187 1;
|
|
91.228.180.38 1;
|
|
91.229.111.48 1;
|
|
91.229.111.51 1;
|
|
91.229.51.146 1;
|
|
91.231.233.187 1;
|
|
91.233.46.177 1;
|
|
91.234.153.194 1;
|
|
91.234.62.57 1;
|
|
91.236.116.214 1;
|
|
91.236.116.77 1;
|
|
91.236.239.167 1;
|
|
91.236.254.64 1;
|
|
91.239.68.225 1;
|
|
91.240.208.14 1;
|
|
91.247.148.1 1;
|
|
91.247.148.2 1;
|
|
91.250.22.42 1;
|
|
91.64.44.149 1;
|
|
91.76.100.100 1;
|
|
91.76.188.49 1;
|
|
91.78.246.13 1;
|
|
92.111.181.206 1;
|
|
92.169.64.197 1;
|
|
92.222.10.246 1;
|
|
92.222.136.169 1;
|
|
92.222.139.251 1;
|
|
92.222.181.237 1;
|
|
92.222.195.186 1;
|
|
92.222.208.174 1;
|
|
92.222.69.186 1;
|
|
92.222.71.189 1;
|
|
92.222.80.116 1;
|
|
92.242.7.222 1;
|
|
92.243.16.153 1;
|
|
92.243.181.46 1;
|
|
92.244.224.102 1;
|
|
92.249.109.250 1;
|
|
92.255.163.232 1;
|
|
92.255.193.19 1;
|
|
92.255.231.72 1;
|
|
92.255.238.20 1;
|
|
92.255.243.14 1;
|
|
92.255.254.123 1;
|
|
92.43.185.143 1;
|
|
92.43.185.38 1;
|
|
92.43.185.93 1;
|
|
92.54.78.143 1;
|
|
92.55.37.150 1;
|
|
92.63.197.29 1;
|
|
92.63.67.147 1;
|
|
92.63.97.43 1;
|
|
92.87.13.175 1;
|
|
93.104.213.213 1;
|
|
93.157.168.36 1;
|
|
93.157.21.39 1;
|
|
93.170.139.94 1;
|
|
93.170.247.149 1;
|
|
93.171.160.79 1;
|
|
93.171.8.12 1;
|
|
93.172.16.135 1;
|
|
93.174.93.122 1;
|
|
93.178.107.69 1;
|
|
93.179.68.149 1;
|
|
93.179.68.180 1;
|
|
93.183.125.66 1;
|
|
93.188.81.220 1;
|
|
93.188.86.7 1;
|
|
93.190.229.210 1;
|
|
93.28.250.152 1;
|
|
93.62.1.201 1;
|
|
93.81.253.26 1;
|
|
93.84.78.217 1;
|
|
93.85.154.242 1;
|
|
93.85.210.12 1;
|
|
93.91.112.172 1;
|
|
93.91.113.119 1;
|
|
93.94.156.42 1;
|
|
94.101.95.221 1;
|
|
94.102.117.13 1;
|
|
94.102.14.252 1;
|
|
94.102.49.122 1;
|
|
94.102.57.141 1;
|
|
94.102.60.142 1;
|
|
94.125.90.34 1;
|
|
94.130.36.32 1;
|
|
94.139.100.110 1;
|
|
94.140.244.51 1;
|
|
94.177.137.133 1;
|
|
94.177.198.129 1;
|
|
94.179.147.160 1;
|
|
94.180.112.217 1;
|
|
94.180.114.243 1;
|
|
94.180.199.211 1;
|
|
94.180.245.159 1;
|
|
94.181.115.201 1;
|
|
94.18.198.141 1;
|
|
94.188.75.2 1;
|
|
94.190.15.112 1;
|
|
94.198.131.108 1;
|
|
94.198.1.35 1;
|
|
94.198.197.51 1;
|
|
94.228.207.145 1;
|
|
94.228.246.146 1;
|
|
94.228.246.49 1;
|
|
94.231.136.98 1;
|
|
94.231.164.52 1;
|
|
94.23.162.166 1;
|
|
94.23.212.137 1;
|
|
94.23.247.16 1;
|
|
94.23.254.103 1;
|
|
94.232.57.173 1;
|
|
94.23.33.67 1;
|
|
94.233.92.220 1;
|
|
94.23.75.121 1;
|
|
94.241.228.185 1;
|
|
94.241.26.182 1;
|
|
94.24.233.26 1;
|
|
94.247.122.166 1;
|
|
94.247.248.78 1;
|
|
94.249.32.85 1;
|
|
94.25.151.19 1;
|
|
94.25.161.33 1;
|
|
94.25.161.6 1;
|
|
94.25.168.185 1;
|
|
94.25.170.25 1;
|
|
94.25.171.31 1;
|
|
94.25.178.126 1;
|
|
94.25.179.111 1;
|
|
94.25.179.92 1;
|
|
94.255.176.96 1;
|
|
94.28.28.7 1;
|
|
94.29.126.47 1;
|
|
94.29.126.93 1;
|
|
94.30.152.32 1;
|
|
94.32.66.122 1;
|
|
94.38.215.179 1;
|
|
94.41.140.177 1;
|
|
94.45.169.104 1;
|
|
94.46.73.155 1;
|
|
94.46.89.81 1;
|
|
94.51.110.27 1;
|
|
94.66.238.63 1;
|
|
94.76.125.54 1;
|
|
94.79.7.3 1;
|
|
94.79.7.4 1;
|
|
94.79.7.5 1;
|
|
95.104.2.134 1;
|
|
95.106.126.243 1;
|
|
95.106.78.165 1;
|
|
95.110.169.233 1;
|
|
95.128.45.223 1;
|
|
95.129.166.88 1;
|
|
95.139.69.68 1;
|
|
95.142.161.185 1;
|
|
95.142.66.23 1;
|
|
95.154.155.70 1;
|
|
95.154.180.14 1;
|
|
95.154.84.10 1;
|
|
95.161.151.134 1;
|
|
95.161.253.10 1;
|
|
95.165.254.62 1;
|
|
95.167.150.5 1;
|
|
95.167.3.39 1;
|
|
95.170.148.242 1;
|
|
95.174.104.62 1;
|
|
95.181.179.218 1;
|
|
95.181.179.219 1;
|
|
95.181.179.33 1;
|
|
95.181.179.62 1;
|
|
95.181.179.63 1;
|
|
95.181.2.179 1;
|
|
95.181.2.54 1;
|
|
95.181.3.111 1;
|
|
95.182.43.176 1;
|
|
95.182.73.124 1;
|
|
95.182.77.175 1;
|
|
95.188.83.5 1;
|
|
95.188.94.77 1;
|
|
95.189.100.31 1;
|
|
95.189.131.54 1;
|
|
95.189.57.188 1;
|
|
95.221.33.204 1;
|
|
95.27.180.104 1;
|
|
95.31.35.93 1;
|
|
95.31.71.84 1;
|
|
95.47.151.78 1;
|
|
95.59.143.166 1;
|
|
95.59.154.215 1;
|
|
95.68.246.134 1;
|
|
95.70.115.88 1;
|
|
95.72.188.75 1;
|
|
95.72.243.22 1;
|
|
95.72.82.36 1;
|
|
95.72.90.152 1;
|
|
95.73.153.26 1;
|
|
95.78.118.44 1;
|
|
95.78.144.46 1;
|
|
95.78.30.163 1;
|
|
95.78.70.151 1;
|
|
95.79.101.175 1;
|
|
95.79.107.205 1;
|
|
95.79.110.230 1;
|
|
95.79.154.162 1;
|
|
95.79.33.65 1;
|
|
95.79.36.71 1;
|
|
95.79.44.222 1;
|
|
95.79.51.78 1;
|
|
95.79.97.141 1;
|
|
95.80.108.45 1;
|
|
95.80.109.103 1;
|
|
95.80.230.27 1;
|
|
95.80.77.225 1;
|
|
95.83.189.154 1;
|
|
95.84.143.156 1;
|
|
95.85.16.178 1;
|
|
95.85.29.62 1;
|
|
96.4.178.4 1;
|
|
96.56.162.194 1;
|
|
96.9.79.140 1;
|
|
98.143.148.135 1;
|
|
98.194.150.152 1;
|
|
98.194.193.150 1;
|
|
98.206.197.197 1;
|
|
# END KNOWN BAD IP ADDRESSES ### DO NOT EDIT THIS LINE AT ALL ###
|
|
|
|
|
|
# ***********************************
|
|
# Whitelist all your OWN IP addresses
|
|
# ***********************************
|
|
|
|
# WHITELIST all your own IP addresses using the include file below.
|
|
# New Method Uses the include file below so that when pulling future updates your
|
|
# whitelisted IP addresses are automatically now included for you.
|
|
# Read Comments inside whitelist-ips.conf for customization tips.
|
|
# Updating the main globalblacklist.conf file will not touch your custom include files
|
|
|
|
# **************************************************************************
|
|
# START WHITELISTED IP RANGES ### DO NOT EDIT OR REMOVE THIS LINE AT ALL ###
|
|
# **************************************************************************
|
|
|
|
include /etc/nginx/bots.d/whitelist-ips.conf;
|
|
|
|
# ************************************************************************
|
|
# END WHITELISTED IP RANGES ### DO NOT EDIT OR REMOVE THIS LINE AT ALL ###
|
|
# ************************************************************************
|
|
|
|
# ****************
|
|
# Google IP Ranges
|
|
# ****************
|
|
|
|
# For Safety Sake all Google's Known IP Ranges are all white listed
|
|
|
|
# START GOOGLE IP RANGES ### DO NOT EDIT THIS LINE AT ALL ###
|
|
108.177.0.0/17 0;
|
|
172.217.0.0/16 0;
|
|
173.194.0.0/16 0;
|
|
2001:4860:4000::/36 0;
|
|
203.208.60.0/24 0;
|
|
207.126.144.0/20 0;
|
|
209.85.128.0/17 0;
|
|
216.239.32.0/19 0;
|
|
216.58.192.0/19 0;
|
|
2404:6800:4000::/36 0;
|
|
2607:f8b0:4000::/36 0;
|
|
2800:3f0:4000::/36 0;
|
|
2a00:1450:4000::/36 0;
|
|
2c0f:fb50:4000::/36 0;
|
|
35.192.0.0/12 0;
|
|
64.18.0.0/20 0;
|
|
64.233.160.0/19 0;
|
|
64.68.80.0/21 0;
|
|
65.52.0.0/14 0;
|
|
66.102.0.0/20 0;
|
|
66.249.64.0/19 0;
|
|
72.14.192.0/18 0;
|
|
74.125.0.0/16 0;
|
|
# END GOOGLE IP RANGES ### DO NOT EDIT THIS LINE AT ALL ###
|
|
|
|
# **************
|
|
# Bing IP Ranges
|
|
# **************
|
|
|
|
# For Safety Sake all Bing's Known IP Ranges are all white listed
|
|
|
|
# START BING IP RANGES ### DO NOT EDIT THIS LINE AT ALL ###
|
|
131.253.21.0/24 0;
|
|
131.253.22.0/23 0;
|
|
131.253.24.0/21 0;
|
|
131.253.24.0/22 0;
|
|
131.253.32.0/20 0;
|
|
157.54.0.0/15 0;
|
|
157.56.0.0/14 0;
|
|
157.60.0.0/16 0;
|
|
199.30.16.0/24 0;
|
|
199.30.27.0/24 0;
|
|
207.46.0.0/16 0;
|
|
40.112.0.0/13 0;
|
|
40.120.0.0/14 0;
|
|
40.124.0.0/16 0;
|
|
40.125.0.0/17 0;
|
|
40.74.0.0/15 0;
|
|
40.76.0.0/14 0;
|
|
40.80.0.0/12 0;
|
|
40.96.0.0/12 0;
|
|
# END BING IP RANGES ### DO NOT EDIT THIS LINE AT ALL ###
|
|
|
|
# ********************
|
|
# Cloudflare IP Ranges
|
|
# ********************
|
|
|
|
# For Safety Sake all Cloudflare's Known IP Ranges are all white listed
|
|
|
|
# START CLOUDFLARE IP RANGES ### DO NOT EDIT THIS LINE AT ALL ###
|
|
103.21.244.0/22 0;
|
|
103.22.200.0/22 0;
|
|
103.31.4.0/22 0;
|
|
104.16.0.0/12 0;
|
|
108.162.192.0/18 0;
|
|
131.0.72.0/22 0;
|
|
141.101.64.0/18 0;
|
|
162.158.0.0/15 0;
|
|
172.64.0.0/13 0;
|
|
173.245.48.0/20 0;
|
|
188.114.96.0/20 0;
|
|
190.93.240.0/20 0;
|
|
197.234.240.0/22 0;
|
|
198.41.128.0/17 0;
|
|
199.27.128.0/21 0;
|
|
2400:cb00::/32 0;
|
|
2405:8100::/32 0;
|
|
2405:b500::/32 0;
|
|
2606:4700::/32 0;
|
|
2803:f800::/32 0;
|
|
2a06:98c0::/29 0;
|
|
2c0f:f248::/32 0;
|
|
# END CLOUDFLARE IP RANGES ### DO NOT EDIT THIS LINE AT ALL ###
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
# WHITELIST your own IPs from the DDOS Filter
|
|
# Add your own IP addresses and ranges into the custom include file whitelist-ips.conf
|
|
# to spare them from the rate limiting DDOS filter.
|
|
# This section includes the same / single whitelist-ips.conf file so you only
|
|
# need to edit that include file and have it include here for you too.
|
|
|
|
geo $ratelimited {
|
|
default 1;
|
|
|
|
# ***************************************************************************
|
|
# START WHITELISTED IP RANGES2 ### DO NOT EDIT OR REMOVE THIS LINE AT ALL ###
|
|
# ***************************************************************************
|
|
|
|
include /etc/nginx/bots.d/whitelist-ips.conf;
|
|
|
|
# *************************************************************************
|
|
# END WHITELISTED IP RANGES2 ### DO NOT EDIT OR REMOVE THIS LINE AT ALL ###
|
|
# *************************************************************************
|
|
|
|
}
|
|
|
|
# *****************************************
|
|
# MAP BAD BOTS TO OUR RATE LIMITER FUNCTION
|
|
# *****************************************
|
|
|
|
map $bad_bot $bot_iplimit {
|
|
0 "";
|
|
1 "";
|
|
2 $binary_remote_addr;
|
|
}
|
|
|
|
# ***********************
|
|
# SET RATE LIMITING ZONES
|
|
# ***********************
|
|
|
|
# BAD BOT RATE LIMITING ZONE
|
|
# limits for Zone $bad_bot = 1
|
|
# Nothing Set - you can set a different zone limiter here if you like
|
|
# We issue a 444 response instead to all bad bots.
|
|
|
|
# limits for Zone $bad_bot = 2
|
|
# this rate limiting will only take effect if you change any of the bots and change
|
|
# their block value from 1 to 2.
|
|
limit_conn_zone $bot_iplimit zone=bot2_connlimit:16m;
|
|
limit_req_zone $bot_iplimit zone=bot2_reqlimitip:16m rate=6r/m burst=1;
|
|
|
|
### *** MAKE SURE TO ADD to your nginx.conf ***
|
|
### server_names_hash_bucket_size 64;
|
|
### server_names_hash_max_size 4096;
|
|
### limit_req_zone $binary_remote_addr zone=flood:50m rate=90r/s;
|
|
### limit_conn_zone $binary_remote_addr zone=addr:50m;
|
|
### to allow it to load this large set of domains into memory and to set the rate limiting zones for the DDOS filter.
|
|
|
|
### THE END of the Long and Winding Road
|
|
|
|
### Also check out my Ultimate Apache Bad Bot Blocker on Github
|
|
### https://github.com/mitchellkrogza/apache-ultimate-bad-bot-blocker
|
|
|