From 761da2dd55b734168dad869b3255900efe1c559f Mon Sep 17 00:00:00 2001 From: LEAN-ESX Date: Tue, 10 Mar 2020 02:31:57 -0700 Subject: [PATCH] luci-app-adbyby-plus: refactoring new version --- package/lean/luci-app-adbyby-plus/Makefile | 2 +- .../luasrc/controller/adbyby.lua | 51 +- .../luasrc/model/cbi/adbyby/advanced.lua | 56 +- .../luasrc/model/cbi/adbyby/base.lua | 138 +-- .../luasrc/model/cbi/adbyby/black.lua | 24 + .../luasrc/model/cbi/adbyby/block.lua | 24 + .../luasrc/model/cbi/adbyby/esc.lua | 24 + .../luasrc/model/cbi/adbyby/help.lua | 48 +- .../luasrc/model/cbi/adbyby/user.lua | 24 + .../luasrc/view/adbyby/adbyby_status.htm | 2 +- .../luasrc/view/adbyby/refresh.htm | 35 + .../luci-app-adbyby-plus/po/zh-cn/adbyby.po | 9 + .../root/usr/share/adbyby/dnsmasq.adblock | 940 ------------------ 13 files changed, 313 insertions(+), 1064 deletions(-) create mode 100644 package/lean/luci-app-adbyby-plus/luasrc/model/cbi/adbyby/black.lua create mode 100644 package/lean/luci-app-adbyby-plus/luasrc/model/cbi/adbyby/block.lua create mode 100644 package/lean/luci-app-adbyby-plus/luasrc/model/cbi/adbyby/esc.lua create mode 100644 package/lean/luci-app-adbyby-plus/luasrc/model/cbi/adbyby/user.lua create mode 100644 package/lean/luci-app-adbyby-plus/luasrc/view/adbyby/refresh.htm diff --git a/package/lean/luci-app-adbyby-plus/Makefile b/package/lean/luci-app-adbyby-plus/Makefile index 0425f1471..d6c5b2e9e 100644 --- a/package/lean/luci-app-adbyby-plus/Makefile +++ b/package/lean/luci-app-adbyby-plus/Makefile @@ -10,7 +10,7 @@ LUCI_DEPENDS:=+adbyby +wget +ipset +dnsmasq-full LUCI_PKGARCH:=all PKG_NAME:=luci-app-adbyby-plus PKG_VERSION:=2.0 -PKG_RELEASE:=48 +PKG_RELEASE:=51 include $(TOPDIR)/feeds/luci/luci.mk diff --git a/package/lean/luci-app-adbyby-plus/luasrc/controller/adbyby.lua b/package/lean/luci-app-adbyby-plus/luasrc/controller/adbyby.lua index 21fbf7fc2..24d3edc5c 100644 --- a/package/lean/luci-app-adbyby-plus/luasrc/controller/adbyby.lua +++ b/package/lean/luci-app-adbyby-plus/luasrc/controller/adbyby.lua @@ -11,9 +11,13 @@ function index() entry({"admin", "services", "adbyby", "base"}, cbi("adbyby/base"), _("Base Setting"), 10).leaf=true entry({"admin", "services", "adbyby", "advanced"}, cbi("adbyby/advanced"), _("Advance Setting"), 20).leaf=true entry({"admin", "services", "adbyby", "help"}, form("adbyby/help"), _("Plus+ Domain List"), 30).leaf=true + entry({"admin", "services", "adbyby", "esc"}, form("adbyby/esc"), _("Bypass Domain List"), 40).leaf=true + entry({"admin", "services", "adbyby", "black"}, form("adbyby/black"), _("Block Domain List"), 50).leaf=true + entry({"admin", "services", "adbyby", "block"}, form("adbyby/block"), _("Block IP List"), 60).leaf=true + entry({"admin", "services", "adbyby", "user"}, form("adbyby/user"), _("User-defined Rule"), 70).leaf=true - - entry({"admin","services","adbyby","status"},call("act_status")).leaf=true + entry({"admin", "services", "adbyby", "refresh"}, call("refresh_data")) + entry({"admin","services","adbyby","run"},call("act_status")).leaf=true end function act_status() @@ -22,3 +26,46 @@ function act_status() luci.http.prepare_content("application/json") luci.http.write_json(e) end + + +function refresh_data() +local set =luci.http.formvalue("set") +local icount =0 + +if set == "gfw_data" then + retstring ="0" +elseif set == "ip_data" then + retstring ="0" +else + +refresh_cmd="wget-ssl -q --no-check-certificate -O - 'https://easylist-downloads.adblockplus.org/easylistchina+easylist.txt' > /tmp/adnew.conf" + +sret=luci.sys.call(refresh_cmd .. " 2>/dev/null") +if sret== 0 then + luci.sys.call("/usr/share/adbyby/ad-update") + icount = luci.sys.exec("cat /tmp/ad.conf | wc -l") + if tonumber(icount)>0 then + if nixio.fs.access("/usr/share/adbyby/dnsmasq.adblock") then + oldcount=luci.sys.exec("cat /usr/share/adbyby/dnsmasq.adblock | wc -l") + else + oldcount=0 + end + if tonumber(icount) ~= tonumber(oldcount) then + luci.sys.exec("cp -f /tmp/ad.conf /usr/share/adbyby/dnsmasq.adblock") + luci.sys.exec("cp -f /tmp/ad.conf /tmp/etc/dnsmasq-adbyby.d/adblock") + luci.sys.exec("/etc/init.d/dnsmasq reload") + retstring=tostring(math.ceil(tonumber(icount))) + else + retstring ="0" + end + else + retstring ="-1" + end + luci.sys.exec("rm -f /tmp/ad.conf") +else + retstring ="-1" +end +end +luci.http.prepare_content("application/json") +luci.http.write_json({ ret=retstring ,retcount=icount}) +end \ No newline at end of file diff --git a/package/lean/luci-app-adbyby-plus/luasrc/model/cbi/adbyby/advanced.lua b/package/lean/luci-app-adbyby-plus/luasrc/model/cbi/adbyby/advanced.lua index 4c65221b6..30f1f4b64 100644 --- a/package/lean/luci-app-adbyby-plus/luasrc/model/cbi/adbyby/advanced.lua +++ b/package/lean/luci-app-adbyby-plus/luasrc/model/cbi/adbyby/advanced.lua @@ -1,28 +1,30 @@ - -local SYS = require "luci.sys" -local ND = SYS.exec("cat /usr/share/adbyby/dnsmasq.adblock | wc -l") - -m = Map("adbyby") - -s = m:section(TypedSection, "adbyby") -s.anonymous = true - -o = s:option(Flag, "cron_mode") -o.title = translate("Update the rule at 6 a.m. every morning and restart adbyby") -o.default = 0 -o.rmempty = false -o.description = string.format(""..translate("ADP Host List")..": %s", ND) - -updatead = s:option(Button, "updatead", translate("Manually force update
Adblock Plus Host List"), translate("Note: It needs to download and convert the rules. The background process may takes 60-120 seconds to run.
After completed it would automatically refresh, please do not duplicate click!")) -updatead.inputtitle = translate("Manually force update") -updatead.inputstyle = "apply" -updatead.write = function() - SYS.call("sh /usr/share/adbyby/adblock.sh > /tmp/adupdate.log 2>&1 &") -end - -o = s:option(Flag, "block_ios") -o.title = translate("Block Apple iOS OTA update") -o.default = 0 -o.rmempty = false - + +local SYS = require "luci.sys" +local ND = SYS.exec("cat /usr/share/adbyby/dnsmasq.adblock | wc -l") + +local ad_count=0 +if nixio.fs.access("/usr/share/adbyby/dnsmasq.adblock") then +ad_count=tonumber(SYS.exec("cat /usr/share/adbyby/dnsmasq.adblock | wc -l")) +end + +m = Map("adbyby") + +s = m:section(TypedSection, "adbyby") +s.anonymous = true + +o = s:option(Flag, "cron_mode") +o.title = translate("Update the rule at 6 a.m. every morning and restart adbyby") +o.default = 0 +o.rmempty = false + +o=s:option(DummyValue,"ad_data",translate("Adblock Plus Data")) +o.rawhtml = true +o.template = "adbyby/refresh" +o.value =ad_count .. " " .. translate("Records") + +o = s:option(Flag, "block_ios") +o.title = translate("Block Apple iOS OTA update") +o.default = 0 +o.rmempty = false + return m \ No newline at end of file diff --git a/package/lean/luci-app-adbyby-plus/luasrc/model/cbi/adbyby/base.lua b/package/lean/luci-app-adbyby-plus/luasrc/model/cbi/adbyby/base.lua index 8eaad226a..d0a382b6f 100644 --- a/package/lean/luci-app-adbyby-plus/luasrc/model/cbi/adbyby/base.lua +++ b/package/lean/luci-app-adbyby-plus/luasrc/model/cbi/adbyby/base.lua @@ -1,70 +1,70 @@ -local NXFS = require "nixio.fs" -local SYS = require "luci.sys" -local HTTP = require "luci.http" -local DISP = require "luci.dispatcher" - -local DL = SYS.exec("head -1 /tmp/adbyby/data/lazy.txt | awk -F' ' '{print $3,$4}'") or "" -local DV = SYS.exec("head -1 /tmp/adbyby/data/video.txt | awk -F' ' '{print $3,$4}'") or "" -local NR = SYS.exec("grep -v '^!' /usr/share/adbyby/data/rules.txt | wc -l") -local NU = SYS.exec("cat /usr/share/adbyby/data/user.txt | wc -l") -local UD = NXFS.readfile("/tmp/adbyby.updated") or "1970-01-01 00:00:00" -local ND = SYS.exec("cat /usr/share/adbyby/dnsmasq.adblock | wc -l") - -m = Map("adbyby") -m.title = translate("Adbyby Plus +") -m.description = translate("Adbyby Plus + can filter all kinds of banners, popups, video ads, and prevent tracking, privacy theft and a variety of malicious websites
Plus + version combination mode can operation with Adblock Plus Host,filtering ads without losing bandwidth") - -m:section(SimpleSection).template = "adbyby/adbyby_status" - -s = m:section(TypedSection, "adbyby") -s.anonymous = true - -o = s:option(Flag, "enable") -o.title = translate("Enable") -o.default = 0 -o.rmempty = false - -o = s:option(ListValue, "wan_mode") -o.title = translate("Running Mode") -o:value("0", translate("Global Mode (The slowest and the best effects)")) -o:value("1", translate("Plus + Mode (Filter domain name list and blacklist website.Recommended)")) -o:value("2", translate("No filter Mode (Must set in Client Filter Mode Settings manually)")) -o.default = 1 -o.rmempty = false - -o = s:option(Button, "restart") -o.title = translate("Adbyby and Rule state") -o.inputtitle = translate("Update Adbyby Rules Manually") -o.description = string.format(""..translate("Last Update Checked")..": %s
"..translate("Lazy Rule")..":%s
"..translate("Video Rule")..":%s", UD, DL, DV) -o.inputstyle = "reload" -o.write = function() - SYS.call("rm -rf /tmp/adbyby.updated /tmp/adbyby/admd5.json && /usr/share/adbyby/adbybyupdate.sh > /tmp/adupdate.log 2>&1 &") - SYS.call("sleep 5") - HTTP.redirect(DISP.build_url("admin", "services", "adbyby")) -end - -t=m:section(TypedSection,"acl_rule",translate("Client Filter Mode Settings"), -translate("Filter mode settings can be set to specific LAN clients ( No filter , Global filter ) . Does not need to be set by default.")) -t.template="cbi/tblsection" -t.sortable=true -t.anonymous=true -t.addremove=true - -e=t:option(Value,"ipaddr",translate("IP Address")) -e.width="40%" -e.datatype="ip4addr" -e.placeholder="0.0.0.0/0" -luci.ip.neighbors({ family = 4 }, function(entry) - if entry.reachable then - e:value(entry.dest:string()) - end -end) - -e=t:option(ListValue,"filter_mode",translate("Filter Mode")) -e.width="40%" -e.default="disable" -e.rmempty=false -e:value("disable",translate("No filter")) -e:value("global",translate("Global filter")) - +local NXFS = require "nixio.fs" +local SYS = require "luci.sys" +local HTTP = require "luci.http" +local DISP = require "luci.dispatcher" + +local DL = SYS.exec("head -1 /tmp/adbyby/data/lazy.txt | awk -F' ' '{print $3,$4}'") or "" +local DV = SYS.exec("head -1 /tmp/adbyby/data/video.txt | awk -F' ' '{print $3,$4}'") or "" +local NR = SYS.exec("grep -v '^!' /usr/share/adbyby/data/rules.txt | wc -l") +local NU = SYS.exec("cat /usr/share/adbyby/data/user.txt | wc -l") +local UD = NXFS.readfile("/tmp/adbyby.updated") or "1970-01-01 00:00:00" +local ND = SYS.exec("cat /usr/share/adbyby/dnsmasq.adblock | wc -l") + +m = Map("adbyby") +m.title = translate("Adbyby Plus +") +m.description = translate("Adbyby Plus + can filter all kinds of banners, popups, video ads, and prevent tracking, privacy theft and a variety of malicious websites
Plus + version combination mode can operation with Adblock Plus Host,filtering ads without losing bandwidth") + +m:section(SimpleSection).template = "adbyby/adbyby_status" + +s = m:section(TypedSection, "adbyby") +s.anonymous = true + +o = s:option(Flag, "enable") +o.title = translate("Enable") +o.default = 0 +o.rmempty = false + +o = s:option(ListValue, "wan_mode") +o.title = translate("Running Mode") +o:value("0", translate("Global Mode (The slowest and the best effects)")) +o:value("1", translate("Plus + Mode (Filter domain name list and blacklist website.Recommended)")) +o:value("2", translate("No filter Mode (Must set in Client Filter Mode Settings manually)")) +o.default = 1 +o.rmempty = false + +o = s:option(Button, "restart") +o.title = translate("Adbyby and Rule state") +o.inputtitle = translate("Update Adbyby Rules Manually") +o.description = string.format(""..translate("Last Update Checked")..": %s
"..translate("Lazy Rule")..":%s
"..translate("Video Rule")..":%s", UD, DL, DV) +o.inputstyle = "reload" +o.write = function() + SYS.call("rm -rf /tmp/adbyby.updated /tmp/adbyby/admd5.json && /usr/share/adbyby/adbybyupdate.sh > /tmp/adupdate.log 2>&1 &") + SYS.call("sleep 5") + HTTP.redirect(DISP.build_url("admin", "services", "adbyby")) +end + +t=m:section(TypedSection,"acl_rule",translate("Client Filter Mode Settings"), +translate("Filter mode settings can be set to specific LAN clients ( No filter , Global filter ) . Does not need to be set by default.")) +t.template="cbi/tblsection" +t.sortable=true +t.anonymous=true +t.addremove=true + +e=t:option(Value,"ipaddr",translate("IP Address")) +e.width="40%" +e.datatype="ip4addr" +e.placeholder="0.0.0.0/0" +luci.ip.neighbors({ family = 4 }, function(entry) + if entry.reachable then + e:value(entry.dest:string()) + end +end) + +e=t:option(ListValue,"filter_mode",translate("Filter Mode")) +e.width="40%" +e.default="disable" +e.rmempty=false +e:value("disable",translate("No filter")) +e:value("global",translate("Global filter")) + return m \ No newline at end of file diff --git a/package/lean/luci-app-adbyby-plus/luasrc/model/cbi/adbyby/black.lua b/package/lean/luci-app-adbyby-plus/luasrc/model/cbi/adbyby/black.lua new file mode 100644 index 000000000..4d571ed19 --- /dev/null +++ b/package/lean/luci-app-adbyby-plus/luasrc/model/cbi/adbyby/black.lua @@ -0,0 +1,24 @@ +local fs = require "nixio.fs" +local conffile = "/usr/share/adbyby/adblack.conf" + +f = SimpleForm("custom") + +t = f:field(TextValue, "conf") +t.rmempty = true +t.rows = 13 +function t.cfgvalue() + return fs.readfile(conffile) or "" +end + +function f.handle(self, state, data) + if state == FORM_VALID then + if data.conf then + fs.writefile(conffile, data.conf:gsub("\r\n", "\n")) + luci.sys.call("/etc/init.d/adbyby restart") + end + end + return true +end + +return f + diff --git a/package/lean/luci-app-adbyby-plus/luasrc/model/cbi/adbyby/block.lua b/package/lean/luci-app-adbyby-plus/luasrc/model/cbi/adbyby/block.lua new file mode 100644 index 000000000..50c739762 --- /dev/null +++ b/package/lean/luci-app-adbyby-plus/luasrc/model/cbi/adbyby/block.lua @@ -0,0 +1,24 @@ +local fs = require "nixio.fs" +local conffile = "/usr/share/adbyby/blockip.conf" + +f = SimpleForm("custom") + +t = f:field(TextValue, "conf") +t.rmempty = true +t.rows = 13 +function t.cfgvalue() + return fs.readfile(conffile) or "" +end + +function f.handle(self, state, data) + if state == FORM_VALID then + if data.conf then + fs.writefile(conffile, data.conf:gsub("\r\n", "\n")) + luci.sys.call("/etc/init.d/adbyby restart") + end + end + return true +end + +return f + diff --git a/package/lean/luci-app-adbyby-plus/luasrc/model/cbi/adbyby/esc.lua b/package/lean/luci-app-adbyby-plus/luasrc/model/cbi/adbyby/esc.lua new file mode 100644 index 000000000..78d37f56c --- /dev/null +++ b/package/lean/luci-app-adbyby-plus/luasrc/model/cbi/adbyby/esc.lua @@ -0,0 +1,24 @@ +local fs = require "nixio.fs" +local conffile = "/usr/share/adbyby/adesc.conf" + +f = SimpleForm("custom") + +t = f:field(TextValue, "conf") +t.rmempty = true +t.rows = 13 +function t.cfgvalue() + return fs.readfile(conffile) or "" +end + +function f.handle(self, state, data) + if state == FORM_VALID then + if data.conf then + fs.writefile(conffile, data.conf:gsub("\r\n", "\n")) + luci.sys.call("/etc/init.d/adbyby restart") + end + end + return true +end + +return f + diff --git a/package/lean/luci-app-adbyby-plus/luasrc/model/cbi/adbyby/help.lua b/package/lean/luci-app-adbyby-plus/luasrc/model/cbi/adbyby/help.lua index 5469d6186..438c34d72 100644 --- a/package/lean/luci-app-adbyby-plus/luasrc/model/cbi/adbyby/help.lua +++ b/package/lean/luci-app-adbyby-plus/luasrc/model/cbi/adbyby/help.lua @@ -1,24 +1,24 @@ -local fs = require "nixio.fs" -local conffile = "/usr/share/adbyby/adhost.conf" - -f = SimpleForm("custom") - -t = f:field(TextValue, "conf") -t.rmempty = true -t.rows = 13 -function t.cfgvalue() - return fs.readfile(conffile) or "" -end - -function f.handle(self, state, data) - if state == FORM_VALID then - if data.conf then - fs.writefile(conffile, data.conf:gsub("\r\n", "\n")) - luci.sys.call("/etc/init.d/adbyby restart") - end - end - return true -end - -return f - +local fs = require "nixio.fs" +local conffile = "/usr/share/adbyby/adhost.conf" + +f = SimpleForm("custom") + +t = f:field(TextValue, "conf") +t.rmempty = true +t.rows = 13 +function t.cfgvalue() + return fs.readfile(conffile) or "" +end + +function f.handle(self, state, data) + if state == FORM_VALID then + if data.conf then + fs.writefile(conffile, data.conf:gsub("\r\n", "\n")) + luci.sys.call("/etc/init.d/adbyby restart") + end + end + return true +end + +return f + diff --git a/package/lean/luci-app-adbyby-plus/luasrc/model/cbi/adbyby/user.lua b/package/lean/luci-app-adbyby-plus/luasrc/model/cbi/adbyby/user.lua new file mode 100644 index 000000000..3c4498db0 --- /dev/null +++ b/package/lean/luci-app-adbyby-plus/luasrc/model/cbi/adbyby/user.lua @@ -0,0 +1,24 @@ +local fs = require "nixio.fs" +local conffile = "/usr/share/adbyby/rules.txt" + +f = SimpleForm("custom") + +t = f:field(TextValue, "conf") +t.rmempty = true +t.rows = 13 +function t.cfgvalue() + return fs.readfile(conffile) or "" +end + +function f.handle(self, state, data) + if state == FORM_VALID then + if data.conf then + fs.writefile(conffile, data.conf:gsub("\r\n", "\n")) + luci.sys.call("/etc/init.d/adbyby restart") + end + end + return true +end + +return f + diff --git a/package/lean/luci-app-adbyby-plus/luasrc/view/adbyby/adbyby_status.htm b/package/lean/luci-app-adbyby-plus/luasrc/view/adbyby/adbyby_status.htm index 8191b63a6..6e9be7264 100644 --- a/package/lean/luci-app-adbyby-plus/luasrc/view/adbyby/adbyby_status.htm +++ b/package/lean/luci-app-adbyby-plus/luasrc/view/adbyby/adbyby_status.htm @@ -1,5 +1,5 @@ + +<%=self.value%> +<%+cbi/valuefooter%> diff --git a/package/lean/luci-app-adbyby-plus/po/zh-cn/adbyby.po b/package/lean/luci-app-adbyby-plus/po/zh-cn/adbyby.po index 9f80d9e3f..dd1f32eff 100644 --- a/package/lean/luci-app-adbyby-plus/po/zh-cn/adbyby.po +++ b/package/lean/luci-app-adbyby-plus/po/zh-cn/adbyby.po @@ -65,6 +65,9 @@ msgstr "每天凌晨6点更新规则并重启" msgid "ADP Host List" msgstr "Adblock Plus Hosts 记录数" +msgid "Adblock Plus Data" +msgstr "Adblock Plus 规则数据库" + msgid "Manually force update
Adblock Plus Host List" msgstr "手动强制更新
Adblock Plus Host List" @@ -138,3 +141,9 @@ msgstr "视频规则版本" msgid "Adblock Plus Host List" msgstr "广告屏蔽大师 Plus 规则列表" +msgid "Block Domain List" +msgstr "域名黑名单" + +msgid "Block IP List" +msgstr "IP黑名单" + diff --git a/package/lean/luci-app-adbyby-plus/root/usr/share/adbyby/dnsmasq.adblock b/package/lean/luci-app-adbyby-plus/root/usr/share/adbyby/dnsmasq.adblock index 6f0950609..e69de29bb 100644 --- a/package/lean/luci-app-adbyby-plus/root/usr/share/adbyby/dnsmasq.adblock +++ b/package/lean/luci-app-adbyby-plus/root/usr/share/adbyby/dnsmasq.adblock @@ -1,940 +0,0 @@ -address=/a.youdao.com/0.0.0.0 -address=/adrs.sdo.com/0.0.0.0 -address=/hiad.myweb.hinet.net/0.0.0.0 -address=/log.interest.mix.sina.com.cn/0.0.0.0 -address=/tuiguang.178.com/0.0.0.0 -address=/0xxd.com/0.0.0.0 -address=/104.195.62.12/0.0.0.0 -address=/111.175.219.7/0.0.0.0 -address=/111111qb.com/0.0.0.0 -address=/112.124.98.75/0.0.0.0 -address=/116.55.227.242/0.0.0.0 -address=/122.227.254.195/0.0.0.0 -address=/123hala.com/0.0.0.0 -address=/139.159.32.82/0.0.0.0 -address=/182.92.81.104/0.0.0.0 -address=/1l1.cc/0.0.0.0 -address=/201071.com/0.0.0.0 -address=/2012ui.com/0.0.0.0 -address=/211.167.105.131/0.0.0.0 -address=/220.115.251.25/0.0.0.0 -address=/221.204.213.222/0.0.0.0 -address=/2m2n.com/0.0.0.0 -address=/360baidus.com/0.0.0.0 -address=/365bibi.com/0.0.0.0 -address=/365safego.com/0.0.0.0 -address=/366safego.com/0.0.0.0 -address=/36pn.com/0.0.0.0 -address=/3g.990.net/0.0.0.0 -address=/52kmk.com/0.0.0.0 -address=/58.215.179.159/0.0.0.0 -address=/61.152.223.15/0.0.0.0 -address=/68665565.com/0.0.0.0 -address=/6dvip.com/0.0.0.0 -address=/71sem.com/0.0.0.0 -address=/77power.com/0.0.0.0 -address=/7wen.cn/0.0.0.0 -address=/7xz3.com/0.0.0.0 -address=/81c.cn/0.0.0.0 -address=/85tgw.com/0.0.0.0 -address=/88rpg.net/0.0.0.0 -address=/892155.com/0.0.0.0 -address=/91ysa.com/0.0.0.0 -address=/91zgm.com/0.0.0.0 -address=/9377co.com/0.0.0.0 -address=/9377os.com/0.0.0.0 -address=/a907907.com/0.0.0.0 -address=/ad000000.com/0.0.0.0 -address=/adm-cnzz.net/0.0.0.0 -address=/ads.uc.cn/0.0.0.0 -address=/ajaxcdn.org/0.0.0.0 -address=/aliyuncss.com/0.0.0.0 -address=/aliyunxin.com/0.0.0.0 -address=/amazingmagics.com/0.0.0.0 -address=/aralego.com/0.0.0.0 -address=/at98.com/0.0.0.0 -address=/cangnews.com/0.0.0.0 -address=/caob5.info/0.0.0.0 -address=/cb.baidu.com/0.0.0.0 -address=/cbjs.baidu.com/0.0.0.0 -address=/cnxad.net/0.0.0.0 -address=/cnzz.com.so/0.0.0.0 -address=/code668.com/0.0.0.0 -address=/cpcv.cc/0.0.0.0 -address=/cpms.cc/0.0.0.0 -address=/cpro.baidu.com/0.0.0.0 -address=/cpro.baidustatic.com/0.0.0.0 -address=/cpv6.com/0.0.0.0 -address=/cpva.cc/0.0.0.0 -address=/crdrjs.info/0.0.0.0 -address=/csqiulong.com/0.0.0.0 -address=/ctsywy.com/0.0.0.0 -address=/cyacc.com/0.0.0.0 -address=/czpush.com/0.0.0.0 -address=/dashet.com/0.0.0.0 -address=/datafastguru.info/0.0.0.0 -address=/dou777.com/0.0.0.0 -address=/drmcmm.baidu.com/0.0.0.0 -address=/duiwai.baidu.com/0.0.0.0 -address=/dvr8.com/0.0.0.0 -address=/dw998.com/0.0.0.0 -address=/dxssiyi.com/0.0.0.0 -address=/e701.net/0.0.0.0 -address=/e70123.com/0.0.0.0 -address=/e708.net/0.0.0.0 -address=/e719.net/0.0.0.0 -address=/ecuc123.net/0.0.0.0 -address=/eiv.baidu.com/0.0.0.0 -address=/f1190.com/0.0.0.0 -address=/f6ce.com/0.0.0.0 -address=/f70123.com/0.0.0.0 -address=/fd7c.com/0.0.0.0 -address=/fjmeyer.com/0.0.0.0 -address=/fu68.com/0.0.0.0 -address=/fv99.com/0.0.0.0 -address=/gf108.com/0.0.0.0 -address=/gf1352.com/0.0.0.0 -address=/gm682.com/0.0.0.0 -address=/guduopu.com/0.0.0.0 -address=/gzmjnx.cn/0.0.0.0 -address=/gzqudou.com/0.0.0.0 -address=/hao123rt.com/0.0.0.0 -address=/haohaowan8.com/0.0.0.0 -address=/haolew.com/0.0.0.0 -address=/hfjuki.com/0.0.0.0 -address=/hmp33.com/0.0.0.0 -address=/hr44.com/0.0.0.0 -address=/humanding.com/0.0.0.0 -address=/i3818.com/0.0.0.0 -address=/ihualun.com/0.0.0.0 -address=/img80.net/0.0.0.0 -address=/jczzjx.com/0.0.0.0 -address=/jdlhg.com/0.0.0.0 -address=/jhzl001.com/0.0.0.0 -address=/jiyou2014.com/0.0.0.0 -address=/jk939.com/0.0.0.0 -address=/jlssbz.com/0.0.0.0 -address=/jnrsjm.com/0.0.0.0 -address=/johtzj.com/0.0.0.0 -address=/jwqj.net/0.0.0.0 -address=/jxjzny.com/0.0.0.0 -address=/keyyou.net/0.0.0.0 -address=/kingwam.com/0.0.0.0 -address=/kmadou.com/0.0.0.0 -address=/ku9377.com/0.0.0.0 -address=/lajizhan.org/0.0.0.0 -address=/le4le.com/0.0.0.0 -address=/lishuanghao.com/0.0.0.0 -address=/lzmm8.com/0.0.0.0 -address=/mainbx.com/0.0.0.0 -address=/mathads.com/0.0.0.0 -address=/mlt01.com/0.0.0.0 -address=/moodoocrv.com.cn/0.0.0.0 -address=/mscimg.com/0.0.0.0 -address=/nextcps.com/0.0.0.0 -address=/niuxgame77.com/0.0.0.0 -address=/notice.uchome.manyou.com/0.0.0.0 -address=/oikxlcv.wang/0.0.0.0 -address=/okm918.com/0.0.0.0 -address=/p3tt.com/0.0.0.0 -address=/pdsjycm.com/0.0.0.0 -address=/pos.baidu.com/0.0.0.0 -address=/qiqiww.com/0.0.0.0 -address=/qucaigg.com/0.0.0.0 -address=/re.taotaosou.com/0.0.0.0 -address=/ruxianke.com/0.0.0.0 -address=/rwjfs.com/0.0.0.0 -address=/sgbfjs.info/0.0.0.0 -address=/sharedaddomain.com/0.0.0.0 -address=/show.kc.taotaosou.com/0.0.0.0 -address=/si9377.com/0.0.0.0 -address=/socdm.com/0.0.0.0 -address=/spcode.baidu.com/0.0.0.0 -address=/sstc360.com/0.0.0.0 -address=/t70123.com/0.0.0.0 -address=/taat00889.com/0.0.0.0 -address=/tad.suning.com/0.0.0.0 -address=/tc600.com/0.0.0.0 -address=/tdayi.com/0.0.0.0 -address=/tg.1155t.cn/0.0.0.0 -address=/toourbb.com/0.0.0.0 -address=/ubmcmm.baidustatic.com/0.0.0.0 -address=/uoyrsd.com/0.0.0.0 -address=/v707070.com/0.0.0.0 -address=/victorjx.com/0.0.0.0 -address=/w65p.com/0.0.0.0 -address=/wdzsb.com.cn/0.0.0.0 -address=/winvestern.com.cn/0.0.0.0 -address=/wqsph.net/0.0.0.0 -address=/ws341.com/0.0.0.0 -address=/xa9t.com/0.0.0.0 -address=/xabaitai.com/0.0.0.0 -address=/xchgx.com/0.0.0.0 -address=/xcy8.com/0.0.0.0 -address=/xtxa.net/0.0.0.0 -address=/xxad.cc/0.0.0.0 -address=/xzyituo.com/0.0.0.0 -address=/yk0712.com/0.0.0.0 -address=/ymcqb.com/0.0.0.0 -address=/yqw88.com/0.0.0.0 -address=/yule8.net/0.0.0.0 -address=/yyp17.com/0.0.0.0 -address=/zgksb.com/0.0.0.0 -address=/zgunion.cn/0.0.0.0 -address=/zp22938576.com/0.0.0.0 -address=/120.27.34.156/0.0.0.0 -address=/122.228.236.165/0.0.0.0 -address=/125.46.61.28/0.0.0.0 -address=/192.184.10.171/0.0.0.0 -address=/218.65.30.232/0.0.0.0 -address=/27.255.67.120/0.0.0.0 -address=/32345sf.com/0.0.0.0 -address=/360safego.com/0.0.0.0 -address=/3dm.huya.com/0.0.0.0 -address=/5y9nfpes.52pk.com/0.0.0.0 -address=/654mmm.com/0.0.0.0 -address=/6d245gxt.52pk.com/0.0.0.0 -address=/7mad.7m.cn/0.0.0.0 -address=/801.tianyaui.com/0.0.0.0 -address=/86file.megajoy.com/0.0.0.0 -address=/8jkx.com/0.0.0.0 -address=/96.43.97.243/0.0.0.0 -address=/a-m-s.poco.cn/0.0.0.0 -address=/a.baomihua.com/0.0.0.0 -address=/a.xizi.com/0.0.0.0 -address=/a2.b310.com/0.0.0.0 -address=/a4.yeshj.com/0.0.0.0 -address=/a5.yeshj.com/0.0.0.0 -address=/a6.hujiang.com/0.0.0.0 -address=/abc.hkepc.com/0.0.0.0 -address=/acsystem.wasu.cn/0.0.0.0 -address=/ad.17173.com/0.0.0.0 -address=/ad.bjmama.net/0.0.0.0 -address=/adadmin.house365.com/0.0.0.0 -address=/add.dz19.net/0.0.0.0 -address=/adf.dahe.cn/0.0.0.0 -address=/adhome.1fangchan.com/0.0.0.0 -address=/adk.funshion.com/0.0.0.0 -address=/adm.265g.com/0.0.0.0 -address=/adm.72zx.com/0.0.0.0 -address=/adm.86wan.com/0.0.0.0 -address=/adm.bbcss.com/0.0.0.0 -address=/adm.funshion.com/0.0.0.0 -address=/adm.jjj8.cn/0.0.0.0 -address=/adm.qzbbs.com/0.0.0.0 -address=/adm.xmfish.com/0.0.0.0 -address=/adm.zbinfo.net/0.0.0.0 -address=/adm.zzfish.cn/0.0.0.0 -address=/admd.yam.com/0.0.0.0 -address=/adnetpub.yaolan.com/0.0.0.0 -address=/adp.cnool.net/0.0.0.0 -address=/adpub.yaolan.com/0.0.0.0 -address=/adpubs.yaolan.com/0.0.0.0 -address=/adsclick.yx.js.cn/0.0.0.0 -address=/adspending01.bwnet.com.tw/0.0.0.0 -address=/afp.chinanews.com/0.0.0.0 -address=/afp.wasu.cn/0.0.0.0 -address=/afpcreative.wasu.cn/0.0.0.0 -address=/ai.bioon.com/0.0.0.0 -address=/aid.chinayk.com/0.0.0.0 -address=/am.6park.com/0.0.0.0 -address=/am.szhome.com/0.0.0.0 -address=/app.acm.dzwww.com/0.0.0.0 -address=/as.sinahk.net/0.0.0.0 -address=/ashow.pcpop.com/0.0.0.0 -address=/bb345.com/0.0.0.0 -address=/besc.baidustatic.com/0.0.0.0 -address=/biz.gexing.com/0.0.0.0 -address=/biz.weibo.com/0.0.0.0 -address=/btn.onlylady.com/0.0.0.0 -address=/btn.pchome.net/0.0.0.0 -address=/business.92wy.com/0.0.0.0 -address=/by.7avz.com/0.0.0.0 -address=/cacafly.net/0.0.0.0 -address=/cachead.com/0.0.0.0 -address=/cdn.wdlm.cn/0.0.0.0 -address=/chidir.com/0.0.0.0 -address=/cps.okbuy.com/0.0.0.0 -address=/d.107788.com/0.0.0.0 -address=/d.taomato.com/0.0.0.0 -address=/d0.xcar.com.cn/0.0.0.0 -address=/dd.xdnice.com/0.0.0.0 -address=/de.as.pptv.com/0.0.0.0 -address=/dfad.dfdaily.com/0.0.0.0 -address=/dg.073img.com/0.0.0.0 -address=/doubleclick.tv002.com/0.0.0.0 -address=/dvs.china.com/0.0.0.0 -address=/dvser.china.com/0.0.0.0 -address=/e.yycqc.com/0.0.0.0 -address=/eap.big5.enorth.com.cn/0.0.0.0 -address=/eap.enorth.com.cn/0.0.0.0 -address=/ebp.renren.com/0.0.0.0 -address=/ecma.bdimg.com/0.0.0.0 -address=/ecmb.bdimg.com/0.0.0.0 -address=/fun.ynet.com/0.0.0.0 -address=/g.gxorg.com/0.0.0.0 -address=/g.hsw.cn/0.0.0.0 -address=/g.ousns.net/0.0.0.0 -address=/g1.0573ren.com/0.0.0.0 -address=/g2.ousns.net/0.0.0.0 -address=/ganjituiguang.ganji.com/0.0.0.0 -address=/gdt.qq.com/0.0.0.0 -address=/get.766.com/0.0.0.0 -address=/gg.0598yu.com/0.0.0.0 -address=/gg.18183.com/0.0.0.0 -address=/gg.cs090.com/0.0.0.0 -address=/gg.gao7.com/0.0.0.0 -address=/gg.kugou.com/0.0.0.0 -address=/gg.sonhoo.com/0.0.0.0 -address=/gg.yxdown.com/0.0.0.0 -address=/ggg.zj.com/0.0.0.0 -address=/ggw.gusuwang.com/0.0.0.0 -address=/ggw.watertu.com/0.0.0.0 -address=/ggyq.xdkb.net/0.0.0.0 -address=/go.hangzhou.com.cn/0.0.0.0 -address=/goto.www.iciba.com/0.0.0.0 -address=/gqgc.sz.zj.cn/0.0.0.0 -address=/groupa.onlylady.com/0.0.0.0 -address=/gsspcln.jp/0.0.0.0 -address=/gt.yy.com/0.0.0.0 -address=/guess.h.qhimg.com/0.0.0.0 -address=/haxiu.miaotiao.com/0.0.0.0 -address=/hdad.baike.com/0.0.0.0 -address=/hiad.vmall.com/0.0.0.0 -address=/hz.shouyoutv.com/0.0.0.0 -address=/hzhyhm.com/0.0.0.0 -address=/i.syasn.com/0.0.0.0 -address=/iads.xinmin.cn/0.0.0.0 -address=/idcot.com/0.0.0.0 -address=/ifx.aifang.com/0.0.0.0 -address=/image.6park.com/0.0.0.0 -address=/image.9duw.com/0.0.0.0 -address=/image.hh010.com/0.0.0.0 -address=/image.lepan.cc/0.0.0.0 -address=/images.chinaz.com/0.0.0.0 -address=/images.gxsky.com/0.0.0.0 -address=/img.3sjt.com/0.0.0.0 -address=/img.9duw.com/0.0.0.0 -address=/img1.126.net/0.0.0.0 -address=/img2.126.net/0.0.0.0 -address=/img2.www.fmdisk.com/0.0.0.0 -address=/inte.sogou.com/0.0.0.0 -address=/iwanad.baidu.com/0.0.0.0 -address=/j.6avz.com/0.0.0.0 -address=/j.7avz.com/0.0.0.0 -address=/ja.gamersky.com/0.0.0.0 -address=/jmsyzj.com/0.0.0.0 -address=/js-1.pchome.net/0.0.0.0 -address=/js.duotegame.com/0.0.0.0 -address=/js.leshen.com/0.0.0.0 -address=/js.pub.tom.com/0.0.0.0 -address=/js.youxi369.com/0.0.0.0 -address=/jxad.jx163.com/0.0.0.0 -address=/knnwdyou.com/0.0.0.0 -address=/leiqun.snxyf.com/0.0.0.0 -address=/life.e0575.com/0.0.0.0 -address=/lingdian98.com/0.0.0.0 -address=/link.fobshanghai.com/0.0.0.0 -address=/lxting.com/0.0.0.0 -address=/m.aty.sohu.com/0.0.0.0 -address=/manads.static.olcdn.com/0.0.0.0 -address=/manage.wdfans.cn/0.0.0.0 -address=/market.178.com/0.0.0.0 -address=/market.21cn.com/0.0.0.0 -address=/market.duowan.com/0.0.0.0 -address=/media.cheshi-img.com/0.0.0.0 -address=/money.qz828.com/0.0.0.0 -address=/myad.toocle.com/0.0.0.0 -address=/ok.432kkk.com/0.0.0.0 -address=/p.szonline.net/0.0.0.0 -address=/p.zol-img.com.cn/0.0.0.0 -address=/p4p.sina.com.cn/0.0.0.0 -address=/p8u.hinet.net/0.0.0.0 -address=/panda.kdnet.net/0.0.0.0 -address=/pcs1.app.joy.cn/0.0.0.0 -address=/phpad.cqnews.net/0.0.0.0 -address=/pic.0597kk.com/0.0.0.0 -address=/pic.111cn.net/0.0.0.0 -address=/pic.2u.com.cn/0.0.0.0 -address=/pic.ea3w.com/0.0.0.0 -address=/pic.fengniao.com/0.0.0.0 -address=/pic.taian.com/0.0.0.0 -address=/pic.xgo-img.com.cn/0.0.0.0 -address=/playad.xjmg.com/0.0.0.0 -address=/poster.weather.com.cn/0.0.0.0 -address=/pp.7060.la/0.0.0.0 -address=/pro.iweihai.cn/0.0.0.0 -address=/pub.funshion.com/0.0.0.0 -address=/pub.mop.com/0.0.0.0 -address=/publicize.liao1.com/0.0.0.0 -address=/publish.ad.youth.cn/0.0.0.0 -address=/res.hunantv.com/0.0.0.0 -address=/rh.qq.com/0.0.0.0 -address=/same.chinadaily.com.cn/0.0.0.0 -address=/same.eastmoney.com/0.0.0.0 -address=/same.stockstar.com/0.0.0.0 -address=/sc.tom.com/0.0.0.0 -address=/sgg.southcn.com/0.0.0.0 -address=/share.gzdsw.com/0.0.0.0 -address=/shenleyuni.com/0.0.0.0 -address=/shows.21cn.com/0.0.0.0 -address=/so.6949.com/0.0.0.0 -address=/sss.sege.xxx/0.0.0.0 -address=/static.yujiehenaishang.com/0.0.0.0 -address=/sub.powerapple.com/0.0.0.0 -address=/super.cat898.com/0.0.0.0 -address=/super.kdnet.net/0.0.0.0 -address=/synacast.com/0.0.0.0 -address=/tf.360.cn/0.0.0.0 -address=/tg.delnapb.com/0.0.0.0 -address=/tk.504pk.com/0.0.0.0 -address=/tp.sgcn.com/0.0.0.0 -address=/u.63kc.com/0.0.0.0 -address=/u.cnzol.com/0.0.0.0 -address=/union.china.com.cn/0.0.0.0 -address=/untitled.dwstatic.com/0.0.0.0 -address=/up.hiao.com/0.0.0.0 -address=/v-56.com/0.0.0.0 -address=/vas.funshion.com/0.0.0.0 -address=/vupload.duowan.com/0.0.0.0 -address=/web.900.la/0.0.0.0 -address=/xc.macd.cn/0.0.0.0 -address=/xs.houyi.baofeng.net/0.0.0.0 -address=/yktj.yzz.cn/0.0.0.0 -address=/zo66.com/0.0.0.0 -address=/zt2088.com/0.0.0.0 -address=/146.148.85.61/0.0.0.0 -address=/hdapp1003-a.akamaihd.net/0.0.0.0 -address=/hdapp1008-a.akamaihd.net/0.0.0.0 -address=/hdsrc-a.akamaihd.net/0.0.0.0 -address=/46.165.197.153/0.0.0.0 -address=/46.165.197.231/0.0.0.0 -address=/74.117.182.77/0.0.0.0 -address=/78.140.131.214/0.0.0.0 -address=/clkrev.com/0.0.0.0 -address=/a.livesportmedia.eu/0.0.0.0 -address=/a.ucoz.net/0.0.0.0 -address=/a.watershed-publishing.com/0.0.0.0 -address=/a04296f070c0146f314d-0dcad72565cb350972beb3666a86f246.r50.cf5.rackcdn.com/0.0.0.0 -address=/ad.about.co.kr/0.0.0.0 -address=/ad.accessmediaproductions.com/0.0.0.0 -address=/ad.bitmedia.io/0.0.0.0 -address=/ad.flux.com/0.0.0.0 -address=/ad.foxnetworks.com/0.0.0.0 -address=/ad.icasthq.com/0.0.0.0 -address=/ad.idgtn.net/0.0.0.0 -address=/ad.jamba.net/0.0.0.0 -address=/ad.livere.co.kr/0.0.0.0 -address=/ad.mail.ru/0.0.0.0 -address=/ad.mesomorphosis.com/0.0.0.0 -address=/ad.openmultimedia.biz/0.0.0.0 -address=/ad.outsidehub.com/0.0.0.0 -address=/ad.pickple.net/0.0.0.0 -address=/ad.proxy.sh/0.0.0.0 -address=/ad.r.worldssl.net/0.0.0.0 -address=/ad.rambler.ru/0.0.0.0 -address=/ad.reklamport.com/0.0.0.0 -address=/ad.sensismediasmart.com.au/0.0.0.0 -address=/ad.smartclip.net/0.0.0.0 -address=/ad.spielothek.so/0.0.0.0 -address=/ad.vidaroo.com/0.0.0.0 -address=/ad.winningpartner.com/0.0.0.0 -address=/add.bugun.com.tr/0.0.0.0 -address=/adingo.jp.eimg.jp/0.0.0.0 -address=/adn.ebay.com/0.0.0.0 -address=/adplus.goo.mx/0.0.0.0 -address=/ads.mp.mydas.mobi/0.0.0.0 -address=/adscaspion.appspot.com/0.0.0.0 -address=/adss.dotdo.net/0.0.0.0 -address=/adz.zwee.ly/0.0.0.0 -address=/aff.eteachergroup.com/0.0.0.0 -address=/aff.marathonbet.com/0.0.0.0 -address=/aff.svjump.com/0.0.0.0 -address=/affil.mupromo.com/0.0.0.0 -address=/affiliateprogram.keywordspy.com/0.0.0.0 -address=/affiliates.allposters.com/0.0.0.0 -address=/affiliatesmedia.sbobet.com/0.0.0.0 -address=/affiliation.fotovista.com/0.0.0.0 -address=/agenda.complex.com/0.0.0.0 -address=/airpushmarketing.s3.amazonaws.com/0.0.0.0 -address=/ais.abacast.com/0.0.0.0 -address=/analytics.disneyinternational.com/0.0.0.0 -address=/ard.ihookup.com/0.0.0.0 -address=/award.sitekeuring.net/0.0.0.0 -address=/b.babylon.com/0.0.0.0 -address=/b.livesport.eu/0.0.0.0 -address=/b92.putniktravel.com/0.0.0.0 -address=/banner.101xp.com/0.0.0.0 -address=/banner.3ddownloads.com/0.0.0.0 -address=/banner.europacasino.com/0.0.0.0 -address=/banner.telefragged.com/0.0.0.0 -address=/banner.titancasino.com/0.0.0.0 -address=/bl.wavecdn.de/0.0.0.0 -address=/blamads-assets.s3.amazonaws.com/0.0.0.0 -address=/bluhostedbanners.blucigs.com/0.0.0.0 -address=/box.anchorfree.net/0.0.0.0 -address=/btr.domywife.com/0.0.0.0 -address=/c.netu.tv/0.0.0.0 -address=/cas.clickability.com/0.0.0.0 -address=/cash.neweramediaworks.com/0.0.0.0 -address=/cerebral.typn.com/0.0.0.0 -address=/cjmooter.xcache.kinxcdn.com/0.0.0.0 -address=/clarity.abacast.com/0.0.0.0 -address=/click.eyk.net/0.0.0.0 -address=/clickstrip.6wav.es/0.0.0.0 -address=/connect.summit.co.uk/0.0.0.0 -address=/content.livesportmedia.eu/0.0.0.0 -address=/cpm.amateurcommunity.de/0.0.0.0 -address=/creatives.inmotionhosting.com/0.0.0.0 -address=/creatives.summitconnect.co.uk/0.0.0.0 -address=/d13czkep7ax7nj.cloudfront.net/0.0.0.0 -address=/d140sbu1b1m3h0.cloudfront.net/0.0.0.0 -address=/d15565yqt7pv7r.cloudfront.net/0.0.0.0 -address=/d15gt9gwxw5wu0.cloudfront.net/0.0.0.0 -address=/d17f2fxw547952.cloudfront.net/0.0.0.0 -address=/d19972r8wdpby8.cloudfront.net/0.0.0.0 -address=/d1ade4ciw4bqyc.cloudfront.net/0.0.0.0 -address=/d1cl1sqtf3o420.cloudfront.net/0.0.0.0 -address=/d1d95giojjkirt.cloudfront.net/0.0.0.0 -address=/d1ep3cn6qx0l3z.cloudfront.net/0.0.0.0 -address=/d1ey3fksimezm4.cloudfront.net/0.0.0.0 -address=/d1fo96xm8fci0r.cloudfront.net/0.0.0.0 -address=/d1gojtoka5qi10.cloudfront.net/0.0.0.0 -address=/d1k74lgicilrr3.cloudfront.net/0.0.0.0 -address=/d1noellhv8fksc.cloudfront.net/0.0.0.0 -address=/d1pcttwib15k25.cloudfront.net/0.0.0.0 -address=/d1pdpbxj733bb1.cloudfront.net/0.0.0.0 -address=/d1spb7fplenrp4.cloudfront.net/0.0.0.0 -address=/d1vbm0eveofcle.cloudfront.net/0.0.0.0 -address=/d1zgderxoe1a.cloudfront.net/0.0.0.0 -address=/d23guct4biwna6.cloudfront.net/0.0.0.0 -address=/d23nyyb6dc29z6.cloudfront.net/0.0.0.0 -address=/d25ruj6ht8bs1.cloudfront.net/0.0.0.0 -address=/d25xkbr68qqtcn.cloudfront.net/0.0.0.0 -address=/d26dzd2k67we08.cloudfront.net/0.0.0.0 -address=/d26j9bp9bq4uhd.cloudfront.net/0.0.0.0 -address=/d26wy0pxd3qqpv.cloudfront.net/0.0.0.0 -address=/d27jt7xr4fq3e8.cloudfront.net/0.0.0.0 -address=/d287x05ve9a63s.cloudfront.net/0.0.0.0 -address=/d29r6igjpnoykg.cloudfront.net/0.0.0.0 -address=/d2anfhdgjxf8s1.cloudfront.net/0.0.0.0 -address=/d2b2x1ywompm1b.cloudfront.net/0.0.0.0 -address=/d2b65ihpmocv7w.cloudfront.net/0.0.0.0 -address=/d2bgg7rjywcwsy.cloudfront.net/0.0.0.0 -address=/d2cxkkxhecdzsq.cloudfront.net/0.0.0.0 -address=/d2d2lbvq8xirbs.cloudfront.net/0.0.0.0 -address=/d2dxgm96wvaa5j.cloudfront.net/0.0.0.0 -address=/d2gpgaupalra1d.cloudfront.net/0.0.0.0 -address=/d2gtlljtkeiyzd.cloudfront.net/0.0.0.0 -address=/d2gz6iop9uxobu.cloudfront.net/0.0.0.0 -address=/d2hap2bsh1k9lw.cloudfront.net/0.0.0.0 -address=/d2ipklohrie3lo.cloudfront.net/0.0.0.0 -address=/d2mic0r0bo3i6z.cloudfront.net/0.0.0.0 -address=/d2mq0uzafv8ytp.cloudfront.net/0.0.0.0 -address=/d2nlytvx51ywh9.cloudfront.net/0.0.0.0 -address=/d2o307dm5mqftz.cloudfront.net/0.0.0.0 -address=/d2oallm7wrqvmi.cloudfront.net/0.0.0.0 -address=/d2omcicc3a4zlg.cloudfront.net/0.0.0.0 -address=/d2pgy8h4i30on1.cloudfront.net/0.0.0.0 -address=/d2plxos94peuwp.cloudfront.net/0.0.0.0 -address=/d2r359adnh3sfn.cloudfront.net/0.0.0.0 -address=/d2s64zaa9ua7uv.cloudfront.net/0.0.0.0 -address=/d2tgev5wuprbqq.cloudfront.net/0.0.0.0 -address=/d2tnimpzlb191i.cloudfront.net/0.0.0.0 -address=/d2ubicnllnnszy.cloudfront.net/0.0.0.0 -address=/d2ue9k1rhsumed.cloudfront.net/0.0.0.0 -address=/d2v4glj2m8yzg5.cloudfront.net/0.0.0.0 -address=/d2v9ajh2eysdau.cloudfront.net/0.0.0.0 -address=/d2vt6q0n0iy66w.cloudfront.net/0.0.0.0 -address=/d2yhukq7vldf1u.cloudfront.net/0.0.0.0 -address=/d2z1smm3i01tnr.cloudfront.net/0.0.0.0 -address=/d31807xkria1x4.cloudfront.net/0.0.0.0 -address=/d32pxqbknuxsuy.cloudfront.net/0.0.0.0 -address=/d33f10u0pfpplc.cloudfront.net/0.0.0.0 -address=/d33otidwg56k90.cloudfront.net/0.0.0.0 -address=/d34obr29voew8l.cloudfront.net/0.0.0.0 -address=/d34rdvn2ky3gnm.cloudfront.net/0.0.0.0 -address=/d37kzqe5knnh6t.cloudfront.net/0.0.0.0 -address=/d38pxm3dmrdu6d.cloudfront.net/0.0.0.0 -address=/d38r21vtgndgb1.cloudfront.net/0.0.0.0 -address=/d39xqloz8t5a6x.cloudfront.net/0.0.0.0 -address=/d3bvcf24wln03d.cloudfront.net/0.0.0.0 -address=/d3dphmosjk9rot.cloudfront.net/0.0.0.0 -address=/d3f9mcik999dte.cloudfront.net/0.0.0.0 -address=/d3fzrm6pcer44x.cloudfront.net/0.0.0.0 -address=/d3irruagotonpp.cloudfront.net/0.0.0.0 -address=/d3iwjrnl4m67rd.cloudfront.net/0.0.0.0 -address=/d3lvr7yuk4uaui.cloudfront.net/0.0.0.0 -address=/d3lzezfa753mqu.cloudfront.net/0.0.0.0 -address=/d3m41swuqq4sv5.cloudfront.net/0.0.0.0 -address=/d3nvrqlo8rj1kw.cloudfront.net/0.0.0.0 -address=/d3p9ql8flgemg7.cloudfront.net/0.0.0.0 -address=/d3pkae9owd2lcf.cloudfront.net/0.0.0.0 -address=/d3q2dpprdsteo.cloudfront.net/0.0.0.0 -address=/d3qszud4qdthr8.cloudfront.net/0.0.0.0 -address=/d3t2wca0ou3lqz.cloudfront.net/0.0.0.0 -address=/d3t9ip55bsuxrf.cloudfront.net/0.0.0.0 -address=/d3tdefw8pwfkbk.cloudfront.net/0.0.0.0 -address=/d3vc1nm9xbncz5.cloudfront.net/0.0.0.0 -address=/d5pvnbpawsaav.cloudfront.net/0.0.0.0 -address=/d6bdy3eto8fyu.cloudfront.net/0.0.0.0 -address=/d8qy7md4cj3gz.cloudfront.net/0.0.0.0 -address=/dal9hkyfi0m0n.cloudfront.net/0.0.0.0 -address=/dart.clearchannel.com/0.0.0.0 -address=/dasfdasfasdf.no-ip.info/0.0.0.0 -address=/data.neuroxmedia.com/0.0.0.0 -address=/dbam.dashbida.com/0.0.0.0 -address=/ddwht76d9jvfl.cloudfront.net/0.0.0.0 -address=/dew9ckzjyt2gn.cloudfront.net/0.0.0.0 -address=/dff7tx5c2qbxc.cloudfront.net/0.0.0.0 -address=/display.digitalriver.com/0.0.0.0 -address=/disy2s34euyqm.cloudfront.net/0.0.0.0 -address=/dizixdllzznrf.cloudfront.net/0.0.0.0 -address=/djlf5xdlz7m8m.cloudfront.net/0.0.0.0 -address=/dkd69bwkvrht1.cloudfront.net/0.0.0.0 -address=/dkdwv3lcby5zi.cloudfront.net/0.0.0.0 -address=/dl392qndlveq0.cloudfront.net/0.0.0.0 -address=/dl5v5atodo7gn.cloudfront.net/0.0.0.0 -address=/dlupv9uqtjlie.cloudfront.net/0.0.0.0 -address=/dm0acvguygm9h.cloudfront.net/0.0.0.0 -address=/dm8srf206hien.cloudfront.net/0.0.0.0 -address=/dp51h10v6ggpa.cloudfront.net/0.0.0.0 -address=/dpsq2uzakdgqz.cloudfront.net/0.0.0.0 -address=/dq2tgxnc2knif.cloudfront.net/0.0.0.0 -address=/dqhi3ea93ztgv.cloudfront.net/0.0.0.0 -address=/dr8pk6ovub897.cloudfront.net/0.0.0.0 -address=/duct5ntjian71.cloudfront.net/0.0.0.0 -address=/dvf2u7vwmkr5w.cloudfront.net/0.0.0.0 -address=/dvt4pepo9om3r.cloudfront.net/0.0.0.0 -address=/dx5qvhwg92mjd.cloudfront.net/0.0.0.0 -address=/dxq6c0tx3v6mm.cloudfront.net/0.0.0.0 -address=/dxqd86uz345mg.cloudfront.net/0.0.0.0 -address=/dy48bnzanqw0v.cloudfront.net/0.0.0.0 -address=/dycpc40hvg4ki.cloudfront.net/0.0.0.0 -address=/dyl3p6so5yozo.cloudfront.net/0.0.0.0 -address=/epowernetworktrackerimages.s3.amazonaws.com/0.0.0.0 -address=/euwidget.imshopping.com/0.0.0.0 -address=/events.kalooga.com/0.0.0.0 -address=/ext.theglobalweb.com/0.0.0.0 -address=/feeds.logicbuy.com/0.0.0.0 -address=/ft.pnop.com/0.0.0.0 -address=/gateway.fortunelounge.com/0.0.0.0 -address=/gateways.s3.amazonaws.com/0.0.0.0 -address=/geo.connexionsecure.com/0.0.0.0 -address=/geobanner.friendfinder.com/0.0.0.0 -address=/geobanner.passion.com/0.0.0.0 -address=/gfaf-banners.s3.amazonaws.com/0.0.0.0 -address=/homad-global-configs.schneevonmorgen.com/0.0.0.0 -address=/im.ov.yahoo.co.jp/0.0.0.0 -address=/ima3vpaid.appspot.com/0.0.0.0 -address=/indieclick.3janecdn.com/0.0.0.0 -address=/inskin.vo.llnwd.net/0.0.0.0 -address=/k2team.kyiv.ua/0.0.0.0 -address=/mads.aol.com/0.0.0.0 -address=/marketing.888.com/0.0.0.0 -address=/mb.zam.com/0.0.0.0 -address=/mozo-widgets.f2.com.au/0.0.0.0 -address=/network.aufeminin.com/0.0.0.0 -address=/network.business.com/0.0.0.0 -address=/oclasrv.comindex-2.htmlapu.php/0.0.0.0 -address=/odin.goo.mx/0.0.0.0 -address=/on.maxspeedcdn.com/0.0.0.0 -address=/ox-i.cordillera.tv/0.0.0.0 -address=/partner.bargaindomains.com/0.0.0.0 -address=/partner.catchy.com/0.0.0.0 -address=/partner.premiumdomains.com/0.0.0.0 -address=/partnerads.ysm.yahoo.com/0.0.0.0 -address=/partnerads1.ysm.yahoo.com/0.0.0.0 -address=/partners.fshealth.com/0.0.0.0 -address=/partners.optiontide.com/0.0.0.0 -address=/partners.rochen.com/0.0.0.0 -address=/partners.sportingbet.com.au/0.0.0.0 -address=/partners.vouchedfor.co.uk/0.0.0.0 -address=/partners.xpertmarket.com/0.0.0.0 -address=/priceinfo.comuv.com/0.0.0.0 -address=/promos.fling.com/0.0.0.0 -address=/promote.pair.com/0.0.0.0 -address=/promotions.iasbet.com/0.0.0.0 -address=/pub.betclick.com/0.0.0.0 -address=/pubs.hiddennetwork.com/0.0.0.0 -address=/rack.bauermedia.co.uk/0.0.0.0 -address=/res3.feedsportal.com/0.0.0.0 -address=/revealads.appspot.com/0.0.0.0 -address=/rotabanner.kulichki.net/0.0.0.0 -address=/rotator.tradetracker.net/0.0.0.0 -address=/s-yoolk-banner-assets.yoolk.com/0.0.0.0 -address=/s-yoolk-billboard-assets.yoolk.com/0.0.0.0 -address=/secretmedia.s3.amazonaws.com/0.0.0.0 -address=/servedby.keygamesnetwork.com/0.0.0.0 -address=/sitescout-video-cdn.edgesuite.net/0.0.0.0 -address=/slot.union.ucweb.com/0.0.0.0 -address=/smart.styria-digital.com/0.0.0.0 -address=/squarespace.evyy.net/0.0.0.0 -address=/stats.hosting24.com/0.0.0.0 -address=/stats.sitesuite.org/0.0.0.0 -address=/stuff-nzwhistleout.s3.amazonaws.com/0.0.0.0 -address=/survey.g.doubleclick.net/0.0.0.0 -address=/syndication.jsadapi.com/0.0.0.0 -address=/syndication1.viraladnetwork.net/0.0.0.0 -address=/tap.more-results.net/0.0.0.0 -address=/ti.tradetracker.net/0.0.0.0 -address=/track.bcvcmedia.com/0.0.0.0 -address=/twinplan.com/0.0.0.0 -address=/vendor1.fitschigogerl.com/0.0.0.0 -address=/web-jp.ad-v.jp/0.0.0.0 -address=/whistleout.s3.amazonaws.com/0.0.0.0 -address=/widget.crowdignite.com/0.0.0.0 -address=/widget.kelkoo.com/0.0.0.0 -address=/widget.raaze.com/0.0.0.0 -address=/widget.searchschoolsnetwork.com/0.0.0.0 -address=/widget.shopstyle.com.au/0.0.0.0 -address=/widget.solarquotes.com.au/0.0.0.0 -address=/widgets.realestate.com.au/0.0.0.0 -address=/wtpn.twenga.co.uk/0.0.0.0 -address=/wtpn.twenga.de/0.0.0.0 -address=/yb.torchbrowser.com/0.0.0.0 -address=/yeas.yahoo.co.jp/0.0.0.0 -address=/zapads.zapak.com/0.0.0.0 -address=/zeus.qj.net/0.0.0.0 -address=/iadc.qwapi.com/0.0.0.0 -address=/d1nmk7iw7hajjn.cloudfront.net/0.0.0.0 -address=/ad.duga.jp/0.0.0.0 -address=/ad.iloveinterracial.com/0.0.0.0 -address=/ads.videosz.com/0.0.0.0 -address=/affiliates.thrixxx.com/0.0.0.0 -address=/ard.sweetdiscreet.com/0.0.0.0 -address=/bannershotlink.perfectgonzo.com/0.0.0.0 -address=/blaaaa12.googlecode.com/0.0.0.0 -address=/br.blackfling.com/0.0.0.0 -address=/br.fling.com/0.0.0.0 -address=/br.realitykings.com/0.0.0.0 -address=/cpm.amateurcommunity.com/0.0.0.0 -address=/dailyvideo.securejoin.com/0.0.0.0 -address=/desk.cmix.org/0.0.0.0 -address=/feeds.videosz.com/0.0.0.0 -address=/ff.nsg.org.ua/0.0.0.0 -address=/freexxxvideoclip.aebn.net/0.0.0.0 -address=/geo.cliphunter.com/0.0.0.0 -address=/geo.frtya.com/0.0.0.0 -address=/geobanner.adultfriendfinder.com/0.0.0.0 -address=/geobanner.alt.com/0.0.0.0 -address=/geobanner.socialflirt.com/0.0.0.0 -address=/partners.pornerbros.com/0.0.0.0 -address=/s1magnettvcom.maynemyltf.netdna-cdn.com/0.0.0.0 -address=/surv.xbizmedia.com/0.0.0.0 -address=/sweet.game-rust.ru/0.0.0.0 -address=/widgets.comcontent.net/0.0.0.0 -address=/widgetssec.cam-content.com/0.0.0.0 -address=/a.cdngeek.net/0.0.0.0 -address=/a.clipconverter.cc/0.0.0.0 -address=/a.giantrealm.com/0.0.0.0 -address=/a.i-sgcm.com/0.0.0.0 -address=/a.kat.cr/0.0.0.0 -address=/a.kickass.to/0.0.0.0 -address=/a.lolwot.com/0.0.0.0 -address=/ac2.msn.com/0.0.0.0 -address=/access.njherald.com/0.0.0.0 -address=/ad.cooks.com/0.0.0.0 -address=/ad.digitimes.com.tw/0.0.0.0 -address=/ad.directmirror.com/0.0.0.0 -address=/ad.download.cnet.com/0.0.0.0 -address=/ad.evozi.com/0.0.0.0 -address=/ad.fnnews.com/0.0.0.0 -address=/ad.jamster.com/0.0.0.0 -address=/ad.lyricswire.com/0.0.0.0 -address=/ad.mangareader.net/0.0.0.0 -address=/ad.newegg.com/0.0.0.0 -address=/ad.pandora.tv/0.0.0.0 -address=/ad.reachlocal.com/0.0.0.0 -address=/ad.search.ch/0.0.0.0 -address=/ad.services.distractify.com/0.0.0.0 -address=/adcitrus.com/0.0.0.0 -address=/addirector.vindicosuite.com/0.0.0.0 -address=/adds.weatherology.com/0.0.0.0 -address=/adlink.shopsafe.co.nz/0.0.0.0 -address=/admeta.vo.llnwd.net/0.0.0.0 -address=/ads-rolandgarros.com/0.0.0.0 -address=/ads.pof.com/0.0.0.0 -address=/ads.yahoo.com/0.0.0.0 -address=/ads.zynga.com/0.0.0.0 -address=/adsatt.abcnews.starwave.com/0.0.0.0 -address=/adsatt.espn.starwave.com/0.0.0.0 -address=/adshare.freedocast.com/0.0.0.0 -address=/adsor.openrunner.com/0.0.0.0 -address=/adss.yahoo.com/0.0.0.0 -address=/adstil.indiatimes.com/0.0.0.0 -address=/adtest.theonion.com/0.0.0.0 -address=/advertise.twitpic.com/0.0.0.0 -address=/advice-ads-cdn.vice.com/0.0.0.0 -address=/adx.kat.ph/0.0.0.0 -address=/aff.lmgtfy.com/0.0.0.0 -address=/ajnad.aljazeera.net/0.0.0.0 -address=/amz.steamprices.com/0.0.0.0 -address=/analytics.mmosite.com/0.0.0.0 -address=/as.inbox.com/0.0.0.0 -address=/asd.projectfreetv.so/0.0.0.0 -address=/avpa.dzone.com/0.0.0.0 -address=/b.localpages.com/0.0.0.0 -address=/b.thefile.me/0.0.0.0 -address=/ba.ccm2.net/0.0.0.0 -address=/ba.kioskea.net/0.0.0.0 -address=/banner.automotiveworld.com/0.0.0.0 -address=/banner.itweb.co.za/0.0.0.0 -address=/banners.beevpn.com/0.0.0.0 -address=/banners.beted.com/0.0.0.0 -address=/banners.clubworldgroup.com/0.0.0.0 -address=/banners.expressindia.com/0.0.0.0 -address=/banners.i-comers.com/0.0.0.0 -address=/banners.itweb.co.za/0.0.0.0 -address=/banners.playocio.com/0.0.0.0 -address=/beap.gemini.yahoo.com/0.0.0.0 -address=/bizanti.youwatch.org/0.0.0.0 -address=/bnrs.ilm.ee/0.0.0.0 -address=/bwp.theinsider.com.com/0.0.0.0 -address=/cadvv.heraldm.com/0.0.0.0 -address=/cadvv.koreaherald.com/0.0.0.0 -address=/canvas.thenextweb.com/0.0.0.0 -address=/click.livedoor.com/0.0.0.0 -address=/clicks.superpages.com/0.0.0.0 -address=/cnetwidget.creativemark.co.uk/0.0.0.0 -address=/collector.viki.io/0.0.0.0 -address=/creatives.livejasmin.com/0.0.0.0 -address=/d.annarbor.com/0.0.0.0 -address=/d.businessinsider.com/0.0.0.0 -address=/d.gossipcenter.com/0.0.0.0 -address=/d.thelocal.com/0.0.0.0 -address=/dads.new.digg.com/0.0.0.0 -address=/dailydeals.amarillo.com/0.0.0.0 -address=/dailydeals.augustachronicle.com/0.0.0.0 -address=/dailydeals.brainerddispatch.com/0.0.0.0 -address=/dailydeals.lubbockonline.com/0.0.0.0 -address=/dailydeals.onlineathens.com/0.0.0.0 -address=/dailydeals.savannahnow.com/0.0.0.0 -address=/dcad.watersoul.com/0.0.0.0 -address=/deals.ledgertranscript.com/0.0.0.0 -address=/digdug.divxnetworks.com/0.0.0.0 -address=/display.superbay.net/0.0.0.0 -address=/dontblockme.modaco.com/0.0.0.0 -address=/ehow.com/media/ad.html/0.0.0.0 -address=/eva.ucas.com/0.0.0.0 -address=/fan.twitch.tv/0.0.0.0 -address=/fimserve.ign.com/0.0.0.0 -address=/findnsave.idahostatesman.com/0.0.0.0 -address=/g.brothersoft.com/0.0.0.0 -address=/gameads.digyourowngrave.com/0.0.0.0 -address=/geoshopping.nzherald.co.nz/0.0.0.0 -address=/get.thefile.me/0.0.0.0 -address=/gfx.infomine.com/0.0.0.0 -address=/green.virtual-nights.com/0.0.0.0 -address=/hejban.youwatch.org/0.0.0.0 -address=/ibanners.empoweredcomms.com.au/0.0.0.0 -address=/iframe.travel.yahoo.com/0.0.0.0 -address=/imads.rediff.com/0.0.0.0 -address=/kat-ads.torrenticity.com/0.0.0.0 -address=/keepthelighton.vpsboard.com/0.0.0.0 -address=/kermit.macnn.com/0.0.0.0 -address=/life.imagepix.org/0.0.0.0 -address=/ll.a.hulu.com/0.0.0.0 -address=/londonprivaterentals.standard.co.uk/0.0.0.0 -address=/looky.hyves.org/0.0.0.0 -address=/lw2.gamecopyworld.com/0.0.0.0 -address=/mads.dailymail.co.uk/0.0.0.0 -address=/marketingsolutions.yahoo.com/0.0.0.0 -address=/mb.hockeybuzz.com/0.0.0.0 -address=/mealsandsteals.sandiego6.com/0.0.0.0 -address=/media-delivery.armorgames.com/0.0.0.0 -address=/media-mgmt.armorgames.com/0.0.0.0 -address=/mediamgr.ugo.com/0.0.0.0 -address=/nest.youwatch.org/0.0.0.0 -address=/netspidermm.indiatimes.com/0.0.0.0 -address=/network.sofeminine.co.uk/0.0.0.0 -address=/noram.srv.ysm.yahoo.com/0.0.0.0 -address=/oas.autotrader.co.uk/0.0.0.0 -address=/oas.skyscanner.net/0.0.0.0 -address=/oasc07.citywire.co.uk/0.0.0.0 -address=/oascentral.chron.com/0.0.0.0 -address=/oascentral.hosted.ap.org/0.0.0.0 -address=/oascentral.newsmax.com/0.0.0.0 -address=/ox-d.rantsports.com/0.0.0.0 -address=/ox-d.sbnation.com/0.0.0.0 -address=/ox-d.wetransfer.com/0.0.0.0 -address=/ox.furaffinity.net/0.0.0.0 -address=/partners-z.com/0.0.0.0 -address=/photo.net/equipment/pg-160/0.0.0.0 -address=/player.1800coupon.com/0.0.0.0 -address=/player.1stcreditrepairs.com/0.0.0.0 -address=/player.800directories.com/0.0.0.0 -address=/player.accoona.com/0.0.0.0 -address=/player.alloutwedding.com/0.0.0.0 -address=/player.insuranceandhealth.com/0.0.0.0 -address=/pmm.people.com.cn/0.0.0.0 -address=/pop-over.powered-by.justplayzone.com/0.0.0.0 -address=/prerollads.ign.com/0.0.0.0 -address=/promo.fileforum.com/0.0.0.0 -address=/rad.microsoft.com/0.0.0.0 -address=/rad.msn.com/0.0.0.0 -address=/red.bayimg.net/0.0.0.0 -address=/redvase.bravenet.com/0.0.0.0 -address=/richmedia.yimg.com/0.0.0.0 -address=/roia.com/0.0.0.0 -address=/rpt.anchorfree.net/0.0.0.0 -address=/searchignited.com/0.0.0.0 -address=/sebar.thand.info/0.0.0.0 -address=/shoppingpartners2.futurenet.com/0.0.0.0 -address=/sponsors.s2ki.com/0.0.0.0 -address=/sponsors.webosroundup.com/0.0.0.0 -address=/srv.thespacereporter.com/0.0.0.0 -address=/storewidget.pcauthority.com.au/0.0.0.0 -address=/stream.heavenmedia.net/0.0.0.0 -address=/tanzanite.infomine.com/0.0.0.0 -address=/targetedinfo.com/0.0.0.0 -address=/targetedtopic.com/0.0.0.0 -address=/thejesperbay.com/0.0.0.0 -address=/themis.yahoo.com/0.0.0.0 -address=/tmcs.net/0.0.0.0 -address=/tom.itv.com/0.0.0.0 -address=/tracking.hostgator.com/0.0.0.0 -address=/ua.badongo.com/0.0.0.0 -address=/uimserv.net/0.0.0.0 -address=/unicast.ign.com/0.0.0.0 -address=/unicast.msn.com/0.0.0.0 -address=/verdict.abc.go.com/0.0.0.0 -address=/vice-ads-cdn.vice.com/0.0.0.0 -address=/w.homes.yahoo.net/0.0.0.0 -address=/webmaster.extabit.com/0.0.0.0 -address=/widget.directory.dailycommercial.com/0.0.0.0 -address=/x.castanet.net/0.0.0.0 -address=/yea.uploadimagex.com/0.0.0.0 -address=/yesbeby.whies.info/0.0.0.0 -address=/yrt7dgkf.exashare.com/0.0.0.0 -address=/ysm.yahoo.com/0.0.0.0 -address=/zads.care2.com/0.0.0.0 -address=/a.eporner.com/0.0.0.0 -address=/a.heavy-r.com/0.0.0.0 -address=/a.killergram-girls.com/0.0.0.0 -address=/ad.eporner.com/0.0.0.0 -address=/ad.slutload.com/0.0.0.0 -address=/ad.thisav.com/0.0.0.0 -address=/ad.userporn.com/0.0.0.0 -address=/ads.xxxbunker.com/0.0.0.0 -address=/affiliates.goodvibes.com/0.0.0.0 -address=/banner1.pornhost.com/0.0.0.0 -address=/banners.cams.com/0.0.0.0 -address=/bob.crazyshit.com/0.0.0.0 -address=/brcache.madthumbs.com/0.0.0.0 -address=/creatives.cliphunter.com/0.0.0.0 -address=/creatives.pichunter.com/0.0.0.0 -address=/dot.eporner.com/0.0.0.0 -address=/dot2.eporner.com/0.0.0.0 -address=/exit.macandbumble.com/0.0.0.0 -address=/lw1.cdmediaworld.com/0.0.0.0 -address=/m2.xhamster.com/0.0.0.0 -address=/partners.xhamster.com/0.0.0.0 -address=/pr-static.empflix.com/0.0.0.0 -address=/pr-static.tnaflix.com/0.0.0.0 -address=/r.radikal.ru/0.0.0.0 -address=/rev.fapdu.com/0.0.0.0 -address=/site.img.4tube.com/0.0.0.0 -address=/static.kinghost.com/0.0.0.0 -address=/x.eroticity.net/0.0.0.0 -address=/x.vipergirls.to/0.0.0.0