diff --git a/.gitignore b/.gitignore index a5e05d1..d423e64 100644 --- a/.gitignore +++ b/.gitignore @@ -54,6 +54,6 @@ docs/_build/ # PyBuilder target/ -config.json + *.conf diff --git a/README.md b/README.md index c0dcc08..ddbd180 100644 --- a/README.md +++ b/README.md @@ -1,52 +1,67 @@ dnsproxy ======== -This project is still in beta! It currently works well, but some changes may be expected. +Project Based on https://github.com/jamiees2/dnsproxy -This is based on @trick77's original work on [tunlr-style-dns-unblocking](https://github.com/trick77/tunlr-style-dns-unblocking/) +Added sniproxy and domain list to route specific Domains to the proxy. -The purpose for this project is to make it easy to set up a fast smart DNS service on your own. It is possible to get a US VPS for 1$/mo which is well under the current 4$/mo for most smart DNS services. It is also potentially alot faster, as you then have a whole proxy server to yourself. +Unblock: -Another purpose is privacy. By changing your DNS servers, you allow whoever is on the other side to see almost all the websites you visit. Some providers explicitly state in their TOS that they log everything, which gives them control over your data. A better option is that you control those servers. +Zattoo + +Wilmaa + +Teleboy + +Blue TV (Swisscom) + +....and many more. Prerequisites: -- A VPS based in the country you want, preferrably running Ubuntu 14.04. A 128MB server is enough. +- A VPS based in the country you want, preferrably running Ubuntu 20.04. A 128MB server is enough. - python -- haproxy - -For `sni` and `dnat` setup: +- sniproxy - dnsmasq -The configuration generator (dnsproxy.py) offers three different possibilities for setup: -- [sni (Simple Setup)](https://github.com/jamiees2/dnsproxy/wiki/SNI-Setup) -- [dnat (Advanced Setup)](https://github.com/jamiees2/dnsproxy/wiki/DNAT-Setup) -- [local (Advanced Setup)](https://github.com/jamiees2/dnsproxy/wiki/Local-Setup) -- manual (Default) +The configuration generator (dnsproxy.py) offers works with sniproxy with the following Setup: +- [sni (Simple Setup)](https://github.com/jamiees2/dnsproxy/wiki/SNI-Setup) (You dont need HAProxy, as we use sniproxy in our project Fork) + + +You can generate each configuration file separately with `-o`. Example: + +```python dnsproxy.py -o sniproxy``` + +```python dnsproxy.py -o dnsmasq``` + +You can also generate a Hosts file for your Client, then you can skip dnsmasq. + +```python dnsproxy.py -o hosts``` + +Copy and overwrite the generated configs for sniproxy and dnsmasq. +Restart the Service and your dns Proxy should be up and running. -You can generate each configuration file separately with `-m manual`. Example: -```python dnsproxy.py -m manual -o haproxy```. `-m manual` is also default, so this can be simplified to ```python dnsproxy.py -o haproxy```. +Now just point your DNS Entries to your VPS and the traffic for the needed Domains goes through the Proxy. -It is also possible to specify which proxy list you would like to use, based on country. You can specify that by passing `-c `, where `` is a suffix of any file in the `proxies/` directory. For example, if you wish to generate configuration for a uk based SNI proxy, you can run `python dnsproxy.py -c uk -m sni`. The default country is `us`. +It is also possible to specify which proxy list you would like to use, based on country. You can specify that by passing `-c `, where `` is a suffix of any file in the `proxies/` directory. For example, if you wish to generate configuration for a uk based SNI proxy, you can run `python dnsproxy.py -c uk -m sni`. The default country is `ch`. -Check the wiki for additional information, along with these links by @trick77: -- http://trick77.com/2014/03/01/tunlr-style-dns-unblocking-pandora-netflix-hulu-et-al/ -- http://trick77.com/2014/03/02/dns-unblocking-using-dnsmasq-haproxy/ *If you would like to add a service, please send a pull request.* Output of `dnsproxy.py -h`: ``` usage: dnsproxy.py [-h] [-m {manual,sni,dnat,local}] - [-o {dnsmasq,haproxy,netsh,hosts,rinetd,iptables} [{dnsmasq,haproxy,netsh,hosts,rinetd,iptables} ...]] - [-c COUNTRY] [-d] [--no-test] [--ip IP] [--bind-ip BIND_IP] - [--base-ip BASE_IP] [--base-port BASE_PORT] [--save] - [--output-dir OUTPUT_DIR] [--only [ONLY [ONLY ...]]] - [--skip [SKIP [SKIP ...]]] + [-o {dnsmasq,haproxy,netsh,hosts,rinetd,iptables,iproute2,sniproxy}] + [-c COUNTRY [COUNTRY ...]] [-d] [--ip IP] + [--bind-ip BIND_IP] [--base-ip BASE_IP] + [--base-port BASE_PORT] [--save] [--output-dir OUTPUT_DIR] + [--only [ONLY [ONLY ...]]] [--skip [SKIP [SKIP ...]]] [--dnsmasq-filename DNSMASQ_FILENAME] [--haproxy-filename HAPROXY_FILENAME] + [--sniproxy-filename SNIPROXY_FILENAME] [--iptables-filename IPTABLES_FILENAME] + [--iproute2-filename IPROUTE2_FILENAME] [--netsh-filename NETSH_FILENAME] [--hosts-filename HOSTS_FILENAME] [--rinetd-filename RINETD_FILENAME] @@ -57,16 +72,14 @@ optional arguments: -h, --help show this help message and exit -m {manual,sni,dnat,local}, --mode {manual,sni,dnat,local} Presets for configuration file generation. - -o {dnsmasq,haproxy,netsh,hosts,rinetd,iptables} [{dnsmasq,haproxy,netsh,hosts,rinetd,iptables} ...], --output {dnsmasq,haproxy,netsh,hosts,rinetd,iptables} [{dnsmasq,haproxy,netsh,hosts,rinetd,iptables} ...] + -o {dnsmasq,haproxy,netsh,hosts,rinetd,iptables,iproute2,sniproxy}, --output {dnsmasq,haproxy,netsh,hosts,rinetd,iptables,iproute2,sniproxy} Which configuration file(s) to generate. This is ignored when not in manual mode. - -c COUNTRY, --country COUNTRY - The country to use for generating the configuration. + -c COUNTRY [COUNTRY ...], --country COUNTRY [COUNTRY ...] + The country/-ies to use for generating the + configuration (space-separated, e.g. -c us uk). -d, --dnat Specify to use DNAT instead of SNI (Advanced). This is ignored when not in manual mode. - --no-test Specify to skip generating test configuration. This - means that you will not be able to test your setup - with the setup tester. --ip IP Specify the public IP to use --bind-ip BIND_IP Specify the IP that haproxy should bind to --base-ip BASE_IP Specify the base IP from which DNAT should start @@ -86,8 +99,12 @@ optional arguments: Specify the DNS configuration file name --haproxy-filename HAPROXY_FILENAME Specify the haproxy configuration file name + --sniproxy-filename SNIPROXY_FILENAME + Specify the sniproxy configuration file name --iptables-filename IPTABLES_FILENAME Specify the iptables configuration file name + --iproute2-filename IPROUTE2_FILENAME + Specify the iproute2 configuration file name --netsh-filename NETSH_FILENAME Specify the netsh configuration file name --hosts-filename HOSTS_FILENAME diff --git a/config-sample.json b/config-sample.json index ae3ca66..1679d06 100644 --- a/config-sample.json +++ b/config-sample.json @@ -8,7 +8,7 @@ "base_port": 27200, // Only required for mode "dnat" // "local_subnet": 24, // Only required for mode "dnat" // "local_device": "eth1", // Only required for mode "dnat" - "server_options": "check inter 10s fastinter 2s downinter 2s fall 1800", // Don't touch unless you know what you're doing + "server_options": "check init-addr none resolvers mydns", // Don't touch unless you know what you're doing "stats": { "enabled": true, // Set to true to enable HAProxy stats web page "port": 27199, diff --git a/config.json b/config.json new file mode 100644 index 0000000..8cba816 --- /dev/null +++ b/config.json @@ -0,0 +1,18 @@ +{ + "iptables_location": "iptables", // Required to generate iptables rules in mode "dnat" + "bind_ip": "*", // The IP address to bind to + "public_ip": "", // IP address of your remote server, required for every mode + "base_ip": "", + // "base_ip": "x.x.x.x", // Only required for modes "dnat" and "local" + // "base_ip": "127.0.0.51", // For local + "base_port": 27200, // Only required for mode "dnat" + // "local_subnet": 24, // Only required for mode "dnat" + // "local_device": "eth1", // Only required for mode "dnat" + "server_options": "check init-addr none resolvers mydns", // Don't touch unless you know what you're doing + "stats": { + "enabled": true, // Set to true to enable HAProxy stats web page + "port": 27199, + "user": "haproxy", + "password": "123456" + } +} diff --git a/dnsproxy.py b/dnsproxy.py index d793206..2cc5b29 100755 --- a/dnsproxy.py +++ b/dnsproxy.py @@ -127,7 +127,7 @@ def main(args): # Choose from the available modes if args.mode == "sni": - files = ["haproxy", "dnsmasq", "hosts"] + files = ["haproxy", "dnsmasq", "hosts", "sniproxy"] dnat = False elif args.mode == "dnat": files = ["haproxy", "dnsmasq", "hosts", "iptables", "iproute2"] @@ -156,7 +156,13 @@ def main(args): print_ips(config) for output in set(files): - if output == "haproxy": + if output == "sniproxy": + print_firewall(config, dnat=dnat) + print "" + sniproxy_content = generators.generate_sniproxy(config, dnat=dnat) + util.put_contents(args.sniproxy_filename, sniproxy_content, base_dir=args.output_dir) + print 'File generated: ' + args.sniproxy_filename + elif output == "haproxy": print_firewall(config, dnat=dnat) if config["stats"]["enabled"] and not config["stats"]["password"]: print "" @@ -212,8 +218,8 @@ def main(args): parser = argparse.ArgumentParser(description="Generate configuration files to setup a tunlr style smart DNS") parser.add_argument("-m", "--mode", choices=["manual", "sni", "dnat", "local"], default="manual", type=str, help="Presets for configuration file generation.") - parser.add_argument("-o", "--output", choices=["dnsmasq", "haproxy", "netsh", "hosts", "rinetd", "iptables", "iproute2"], default=["haproxy"], action="append", help="Which configuration file(s) to generate. This is ignored when not in manual mode.") - parser.add_argument("-c", "--country", default="us", type=str, nargs="+", help="The country/-ies to use for generating the configuration (space-separated, e.g. -c us uk).") + parser.add_argument("-o", "--output", choices=["dnsmasq", "haproxy", "netsh", "hosts", "rinetd", "iptables", "iproute2", "sniproxy"], default=["sniproxy"], action="append", help="Which configuration file(s) to generate. This is ignored when not in manual mode.") + parser.add_argument("-c", "--country", default="ch", type=str, nargs="+", help="The country/-ies to use for generating the configuration (space-separated, e.g. -c us uk).") parser.add_argument("-d", "--dnat", action="store_true", help="Specify to use DNAT instead of SNI (Advanced). This is ignored when not in manual mode.") parser.add_argument("--ip", type=str, default=None, help="Specify the public IP to use") @@ -229,6 +235,7 @@ def main(args): parser.add_argument("--dnsmasq-filename", type=str, default="dnsmasq-haproxy.conf", help="Specify the DNS configuration file name") parser.add_argument("--haproxy-filename", type=str, default="haproxy.conf", help="Specify the haproxy configuration file name") + parser.add_argument("--sniproxy-filename", type=str, default="sniproxy.conf", help="Specify the sniproxy configuration file name") parser.add_argument("--iptables-filename", type=str, default="iptables-haproxy.sh", help="Specify the iptables configuration file name") parser.add_argument("--iproute2-filename", type=str, default="iproute2-haproxy.sh", help="Specify the iproute2 configuration file name") parser.add_argument("--netsh-filename", type=str, default="netsh-haproxy.cmd", help="Specify the netsh configuration file name") diff --git a/generators/__init__.py b/generators/__init__.py index 8c1e12e..e2b3450 100644 --- a/generators/__init__.py +++ b/generators/__init__.py @@ -1,5 +1,6 @@ from haproxy import generate as generate_haproxy +from sniproxy import generate as generate_sniproxy from dnsmasq import generate as generate_dnsmasq from iptables import generate as generate_iptables from iproute2 import generate as generate_iproute2 diff --git a/generators/dnsmasq.py b/generators/dnsmasq.py index b68c4cc..bb3ab00 100644 --- a/generators/dnsmasq.py +++ b/generators/dnsmasq.py @@ -14,10 +14,13 @@ def generate(config, dnat=False): for chunk in c: if not dnat: - dnsmasq_content += generate_dns(chunk, public_ip) + + dnsmasq_contentwld = generate_dns(chunk, public_ip) + dnsmasq_content += dnsmasq_contentwld.replace("*", "") + else: - dnsmasq_content += generate_dns(chunk, current_ip) - + dnsmasq_contentwld += generate_dns(chunk, current_ip) + dnsmasq_content = dnsmasq_contentwld.replace("*", "") if dnat: for group in config["groups"].values(): for proxy in group["proxies"]: diff --git a/generators/haproxy.py b/generators/haproxy.py index d11b1ff..7eced03 100644 --- a/generators/haproxy.py +++ b/generators/haproxy.py @@ -9,8 +9,8 @@ def generate(config, dnat=False): current_port = config["base_port"] elif dnat: return - - haproxy_content = generate_global() + haproxy_content = generate_mydns() + haproxy_content += generate_global() haproxy_content += generate_defaults() if not dnat: @@ -85,6 +85,14 @@ def generate_backend_catchall_entry(domain, mode, port, server_options, override return result +def generate_mydns(): + result = fmt('resolvers mydns', indent=None) + result += fmt('nameserver dns1 8.8.8.8:53') + result += fmt('nameserver dns2 8.8.4.4:53') + result += os.linesep + return result + + def generate_global(): result = fmt('global', indent=None) result += fmt('daemon') diff --git a/generators/sniproxy.py b/generators/sniproxy.py new file mode 100644 index 0000000..90bfb2d --- /dev/null +++ b/generators/sniproxy.py @@ -0,0 +1,103 @@ +from util import fmt, port, chunks +import os + +def generate_startconfig01(): + result = fmt('# sniproxy example configuration file', indent=None) + result += fmt('# lines that start with # are comments', indent=None) + result += fmt('# lines with only white space are ignored', indent=None) + result += fmt('', indent=None) + result += fmt('user daemon', indent=None) + result += fmt('', indent=None) + result += fmt('# PID file', indent=None) + result += fmt('pidfile /var/run/sniproxy.pid', indent=None) + result += os.linesep + return result + +def generate_mydns(): + result = fmt('resolver {', indent=None) + result += fmt('nameserver 8.8.8.8') + result += fmt('nameserver 8.8.4.4') + result += fmt('mode ipv4_only') + result += fmt('}', indent=None) + result += os.linesep + return result + +def generate_error(): + result = fmt('error_log {', indent=None) + result += fmt('# Log to the daemon syslog facility') + result += fmt('syslog daemon') + result += fmt('', indent=None) + result += fmt('# Alternatively we could log to file') + result += fmt('#filename /var/log/sniproxy/sniproxy.log') + result += fmt('', indent=None) + result += fmt('# Control the verbosity of the log') + result += fmt('priority notice') + result += fmt('}', indent=None) + result += os.linesep + return result + +def generate_listenhttp(): + result = fmt('# blocks are delimited with {...}', indent=None) + result += fmt('listen 80 {', indent=None) + result += fmt('proto http') + result += fmt('table hosts') + result += fmt('# Fallback backend server to use if we can not parse the client request') + result += fmt('fallback localhost:8080') + result += fmt('', indent=None) + result += fmt('access_log {') + result += fmt('filename /var/log/sniproxy/http_access.log') + result += fmt('priority notice') + result += fmt('}') + result += fmt('}', indent=None) + result += os.linesep + return result + +def generate_listentls(): + result = fmt('# blocks are delimited with {...}', indent=None) + result += fmt('listen 443 {', indent=None) + result += fmt('proto tls') + result += fmt('table hosts') + result += fmt('', indent=None) + result += fmt('access_log {') + result += fmt('filename /var/log/sniproxy/https_access.log') + result += fmt('priority notice') + result += fmt('}') + result += fmt('}', indent=None) + result += os.linesep + return result + + +def generate_hosts01(): + result = fmt('table hosts{', indent=None) + return result + +def generate_hosts02(): + result = fmt('# .* *') + result += fmt('}', indent=None) + result += os.linesep + return result + +def generate(config, dnat=False): + sniproxy_content = "" + sniproxy_content += generate_startconfig01() + sniproxy_content += generate_mydns() + sniproxy_content += generate_error() + sniproxy_content += generate_listenhttp() + sniproxy_content += generate_listentls() + sniproxy_content += generate_hosts01() + + for group in config["groups"].values(): + for proxy in group["proxies"]: + proxy["domain2"] = proxy["domain"].replace('.','\.') + if (proxy["domain"].startswith('*')): + sniproxy_content += ' .' + proxy["domain2"] + '$ ' + '*' + '\n' + else: + sniproxy_content += ' ^' + proxy["domain2"] + ' ' + proxy["domain"] + '\n' + + + + + sniproxy_content += generate_hosts02() + + + return sniproxy_content diff --git a/proxies/domains.lst b/proxies/domains.lst new file mode 100644 index 0000000..e05fe37 --- /dev/null +++ b/proxies/domains.lst @@ -0,0 +1,3076 @@ +api.roku.com +api.rokutime.com +www-roku.mgo.com +api.mobile.roku.com +api.sr.roku.com +cigars.roku.com +cloudservices.roku.com +api2.sr.roku.com +aphrodite.web.roku.com +order.rhapsody.com +www.pandora.com +tuner.pandora.com +device-tuner.pandora.com +tv.pandora.com +bivl.pandora.com +ios-tuner.pandora.com +mediaserver-cont-sv5-1-v4v6.pandora.com +mediaserver-cont-sv5-2-v4v6.pandora.com +mediaserver-cont-ch1-1-v4v6.pandora.com +mediaserver-cont-dc6-2-v4v6.pandora.com +mediaserver-cont-dc6-1-v4v6.pandora.com +pindorama.amazon.com +ssm1.internet.sony.tv +ssm.internet.sony.tv +portal.store.sonyentertainmentnetwork.com +api.erabu.sonymobile.com +content.erabu.sonymobile.com +bivl.np.ac.playstation.net +kairos.dl.playstation.net +kairos-ssl.dl.playstation.net +store.playstation.com +call.me.sel.sony.com +static.internet.sony.tv +update.biv.sony.tv +blu-ray.update.sony.net +reg.biv.sony.tv +service.biv.sony.tv +applicast.ga.sony.net +atv-ps.amazon.com +fals.atv-ps.amazon.com +atv-ext.amazon.com +fls-eu.amazon.com +fls-eu.amazon.co.uk +atv-ps-eu.amazon.com +fls-eu.amazon.de +atv-eu.amazon.com +fls-na.amazon.com +aiv-clients-apps.amazon.com +atv-ext-eu.amazon.com +api.amazon.de +api.amazon.com +fls-fe.amazon.co.jp +fls-fe.amazon.com +atv-ps-fe.amazon.com +atv-ext-fe.amazon.com +api.amazon.co.jp +api.amazon.co.uk +dcape-na.amazon.com +arcus-uswest.amazon.com +atv-ps-eu.amazon.co.uk +dp-gw-na.amazon.com +www.amazon.com.au +unagi-na.amazon.com +api.amazonalexa.com +avs-alexa-1-na.amazon.com +avs-alexa-2-na.amazon.com +avs-alexa-3-na.amazon.com +avs-alexa-4-na.amazon.com +avs-alexa-5-na.amazon.com +avs-alexa-6-na.amazon.com +avs-alexa-7-na.amazon.com +avs-alexa-8-na.amazon.com +avs-alexa-9-na.amazon.com +avs-alexa-10-na.amazon.com +avs-alexa-11-na.amazon.com +avs-alexa-12-na.amazon.com +avs-alexa-13-na.amazon.com +avs-alexa-14-na.amazon.com +avs-alexa-15-na.amazon.com +avs-alexa-16-na.amazon.com +avs-alexa-17-na.amazon.com +avs-alexa-18-na.amazon.com +avs-alexa-19-na.amazon.com +avs-alexa-20-na.amazon.com +ia.media-imdb.com +imdbtv-backend-na.amazon.com +sessions.watchtower.imdbtv.amazon.dev +www.spotify.com +play.spotify.com +api.spotify.com +api-partner.spotify.com +www.iheart.com +www.slacker.com +gspe19-ssl.ls.apple.com +api.config.watchabc.go.com +api.contents.watchabc.go.com +api.abc.com +radiko.jp +www.crackle.com +omn.crackle.com +ios-api-us.crackle.com +ios-api.crackle.com +android-api-us.crackle.com +xboxone-api-us.crackle.com +ps3-api-us.crackle.com +roku-api.crackle.com +amazon-api-us.crackle.com +api.crackle.com +m.crackle.com +content-xuse1.uplynk.com +appletv.crackle.com +appletv-api-us.crackle.com +androidtv-api-us.crackle.com +geo.aspen.turner.com +token.aspen.vgtf.net +i.cdn.tbs.com +geo.ngtv.io +token.ngtv.io +highlander-prod.tbsdlabs.com +blackout.ngtv.io +aspen.ngtv.io +atlas.ngtv.io +highlander.tbs.com +sbp.ngtv.io +i.hbo.lv3.hbogo.com +hls.hbo.lv3.hbogo.com +atv.api.lv3.cdn.hbo.com +artist.api.lv3.cdn.hbo.com +artist.api.lv3.cdn.hbo.com.c.footprint.net +comet.api.hbo.com +login.api.hbo.com +telegraph.api.hbo.com +markers.api.hbo.com +www.hbonow.com +play.hbonow.com +prod-v2.reporting.hbogo.com +commerce-experience.api.hbo.com +activate.hbomax.com +commerce.api.hbo.com +www.hbomax.com +sessions.api.hbo.com +oauth.api.hbo.com +oauth-us.api.hbo.com +manifests.api.hbo.com +commerce-latam.api.hbo.com +gateway-latam.api.hbo.com +sessions-latam.api.hbo.com +oauth-latam.api.hbo.com +comet-latam.api.hbo.com +comet-emea.api.hbo.com +manifests.v2.api.hbo.com +gateway-emea.api.hbo.com +xbox.mtvnservices.com +apimtv-a.akamaihd.net +mediaresolver-a.akamaihd.net +musicjsonpath-a.akamaihd.net +auth.mtvnservices.com +mb.mtvnservices.com +ssc.cc.com +apicache.vudu.com +api.vudu.com +startup.vudu.com +my.vudu.com +cs1.vudu.com +cs2.vudu.com +cs3.vudu.com +cs4.vudu.com +cs5.vudu.com +cs6.vudu.com +vudu.d1.sc.omtrdc.net +startup.vvond.net +startup-aus.vvond.net +startup-nzl.vvond.net +startup-abw.vvond.net +startup-afg.vvond.net +startup-ago.vvond.net +startup-aia.vvond.net +startup-ala.vvond.net +startup-alb.vvond.net +startup-and.vvond.net +startup-are.vvond.net +startup-arg.vvond.net +startup-arm.vvond.net +startup-asm.vvond.net +startup-ata.vvond.net +startup-atf.vvond.net +startup-atg.vvond.net +startup-aut.vvond.net +startup-aze.vvond.net +startup-bdi.vvond.net +startup-bel.vvond.net +startup-ben.vvond.net +startup-bes.vvond.net +startup-bfa.vvond.net +startup-bgd.vvond.net +startup-bgr.vvond.net +startup-bhr.vvond.net +startup-bhs.vvond.net +startup-bih.vvond.net +startup-blm.vvond.net +startup-blr.vvond.net +startup-blz.vvond.net +startup-bmu.vvond.net +startup-bol.vvond.net +startup-bra.vvond.net +startup-brb.vvond.net +startup-brn.vvond.net +startup-btn.vvond.net +startup-bvt.vvond.net +startup-bwa.vvond.net +startup-caf.vvond.net +startup-can.vvond.net +startup-cck.vvond.net +startup-che.vvond.net +startup-chl.vvond.net +startup-chn.vvond.net +startup-civ.vvond.net +startup-cmr.vvond.net +startup-cod.vvond.net +startup-cog.vvond.net +startup-cok.vvond.net +startup-col.vvond.net +startup-com.vvond.net +startup-cpv.vvond.net +startup-cri.vvond.net +startup-cub.vvond.net +startup-cuw.vvond.net +startup-cxr.vvond.net +startup-cym.vvond.net +startup-cyp.vvond.net +startup-cze.vvond.net +startup-deu.vvond.net +startup-dji.vvond.net +startup-dma.vvond.net +startup-dnk.vvond.net +startup-dom.vvond.net +startup-dza.vvond.net +startup-ecu.vvond.net +startup-egy.vvond.net +startup-eri.vvond.net +startup-esh.vvond.net +startup-esp.vvond.net +startup-est.vvond.net +startup-eth.vvond.net +startup-fin.vvond.net +startup-fji.vvond.net +startup-flk.vvond.net +startup-fra.vvond.net +startup-fro.vvond.net +startup-fsm.vvond.net +startup-gab.vvond.net +startup-gbr.vvond.net +startup-geo.vvond.net +startup-ggy.vvond.net +startup-gha.vvond.net +startup-gib.vvond.net +startup-gin.vvond.net +startup-glp.vvond.net +startup-gmb.vvond.net +startup-gnb.vvond.net +startup-gnq.vvond.net +startup-grc.vvond.net +startup-grd.vvond.net +startup-grl.vvond.net +startup-gtm.vvond.net +startup-guf.vvond.net +startup-gum.vvond.net +startup-guy.vvond.net +startup-hkg.vvond.net +startup-hmd.vvond.net +startup-hnd.vvond.net +startup-hrv.vvond.net +startup-hti.vvond.net +startup-hun.vvond.net +startup-idn.vvond.net +startup-imn.vvond.net +startup-ind.vvond.net +startup-iot.vvond.net +startup-irl.vvond.net +startup-irn.vvond.net +startup-irq.vvond.net +startup-isl.vvond.net +startup-isr.vvond.net +startup-ita.vvond.net +startup-jam.vvond.net +startup-jey.vvond.net +startup-jor.vvond.net +startup-jpn.vvond.net +startup-kaz.vvond.net +startup-ken.vvond.net +startup-kgz.vvond.net +startup-khm.vvond.net +startup-kir.vvond.net +startup-kna.vvond.net +startup-kor.vvond.net +startup-kwt.vvond.net +startup-lao.vvond.net +startup-lbn.vvond.net +startup-lbr.vvond.net +startup-lby.vvond.net +startup-lca.vvond.net +startup-lie.vvond.net +startup-lka.vvond.net +startup-lso.vvond.net +startup-ltu.vvond.net +startup-lux.vvond.net +startup-lva.vvond.net +startup-mac.vvond.net +startup-maf.vvond.net +startup-mar.vvond.net +startup-mco.vvond.net +startup-mda.vvond.net +startup-mdg.vvond.net +startup-mdv.vvond.net +startup-mex.vvond.net +startup-mhl.vvond.net +startup-mkd.vvond.net +startup-mli.vvond.net +startup-mlt.vvond.net +startup-mmr.vvond.net +startup-mne.vvond.net +startup-mng.vvond.net +startup-mnp.vvond.net +startup-moz.vvond.net +startup-mrt.vvond.net +startup-mtq.vvond.net +startup-mus.vvond.net +startup-mwi.vvond.net +startup-mys.vvond.net +startup-myt.vvond.net +startup-nam.vvond.net +startup-ncl.vvond.net +startup-ner.vvond.net +startup-nfk.vvond.net +startup-nga.vvond.net +startup-nic.vvond.net +startup-niu.vvond.net +startup-nld.vvond.net +startup-nor.vvond.net +startup-npl.vvond.net +startup-nru.vvond.net +startup-omn.vvond.net +startup-pak.vvond.net +startup-pan.vvond.net +startup-pcn.vvond.net +startup-per.vvond.net +startup-phl.vvond.net +startup-plw.vvond.net +startup-png.vvond.net +startup-pol.vvond.net +startup-pri.vvond.net +startup-prk.vvond.net +startup-prt.vvond.net +startup-pry.vvond.net +startup-pse.vvond.net +startup-pyf.vvond.net +startup-qat.vvond.net +startup-reu.vvond.net +startup-rou.vvond.net +startup-rus.vvond.net +startup-rwa.vvond.net +startup-sau.vvond.net +startup-sdn.vvond.net +startup-sen.vvond.net +startup-sgp.vvond.net +startup-sgs.vvond.net +startup-shn.vvond.net +startup-sjm.vvond.net +startup-slb.vvond.net +startup-sle.vvond.net +startup-slv.vvond.net +startup-smr.vvond.net +startup-som.vvond.net +startup-spm.vvond.net +startup-srb.vvond.net +startup-ssd.vvond.net +startup-stp.vvond.net +startup-sur.vvond.net +startup-svk.vvond.net +startup-svn.vvond.net +startup-swe.vvond.net +startup-swz.vvond.net +startup-sxm.vvond.net +startup-syc.vvond.net +startup-syr.vvond.net +startup-tca.vvond.net +startup-tcd.vvond.net +startup-tgo.vvond.net +startup-tha.vvond.net +startup-tjk.vvond.net +startup-tkl.vvond.net +startup-tkm.vvond.net +startup-tls.vvond.net +startup-ton.vvond.net +startup-tto.vvond.net +startup-tun.vvond.net +startup-tur.vvond.net +startup-tuv.vvond.net +startup-twn.vvond.net +startup-tza.vvond.net +startup-uga.vvond.net +startup-ukr.vvond.net +startup-umi.vvond.net +startup-ury.vvond.net +startup-usa.vvond.net +startup-uzb.vvond.net +startup-vat.vvond.net +startup-vct.vvond.net +startup-ven.vvond.net +startup-vgb.vvond.net +startup-vir.vvond.net +startup-vnm.vvond.net +startup-vut.vvond.net +startup-wlf.vvond.net +startup-wsm.vvond.net +startup-yem.vvond.net +startup-zaf.vvond.net +startup-zmb.vvond.net +startup-zwe.vvond.net +vudu-api.hs.llnwd.net +startup-auto.vvond.net +vudu-2.vo.llnwd.net +images2.vudu.com +images.vudu.com +cs7.vudu.com +cs8.vudu.com +cs9.vudu.com +cs11.vudu.com +cs12.vudu.com +cs13.vudu.com +cs14.vudu.com +cs10.vudu.com +websocket-cs.vudu.com +startup-msr.vvond.net +httppolling-cs.vudu.com +ws.media.net.wwe.com +secure.net.wwe.com +www.wwe.com +api-app.espn.com +api.espn.com +broadband.espn.com +www.espn.go.com +espn.go.com +www.espn.com +affiliate.api.espn.com +fan.api.espn.com +w88.espn.com +artwork.api.espn.com +tredir.espn.com +watchproductapi.prod.geo.espn.com +watch.product.api.espn.com +secure.espncdn.com +plus.espn.com +secure.web.plus.espn.com +search-api.svcs.plus.espn.com +edge.bamgrid.com +cdn.unid.go.com +sportscenter.fan.api.espn.com +sportscenter.api.espn.com +appconfigs.web.plus.espn.com +playback.svcs.plus.espn.com +a.espncdn.com +bam-sdk-configs.bamgrid.com +bam.nr-data.net +watch.api.espn.com +watch.auth.api.espn.go.com +site.web.api.espn.com +secure.espn.com +r.espn.com +s.secure.espncdn.com +onefeed.fan.api.espn.com +watch.auth.api.espn.com +watch.graph.api.espn.com +sw88.go.com +sw88.espn.com +www.artwork.espncdn.com +nhlinteractivecybere.tt.omtrdc.net +www.usopen.org +usgageo.edgesuite.net +usopen2011-f.akamaihd.net +api.apptentive.com +video.pbs.org +www.pbs.org +urs.pbs.org +localization.services.pbs.org +player.pbs.org +api.spiritclips.com +player.ooyala.com +d0.tubitv.com +amolio.fubo.tv +api.viki.io +collector.viki.io +www.viki.com +www.willow.tv +appletv.willow.tv +mdallas1.willow.tv +eventlog.willow.tv +www.knowledge.ca +esi.ctv.ca +capi.9c9media.com +new.livestream.com +api.new.livestream.com +livestream.com +cdn.livestream.com +player-api.new.livestream.com +access.video.qq.com +cache.video.iqiyi.com +t7z.cupid.iqiyi.com +data.video.iqiyi.com +control-i.iqiyi.com +pcw-api.iqiyi.com +qiqu.iqiyi.com +msg.qy.net +api.channel4.com +www.channel4.com +amazonfire-p06.channel4.com +ios.channel4.com +goan.sky.com +www.sky.com +goio.sky.com +sgw.skyanywhere.com +uapi.staging.simplestream.com +epg.cdn.vision.bt.com +t.appsflyer.com +eu-west-1-api.svcs.eurosportplayer.com +global-api.svcs.eurosportplayer.com +secure.web.eurosportplayer.com +frontend-gateway.svcs.eurosportplayer.com +subscription.svcs.eurosportplayer.com +proxyservices.svcs.eurosportplayer.com +eu3-prod-direct.eurosportplayer.com +www.eurosport.com +auth.eurosport.co.uk +admin.brightcove.com +c.brightcove.com +geo.wilmaa.com +teleboy.customers.cdn.iptv.ch +wilmaa-jitp.customers.cdn.iptv.ch +streams.wilmaa.com +t.teleboy.ch +api.wilmaa.com +xml.fullepg.wilmaa.com +srg.live.ott.irdeto.com +prod-player.tf1.fr +mediainfo.tf1.fr +tv.nrk.no +tvapi.nrk.no +atv.nrk.no +psapi.nrk.no +nrk-live-no.telenorcdn.net +fargerik-psapi.nrk.no +isl.dr-massive.com +static.dr-massive.com +deliver.oztam.com.au +sportzsdk.hotstar.com +geoip.hotstar.com +hses1.akamaized.net +hses2.akamaized.net +zattoo.com +zapi.zattoo.com +zapi0001.zattoo.com +zapi0215.zattoo.com +zapi0088.zattoo.com +zapi0016.zattoo.com +zapi0106.zattoo.com +zapi0087.zattoo.com +live07.hotstar.com +live01.hotstar.com +live02.hotstar.com +live03.hotstar.com +live04.hotstar.com +live05.hotstar.com +live06.hotstar.com +live08.hotstar.com +live09.hotstar.com +live10.hotstar.com +hses4.akamaized.net +hses3.akamaized.net +hses4.hotstar.com +hses3.hotstar.com +hses2.hotstar.com +hses1.hotstar.com +hses5.hotstar.com +owner.roku.com +channels.roku.com +search.roku.com +www.roku.com +channelstore.roku.com +plugins.roku.com +plugins.qa.roku.com +amoeba.web.roku.com +austin.sw.roku.com +austin.sb.roku.com +captive.roku.com +configsvc.cs.roku.com +edge.roku-vod.top.comcast.net +my.roku.com +roku.globaltivi.com +therokuchannel.roku.com +vidmark-mdc.akamaized.net +track.sr.roku.com +content.sr.roku.com +c-ls.mgo-images.com +c-catalog.mgo-images.com +ls.cti.roku.com +lat-services.api.data.roku.com +scribe.logs.roku.com +rights-manager.sr.roku.com +gilbert.sb.roku.com +ravm.tv +os.fandango.com +authentication.mgo.com +apiweb.roku.com +vod.delivery.roku.com +prod.mobile.roku.com +prd-geolookup.mgo.com +amoeba-plus.web.roku.com +www.mgo.com +servicesfacade.mgo.com +prd-smoothstreaming.mgo.com +devicemedia.mgo.com +www.wdtvlive.com +res.boxee.tv +app.boxee.tv +dir.boxee.tv +0.ping.boxee.tv +1.ping.boxee.tv +2.ping.boxee.tv +3.ping.boxee.tv +4.ping.boxee.tv +5.ping.boxee.tv +6.ping.boxee.tv +7.ping.boxee.tv +8.ping.boxee.tv +9.ping.boxee.tv +www.logitech.com +mysqueezebox.com +www.mysqueezebox.com +mediaserver-sv5-rt-1.pandora.com +mediaserver-sv5-rt-1-v4v6.pandora.com +ce.pandora.com +mediaserver-cont-ch1-2-v4v6.pandora.com +mediaserver-cont-sv5-3-v4v6.pandora.com +internal-tuner.pandora.com +cont-1.p-cdn.com +cont-2.p-cdn.com +avs-alexa-na.amazon.com +android-tuner.pandora.com +pandora.com +pandoramedia-mkt-prod1-t.campaign.adobe.com +mediaserver-cont-usc-mp1-1-v4v6.pandora.com +web-cdn.pandora.com +s.hoplon.pandora.com +metadata.erabu.sony.tv +api.erabu.sony.tv +www.sony.net +www.amazon.com +www.amazon.de +www.amazon.co.uk +www.amazon.co.jp +na.api.amazonvideo.com +eu.api.amazonvideo.com +andr-785f3ec7eb-cbc62794911ff31b-a93c5fcf2ef7a8b7c6-950312.na.api.amazonvideo.com +andr-785f3ec7eb-cbc62794911ff31b-a93c5fcf2ef7a8b7c6-950312.fe.api.amazonvideo.com +www.amazon.in +primevideo.com +www.primevideo.com +atv-ps-eu.amazon.de +prime.amazon.com +andr-785f3ec7eb-cbc62794911ff31b-a93c5fcf2ef7a8b7c6-970805.eu.api.amazonvideo.com +xbox-one-du-10-0-15063-3054-3-3-34-6.api.amazonvideo.com +aviary.amazon.de +prod.amazoncrl.com +atv-ps-fe.amazon.co.jp +mas-sdk-eu.amazon.com +aax-eu.amazon-adsystem.com +api.us-east-1.aiv-delivery.net +ign-a2ehf10z0yhpek-1d0d2d6-1d0d2d6.api.amazonvideo.com +ags-ext.amazon.com +na.account.amazon.com +andr-22-AFTB-600612710.api.amazonvideo.com +mas-ssr.amazon.com +aviary.amazon.com +ktpx.amazon.com +mas-ext.amazon.com +dp-discovery-na-ext.amazon.com +msh.amazon.com +pitangui.amazon.com +primenow.amazon.com +services.amazon.com +kdp.amazon.com +coin.amazonpay.com +unagi-eu.amazon.com +atv-ps-fe.primevideo.com +amazonmmdeu-ic-7bf39f00-08f65a-pr.s.loris.llnwd.net +amazonmmd-eu-pr.hs.llnwd.net +det-ta-g7g.amazon.com +pinpoint.us-east-1.amazonaws.com +app.primevideo.com +fls-eu.amazon.in +eu.api.amazonvideo.in +frank-comp-na.amazon.com +ftvr-na.amazon.com +appstore-tv-prod-na.amazon.com +primevideo-dp-na.imdb.com +www.imdb.com +m.imdb.com +m.media-amazon.com +api.us-west-2.aiv-delivery.net +andr.na.ec.api.amazonvideo.com +dna.amazon.com +msh.amazon.co.uk +cognito-identity.us-east-1.amazonaws.com +ktpx-uk.amazon.com +a3jtvzs340-53cb997a-a047f305-e4f99133-13908f40.na.ec.api.amazonvideo.com +watch.amazon.com +andr-22-aftt-0.api.amazonvideo.com +antv-26-nvidia-shieldandroidtv-412000500.api.amazonvideo.com +andr-22-afts-0.api.amazonvideo.com +prime.amazon.eu +msh.amazon.co.jp +www.amazon.ca +fls-na.amazon.ca +wl.amazon-dss.com +andr.fe.ec.api.amazonvideo.com +q419aw9zfb4fa0.api.amazonvideo.com +api.imdbws.com +ios-app-config.media-imdb.com +firebat.api.amazonvideo.com +unagi.amazon.ca +unagi-fe.amazon.com +unagi.amazon.com +unagi.amazon.de +ipv6.unagi-na.amazon.com +remoteconfig-na.amazon.com +www.amazon.es +unagi.amazon.es +global.backend.imdbtv-services.amazon.dev +avpk-a3vn4e5f7bbc7s-1.na.api.amazonvideo.com +avpk-a3vn4e5f7bbc7s-1.api.amazonvideo.com +avpk-a3vn4e5f7bbc7s-1.fe.api.amazonvideo.com +www.amazon.fr +fls-eu.amazon.fr +unagi.amazon.fr +unagi.amazon.co.jp +fls-fe.amazon.com.au +unagi.amazon.com.au +open.spotify.com +spclient.wg.spotify.com +apresolve.spotify.com +mobile-ap.spotify.com +api2.iheart.com +us.api.iheart.com +au.api.iheart.com +nz.api.iheart.com +global.api.iheart.com +play.itunes.apple.com +play-edge.itunes.apple.com +tv.applemusic.com +linear.tv.apple.com +captive.apple.com +upp.itunes.apple.com +mediaservices.cdn-apple.com +pd.itunes.apple.com +apptrailers.itunes.apple.com +playerservices.streamtheworld.com +mobileroadie.com +14653.live.streamtheworld.com +9313.live.streamtheworld.com +14773.live.streamtheworld.com +9513.live.streamtheworld.com +14633.live.streamtheworld.com +10433.live.streamtheworld.com +9303.live.streamtheworld.com +1351.live.streamtheworld.com +8343.live.streamtheworld.com +9453.live.streamtheworld.com +13993.live.streamtheworld.com +14013.live.streamtheworld.com +14093.live.streamtheworld.com +14623.live.streamtheworld.com +15123.live.streamtheworld.com +15213.live.streamtheworld.com +15233.live.streamtheworld.com +15273.live.streamtheworld.com +13743.live.streamtheworld.com +14023.live.streamtheworld.com +14083.live.streamtheworld.com +15363.live.streamtheworld.com +17793.live.streamtheworld.com +14103.live.streamtheworld.com +13693.live.streamtheworld.com +18443.live.streamtheworld.com +17523.live.streamtheworld.com +tidalhifi.com +getlossless.com +go.tidalhifi.com +listen.tidalhifi.com +tidal.com +appletv.abcfamily.go.com +api.mobile.aws.abcf.seabc.go.com +api.watchabc.go.com +api.entitlement.watchabc.go.com +abc.go.com +api.utils.watchabc.go.com +appletv.abc.go.com +api.profile.abc.go.com +prod.gatekeeper.us-abc.symphony.edgedatg.go.com +api.telemetry.watchabc.go.com +api.pluto.watchabc.go.com +sw88.go.com +prod.gatekeeper.us-abc.symphony.edgedatg.com +unid.go.com +w88.go.com +api.eu-west-1.aiv-delivery.net +streams.adobeprimetime.com +cdn.video.abc.com +ios.unid.go.com +itsliveradio.apple.com +itsliveradiobackup.apple.com +music.163.com +m10.music.126.net +ipservice.163.com +m2.music.126.net +s1.music.126.net +p1.music.126.net +p2.music.126.net +p3.music.126.net +p4.music.126.net +p5.music.126.net +p6.music.126.net +p7.music.126.net +p8.music.126.net +p9.music.126.net +m1.music.126.net +m3.music.126.net +m4.music.126.net +m5.music.126.net +m6.music.126.net +m7.music.126.net +m8.music.126.net +m9.music.126.net +wanproxy.127.net +music.httpdns.c.163.com +dongfeng.alicdn.com +wanproxy-hz.127.net +wanproxy-bj.127.net +wanproxy-oversea.127.net +nstool.netease.com +gslb.live.126.net +interface.music.163.com +web.push.126.net +iadmat.nosdn.127.net +163music.azurewebsites.net +sitemap.163.com +ac.dun.163yun.com +help.163.com +crash.163.com +clientlog.music.163.com +only-770054-47-94-87-143.nstool.netease.com +mr.da.netease.com +mam.netease.com +rec.g.163.com +iad.g.163.com +wr.da.netease.com +s3.music.126.net +s4.music.126.net +s2.music.126.net +acstatic-dun.126.net +img3.126.net +sp0.baidu.com +only-634895-47-94-87-143.nstool.netease.com +web-api-us.crackle.com +roku-api-us.crackle.com +legacyweb-us.crackle.com +content-ause3.uplynk.com +images-us-az.crackle.com +content-ause4.uplynk.com +android-fire-tv-api-us.crackle.com +android-tv-api-us.crackle.com +api-v1-us.crackle.com +sonytv-api-us.crackle.com +ipad-api-us.crackle.com +www.sonycrackle.com +m.sonycrackle.com +roku-v2-api-us.crackle.com +crackleott.s3.amazonaws.com +www.xiami.com +spark.api.xiami.com +music.xiami.com +play.baidu.com +music.baidu.com +tingapi.ting.baidu.com +www.kkbox.com +ssl.kkbox.com +api-login.kkbox.com.tw +www.tbs.com +www.tntdrama.com +phds-live.cdn.turner.com +aspen.turner.com +token.vgtf.net +data.tbs.com +tve-vod.cdn.turner.com +tnteast-i.akamaihd.net +tntwest-i.akamaihd.net +tbseast-i.akamaihd.net +tbswest-i.akamaihd.net +apple-secure.cdn.turner.com +tve.cdn.turner.com +i.cdn.tntdrama.com +cvp1.cdn.turner.com +tbseastlive-i.akamaihd.net +tbswestlive-i.akamaihd.net +tnteastlive-i.akamaihd.net +tntwestlive-i.akamaihd.net +turnerlive.akamaized.net +z.cdn.turner.com +tve-vod-preview.cdn.turner.com +tbs-vh.akamaihd.net +tbs.com +tve-live-ctl.warnermediacdn.com +tve-live-aka.warnermediacdn.com +tve-vod-ctl.warnermediacdn.com +tve-vod-aka.warnermediacdn.com +adultswim-vodlive.cdn.turner.com +api.adultswim.com +identity.api.wmcdp.io +tve-ssai-aka.warnermediacdn.com +tvem.cdn.turner.com +www.tcm.com +www.hbogo.com +pdl.misc.lv3.hbogo.com +smooth.pro17.lv3.hbogo.com +hds.pro12.lv3.hbogo.com +smooth.misc.lv3.hbogo.com +atv.lv3.hbogo.com +hbogo.com +play.hbogo.com +secure.hbogo.com +snowball.api.hbo.com +concierge.api.hbo.com +activate.hbogo.com +smooth.misc.akm.hbogo.com +shop.hbo.com +www.hbostore.co.uk +aracahq.com +pdl.misc.akm.hbogo.com +livepassdl.conviva.com +watch.hbo.com +order.hbonow.com +smetrics.hbonow.com +hbobroadband.sc.omtrdc.net +devicecast.hbogo.com +activate.hbonow.com +device.hbonow.com +appletv-api.lv3.cdn.hbo.com +appletv.api.hbo.com +subscribe.hbonow.com +hbogeo.cust.footprint.net +geo.hbo.com +smooth.pro17.cf.cdn.hbogo.com +smooth.pro17.lln.cdn.hbogo.com +affiliatelogos.fly.cdn.hbogo.com +media.fly.cdn.hbomax.com +hbomax.com +help.hbonow.com +play.hbomax.com +help.hbomax.com +trickplay.pro42.fly.cdn.hbogo.com +dash.pro42.lln.cdn.hbogo.com +device.hbomax.com +artist.api.cdn.hbo.com +hbo.map.fastly.net +chromecast.cdn.hbogo.com +atv.api.akm.cdn.hbo.com +gateway.api.hbo.com +dynamic-content-frontdoor.api.hbo.com +sessions-us.api.hbo.com +commerce-experience-latam.api.hbo.com +markers-latam.api.hbo.com +dualstack.hbo.map.fastly.net +herald.caps.hbo.com +dgoauth.discovery.com +www.discoverygo.com +api.discovery.com +login.discovery.com +dscusvod-vh.akamaihd.net +uslivediscovery-lh.akamaihd.net +usliveapl-lh.akamaihd.net +uslivetlc-lh.akamaihd.net +usliveid-lh.akamaihd.net +uslivescience-lh.akamaihd.net +uslivevel-lh.akamaihd.net +usliveahc-lh.akamaihd.net +uslivedam-lh.akamaihd.net +usliveaplhls-i.akamaihd.net +uslivedschls-i.akamaihd.net +uslivetlchls-i.akamaihd.net +usliveidshls-i.akamaihd.net +www.discovery.com +go.discovery.com +media.mtvnservices.com +www.spike.com +intl.esperanto.mtvi.com +www.cc.com +mediautilsmrs-a.akamaihd.net +southpark.cc.com +media-utils.mtvnservices.com +api.comedycentral.com +api.cc.com +relaunch.api.mtv.com +mediamtvnserv-a.akamaihd.net +btg.mtvnservices.com +mtvi.com +www.mtvunderthethumb.com +mediautilssvcs-a.akamaihd.net +nick.com +nickjr.com +www.nick.com +www.nickjr.com +api.playplex.viacom.com +mediautilslive-a.akamaihd.net +neutron-api.viacom.tech +www.vh1.com +www.logotv.com +topaz.viacomcbs.digital +vidtech.cbsinteractive.com +paramount-network.orchestrator.viacomcbs-tech.com +topaz.dai.viacomcbs.digital +cc.orchestrator.viacomcbs-tech.com +tveauth.viacom.com +neutron-api.viacbs.tech +viafree-content.mtg-api.com +sparrow.intl.paramountplus.com +www.paramountnetwork.com +neutron-api.paramount.tech +www.cartoonnetwork.com +ht2.cdn.turner.com +token.vgtf.net +pmd.cdn.turner.com +phds-vod.cdn.turner.com +config.outturner.com +phls-live.cdn.turner.com +z.cdn.turner.com +cnnios-f.akamaihd.net +phls-vod.cdn.turner.com +cnngo-i.akamaihd.net +trueast-i.akamaihd.net +truwest-i.akamaihd.net +video-api.cartoonnetwork.com +d2c-vod.cdn.turner.com +www.trutv.com +z.static.cdn.trutv.com +i.static.cdn.trutv.com +api.platform.cnn.com +token.ngtv.io +www.cnn.com +www.filmstruck.com +devgeo.ngtv.io +ensighten.filmstruck.com +prod-iris.filmstruck.com +api.trutv.com +cerebro.api.cnn.io +www.boomerang.com +turnerlive.warnermediacdn.com +top.warnermediacdn.com +plus.cnn.com +live-media-ctl.warnermediacdn.com +live-media-aka.warnermediacdn.com +live-media-lln.warnermediacdn.com +vod-media-lln.warnermediacdn.com +vod-media-aka.warnermediacdn.com +vod-media-ctl.warnermediacdn.com +www.starzplay.com +starz.122.2o7.net +api.dmlib.com +playauthcontent.starz.com +playdata.starz.com +www.starz.com +tpr372228livesec-lh.akamaihd.net +video01-us.starz.com +auth-prod.starzaws.com +auth.starz.com +starz.penthera.com +www.vudu.com +origin.www.vudu.com +llavodhls.vudu.com +espni.go.com +tredir.go.com +broadband.espn.go.com +media.video-cdn.espn.com +services.prd1.contentdirect.tv +espn.go.com +espn.com +players.brightcove.net +proxy.espn.com +s.espncdn.com +pkg.video-cdn.espn.com +sportscenterfanapi.prod.geo.espn.com +cdn.registerdisney.go.com +hlsvod-l3c-clt1.media.plus.espn.com +hlslive-akc-clt2.media.plus.espn.com +hlslive-l3c-clt2.media.plus.espn.com +hlsvod-akc-clt1.media.plus.espn.com +hlslive-akc-clt1.media.plus.espn.com +hlslive-l3c-clt1.media.plus.espn.com +hlslive-l3c-med2.media.plus.espn.com +hlslive-l3c-med1.media.plus.espn.com +hlslive-akc-med2.media.plus.espn.com +hlslive-akc-med1.media.plus.espn.com +registerdisney.go.com +static.web.plus.espn.com +qa-static.web.plus.espn.com +cdn.espn.com +hlslive-llc-clt2.media.plus.espn.com +aeng.svcs.plus.espn.com +aserv-akc-us-east-1.media.plus.espn.com +prod-freewheel.espn.go.com +aserv-l3c-us-east-1.media.plus.espn.com +hlslive-l3c-oma2.media.plus.espn.com +www.broadband.espn.com +hlslive-akc-oma2.media.plus.espn.com +ak-hls-brs-espn1.espn.go.com +ak-hls-brs-espn2.espn.go.com +ak-hls-brs-espn3.espn.go.com +ak-hls-brs-espnu.espn.go.com +artwork.espncdn.com +vod-l3c-na.media.plus.espn.com +vod-llc-na.media.plus.espn.com +vod-akc-na.media.plus.espn.com +a2.espncdn.com +a1.espncdn.com +a3.espncdn.com +a4.espncdn.com +us.edge.bamgrid.com +watchespn.com +hlslive-llc-oma2.media.plus.espn.com +watch-cdn.product.api.espn.com +espnapp.geo.hosted.espn.com +affiliate.api.geo.hosted.espn.com +hlslive-ftc-clt2.media.plus.espn.com +watch.graph.api.geo.hosted.espn.com +espn.api.edge.bamgrid.com +live-ftc-na-east-2.media.plus.espn.com +live-ftc-na-central-1.media.plus.espn.com +live-ftc-na-central-2.media.plus.espn.com +live-ftc-na-west-1.media.plus.espn.com +live-ftc-na-west-2.media.plus.espn.com +live-ftc-na-east-1.media.plus.espn.com +live-akc-na-central-1.media.plus.espn.com +live-akc-na-west-1.media.plus.espn.com +live-akc-na-east-1.media.plus.espn.com +live-akc-na-west-2.media.plus.espn.com +live-akc-na-east-2.media.plus.espn.com +live-akc-na-central-2.media.plus.espn.com +live-l3c-na-east-1.media.plus.espn.com +live-l3c-na-west-1.media.plus.espn.com +live-l3c-na-central-1.media.plus.espn.com +live-l3c-na-east-2.media.plus.espn.com +live-l3c-na-west-2.media.plus.espn.com +live-l3c-na-central-2.media.plus.espn.com +aserv-akc-us-west-2.media.plus.espn.com +hlslive-ftc-oma2.media.plus.espn.com +dualstack.dss-espn.map.fastly.net +cdn1.espn.net +pinpoint.espn.com +aserv-ftc-us-east-1.media.plus.espn.com +aserv-ftc-us-west-2.media.plus.espn.com +aserv-l3c-us-west-2.media.plus.espn.com +gamecenter.nhl.com +www.nhl.com +nhl.com +secure.nhl.com +activation-rogers.svc.nhl.com +cd.web.nhl.com +user.svc.nhl.com +mf.svc.nhl.com +nhl.bamcontent.com +account.nhl.com +statsapi.web.nhl.com +gateway.web.nhl.com +activation-nhl.svc.nhl.com +secure.web.nhl.com +hermes-tokenservice.svc.nhl.com +aeng.svc.nhl.com +ch181.hls.att.com.edgesuite.net +cdn01.uverse.com +cdn02.uverse.com +cdn03.uverse.com +cdn04.uverse.com +cdn05.uverse.com +uverse.com +m.uverse.com +cprodx.att.net +cprodx.uverse.com +tdata-offers.att.com +uverse.quickplay.com +uverse-image.quickplay.com +labs.fyitelevision.com +www.crunchyroll.com +api.crunchyroll.com +beta-api.crunchyroll.com +beta.crunchyroll.com +live-cdn.pbskids.org +jaws.pbs.org +localization.digi-prod.pbs.org +wptddt.lls.cdn.pbs.org +station.services.pbs.org +jaws-prod.cdn.pbs.org +content.services.pbs.org +cdn.wwtv.warnerbros.com +media.cwtv.com +hlsioscwtv.warnerbros.com +cwtv-vod.mdialog.com +cwtv-origin.mdialog.com +cwtv-ad-akamai.cwtv.com +cwtv-hls-akamai.cwtv.com +cwtv-mrss-akamai.cwtv.com +cwsmooth-vod.hss.adaptive.level3.net +www.cwtv.com +cwtv-apple-vod.adaptive.level3.net +images.cwtv.com +secure.footprint.net +stream-hls.cwtv.com +cwtv-amd-akamai.akamaized.net +edge.cwtv-vod-ext.top.comcast.net +edge.cwtv-egress.top.comcast.net +www.cwseed.com +m.cwtv.com +6ab03b26.customer.core.one.accedo.tv +6ab03b26.bootstrap.core.one.accedo.tv +6ab03b26.customer.static.core.one.accedo.tv +api.skychnl.net +www.feeln.com +crowntrans-vh.akamaihd.net +crownmediaingest.akamaized.net +www.hallmarkchanneleverywhere.com +hallmarkcom.hb.omtrdc.net +hallmarkchannel.sc.omtrdc.net +crownstreaming.akamaized.net +authcrowntrans-vh.akamaihd.net +api2.hmnow.com +www.hmnow.com +playback.brightcovecdn.com +devices.carnivalmobile.com +097d0e9f.customer.core.one.accedo.tv +www.foxsoccer2go.com +www.foxsoccer-iphone.premiumtv.co.uk +www.foxsoccermatchpass.com +dvr-i-uefa-video-foxmp.akamaized.net +dvr-i-video-foxmp.akamaized.net +foxmp-prd.akamaized.net +livemain-i-video-foxmp.akamaized.net +livemain-i-uefa-video-foxmp.akamaized.net +foxus-dev-frontend.azurewebsites.net +tubitv.com +cdn.adrise.tv +cms.adrise.com +i.adrise.tv +uapi.adrise.tv +ott-firetv.tubitv.com +titan.adrise.tv +www.tubitv.com +ads.adrise.tv +s.adrise.tv +ott-androidtv.tubitv.com +ott-xboxone.tubitv.com +ott-sony.tubitv.com +gdpr.tubi.tv +ott-samsung.tubitv.com +canvas-bridge.tubitv.com +canvas-bridge02.tubitv.com +ott-firetv-hyb.tubitv.com +lb4.production-public.tubi.io +tensor.production-public.tubi.io +vod.fubotv.com.global.prod.fastly.net +api.fubo.tv +ak-cred-bein-us-en-stream.fubo.tv +fubotv_live1-i.akamaihd.net +ak-cred-bein-us-es-stream.fubo.tv +ak-cred-goltv-us-en-stream.fubo.tv +ak-cred-fubotv-us-en-stream.fubo.tv +fubotvuslive1-i.akamaihd.net +fuboptstream.global.ssl.fastly.net +fubotv.imgix.net +securehls.fubo.tv +fubo.auth0.com +playlist.fubo.tv +gcs-streams-prod.fubo.tv +player-config-prod.fubo.tv +blue-midas.fubo.tv +dvr.fubo.tv +playlist-nonlive.fubo.tv +licensing.bitmovin.com +www.fubo.tv +ws.peer5.com +uhd-streams.fubo.tv +force-upgrade.fubo.tv +playlist-central.fubo.tv +blob-service-fastly-west.fubo.tv +prod.fubo-tv.map.fastly.net +showtime-bmvn.fubo.tv +pr-keyos.licensekeyserver.com +4k-streams-prod.fubo.tv +www.foodnetwork.com +sni-vh.akamaihd.net +sni-i.akamaihd.net +foodnetwork-i.akamaihd.net +snihlsvod.scripps.com.edgesuite.net +web.api.video.snidigital.com +watch.foodnetwork.com +j.sni.global.fastly.net +us1-prod.disco-api.com +auth.watch.foodnetwork.com +subber.viki.com +skydvn-sn-cdhls-prod.skydvn.com +poc-content.mobile-tv.sky.com +skynewsamericas-sn-cdhls.ak-cdn.skydvn.com +skynews-sn-cdhls.ak-cdn.skydvn.com +skydvn-sn-mobile-prod.skydvn.com +news.sky.com +d301yv2uyy17su.cloudfront.net +linear101-gb-hls1-prd-ak.cdn.skycdp.com +linear102-gb-hls1-prd-ak.cdn.skycdp.com +linear103-gb-hls1-prd-ak.cdn.skycdp.com +linear104-gb-hls1-prd-ak.cdn.skycdp.com +linear105-gb-hls1-prd-ak.cdn.skycdp.com +linear106-gb-hls1-prd-ak.cdn.skycdp.com +linear107-gb-hls1-prd-ak.cdn.skycdp.com +linear108-gb-hls1-prd-ak.cdn.skycdp.com +linear109-gb-hls1-prd-ak.cdn.skycdp.com +linear110-gb-hls1-prd-ak.cdn.skycdp.com +linear111-gb-hls1-prd-ak.cdn.skycdp.com +linear112-gb-hls1-prd-ak.cdn.skycdp.com +linear113-gb-hls1-prd-ak.cdn.skycdp.com +linear114-gb-hls1-prd-ak.cdn.skycdp.com +linear115-gb-hls1-prd-ak.cdn.skycdp.com +linear116-gb-hls1-prd-ak.cdn.skycdp.com +linear117-gb-hls1-prd-ak.cdn.skycdp.com +linear118-gb-hls1-prd-ak.cdn.skycdp.com +linear119-gb-hls1-prd-ak.cdn.skycdp.com +linear120-gb-hls1-prd-ak.cdn.skycdp.com +linear100-gb-hls1-prd-ak.cdn.skycdp.com +linear001-gb-hls1-prd-ak.cdn.skycdp.com +linear002-gb-hls1-prd-ak.cdn.skycdp.com +linear003-gb-hls1-prd-ak.cdn.skycdp.com +linear004-gb-hls1-prd-ak.cdn.skycdp.com +linear005-gb-hls1-prd-ak.cdn.skycdp.com +linear006-gb-hls1-prd-ak.cdn.skycdp.com +linear007-gb-hls1-prd-ak.cdn.skycdp.com +linear008-gb-hls1-prd-ak.cdn.skycdp.com +linear009-gb-hls1-prd-ak.cdn.skycdp.com +linear010-gb-hls1-prd-ak.cdn.skycdp.com +linear011-gb-hls1-prd-ak.cdn.skycdp.com +linear012-gb-hls1-prd-ak.cdn.skycdp.com +linear013-gb-hls1-prd-ak.cdn.skycdp.com +linear014-gb-hls1-prd-ak.cdn.skycdp.com +linear015-gb-hls1-prd-ak.cdn.skycdp.com +linear016-gb-hls1-prd-ak.cdn.skycdp.com +linear017-gb-hls1-prd-ak.cdn.skycdp.com +linear018-gb-hls1-prd-ak.cdn.skycdp.com +linear019-gb-hls1-prd-ak.cdn.skycdp.com +linear020-gb-hls1-prd-ak.cdn.skycdp.com +linear021-gb-hls1-prd-ak.cdn.skycdp.com +linear022-gb-hls1-prd-ak.cdn.skycdp.com +linear023-gb-hls1-prd-ak.cdn.skycdp.com +linear024-gb-hls1-prd-ak.cdn.skycdp.com +linear025-gb-hls1-prd-ak.cdn.skycdp.com +linear026-gb-hls1-prd-ak.cdn.skycdp.com +linear027-gb-hls1-prd-ak.cdn.skycdp.com +linear028-gb-hls1-prd-ak.cdn.skycdp.com +linear029-gb-hls1-prd-ak.cdn.skycdp.com +linear030-gb-hls1-prd-ak.cdn.skycdp.com +linear031-gb-hls1-prd-ak.cdn.skycdp.com +linear032-gb-hls1-prd-ak.cdn.skycdp.com +linear033-gb-hls1-prd-ak.cdn.skycdp.com +linear034-gb-hls1-prd-ak.cdn.skycdp.com +linear035-gb-hls1-prd-ak.cdn.skycdp.com +linear036-gb-hls1-prd-ak.cdn.skycdp.com +linear037-gb-hls1-prd-ak.cdn.skycdp.com +linear038-gb-hls1-prd-ak.cdn.skycdp.com +linear039-gb-hls1-prd-ak.cdn.skycdp.com +linear040-gb-hls1-prd-ak.cdn.skycdp.com +linear041-gb-hls1-prd-ak.cdn.skycdp.com +linear042-gb-hls1-prd-ak.cdn.skycdp.com +linear043-gb-hls1-prd-ak.cdn.skycdp.com +linear044-gb-hls1-prd-ak.cdn.skycdp.com +linear045-gb-hls1-prd-ak.cdn.skycdp.com +linear046-gb-hls1-prd-ak.cdn.skycdp.com +linear047-gb-hls1-prd-ak.cdn.skycdp.com +linear048-gb-hls1-prd-ak.cdn.skycdp.com +linear049-gb-hls1-prd-ak.cdn.skycdp.com +linear050-gb-hls1-prd-ak.cdn.skycdp.com +linear051-gb-hls1-prd-ak.cdn.skycdp.com +linear052-gb-hls1-prd-ak.cdn.skycdp.com +linear053-gb-hls1-prd-ak.cdn.skycdp.com +linear054-gb-hls1-prd-ak.cdn.skycdp.com +linear055-gb-hls1-prd-ak.cdn.skycdp.com +linear056-gb-hls1-prd-ak.cdn.skycdp.com +linear057-gb-hls1-prd-ak.cdn.skycdp.com +linear058-gb-hls1-prd-ak.cdn.skycdp.com +linear059-gb-hls1-prd-ak.cdn.skycdp.com +linear060-gb-hls1-prd-ak.cdn.skycdp.com +linear061-gb-hls1-prd-ak.cdn.skycdp.com +linear062-gb-hls1-prd-ak.cdn.skycdp.com +linear063-gb-hls1-prd-ak.cdn.skycdp.com +linear064-gb-hls1-prd-ak.cdn.skycdp.com +linear065-gb-hls1-prd-ak.cdn.skycdp.com +linear066-gb-hls1-prd-ak.cdn.skycdp.com +linear067-gb-hls1-prd-ak.cdn.skycdp.com +linear068-gb-hls1-prd-ak.cdn.skycdp.com +linear069-gb-hls1-prd-ak.cdn.skycdp.com +linear070-gb-hls1-prd-ak.cdn.skycdp.com +linear071-gb-hls1-prd-ak.cdn.skycdp.com +linear072-gb-hls1-prd-ak.cdn.skycdp.com +linear073-gb-hls1-prd-ak.cdn.skycdp.com +linear074-gb-hls1-prd-ak.cdn.skycdp.com +linear075-gb-hls1-prd-ak.cdn.skycdp.com +linear076-gb-hls1-prd-ak.cdn.skycdp.com +linear077-gb-hls1-prd-ak.cdn.skycdp.com +linear078-gb-hls1-prd-ak.cdn.skycdp.com +linear079-gb-hls1-prd-ak.cdn.skycdp.com +linear080-gb-hls1-prd-ak.cdn.skycdp.com +linear081-gb-hls1-prd-ak.cdn.skycdp.com +linear082-gb-hls1-prd-ak.cdn.skycdp.com +linear083-gb-hls1-prd-ak.cdn.skycdp.com +linear084-gb-hls1-prd-ak.cdn.skycdp.com +linear085-gb-hls1-prd-ak.cdn.skycdp.com +linear086-gb-hls1-prd-ak.cdn.skycdp.com +linear087-gb-hls1-prd-ak.cdn.skycdp.com +linear088-gb-hls1-prd-ak.cdn.skycdp.com +linear089-gb-hls1-prd-ak.cdn.skycdp.com +linear090-gb-hls1-prd-ak.cdn.skycdp.com +linear091-gb-hls1-prd-ak.cdn.skycdp.com +linear092-gb-hls1-prd-ak.cdn.skycdp.com +linear093-gb-hls1-prd-ak.cdn.skycdp.com +linear094-gb-hls1-prd-ak.cdn.skycdp.com +linear095-gb-hls1-prd-ak.cdn.skycdp.com +linear096-gb-hls1-prd-ak.cdn.skycdp.com +linear097-gb-hls1-prd-ak.cdn.skycdp.com +linear098-gb-hls1-prd-ak.cdn.skycdp.com +linear099-gb-hls1-prd-ak.cdn.skycdp.com +d1bj4v5rjwvoka.cloudfront.net +willow.tv +willowfeedsv2.willow.tv +akamaifeed1.willow.tv +akamaifeed2.willow.tv +akamaifeed3.willow.tv +akamaifeed4.willow.tv +akamaifeed5.willow.tv +akamaifeed6.willow.tv +akamaifeed7.willow.tv +akamaifeed8.willow.tv +atvapp.willow.tv +atvappv2.willow.tv +ws.willow.tv +wlfeed2-lh.akamaihd.net +m.willow.tv +akvod160ws-vh.akamaihd.net +akvod177w-vh.akamaihd.net +willowlive-i.akamaihd.net +willowlive1-i.akamaihd.net +willowlive.akamaized.net +willowtv-tavod160w.pc.cdn.bitgravity.com +willowtv-tavod177w.pc.cdn.bitgravity.com +er.knowledge.ca +www.knowledgekids.ca +www.eonline.com +www.pptv.com +tools.aplusapi.pptv.com +web-play.pptv.com +web-play.pplive.cn +epg.api.pptv.com +play.api.pptv.com +live.tv.sohu.com +pad.tv.sohu.com +my.tv.sohu.com +access.tv.sohu.com +api.tv.sohu.com +m.tv.sohu.com +tv.sohu.com +changyan.sohu.com +hui.sohu.com +pv.sohu.com +m.aty.sohu.com +img.m.tv.sohu.com +hot.vrs.sohu.com +film.sohu.com +css.tv.itc.cn +js.tv.itc.cn +api.letv.com +hot.vrs.letv.com +live.gslb.letv.com +static.itv.letv.com +m.letv.com +dynamic.app.m.letv.com +dynamic.meizi.app.m.letv.com +dynamic.search.app.m.letv.com +dynamic.live.app.m.letv.com +dynamic.meizi.app.m.letvapp.net +api.mob.app.letv.com +www.letv.com +api.leletv.net +api.mod.app.leletv.net +api.mob.app.letv.net +swebp2p.leletv.net +dcvipall.leletv.net +ark.letv.com +dynamic.user.app.m.letv.com +api.lesports.com +u.api.lesports.com +s.plcloud.music.qq.com +i.y.qq.com +vv.video.qq.com +tt.video.qq.com +ice.video.qq.com +tjsa.video.qq.com +a10.video.qq.com +xyy.video.qq.com +vcq.video.qq.com +vsh.video.qq.com +vbj.video.qq.com +bobo.video.qq.com +flvs.video.qq.com +bkvv.video.qq.com +info.zb.qq.com +zb.s.qq.com +aid.video.qq.com +aidbak.video.qq.com +pay.video.qq.com +paybak.video.qq.com +3g.music.qq.com +mqqplayer.3g.qq.com +proxy.music.qq.com +proxymc.qq.com +sns.video.qq.com +film.qq.com +y.qq.com +music.qq.com +music.tc.qq.com +music.tcdn.qq.com +ssd.tc.qq.com +node.video.qq.com +tunnel.video.qq.com +vd.l.qq.com +data.video.qiyi.com +cache.video.qiyi.com +cache.vip.qiyi.com +cache.m.iqiyi.com +iplocation.geo.qiyi.com +imo.iqiyi.com +qosp.iqiyi.com +cook.ptqy.gitv.tv +bi.ptqy.gitv.tv +itv.video.ptqy.gitv.tv +pb.bi.gitv.tv +flux.hcdn.ptqy.gitv.tv +act.vip.ptqy.gitv.tv +policy.video.ptqy.gitv.tv +t7z.cupid.ptqy.gitv.tv +cache.video.ptqy.gitv.tv +kepler.ptqy.gitv.tv +puma-api.ptqy.gitv.tv +m.iqiyi.com +m.iqiyipic.com +static.iqiyi.com +security.iqiyi.com +pub.m.iqiyi.com +cook.iqiyi.com +api.vip.iqiyi.com +cmts.iqiyi.com +serv.vip.iqiyi.com +iqiyi.irs01.com +nl-rcd.iqiyi.com +tracker-sns.iqiyi.com +paopao.iqiyi.com +search.video.iqiyi.com +msgv6.qy.net +geo.js.kankan.xunlei.com +ip.kankan.xunlei.com +flwww.b-ch.com +bchvod-f.akamaihd.net +bngnwww.b-ch.com +ais.channel4.com +freesat.channel4.com +service.maxymiser.net +cdn.appdynamics.com +col.eum-appdynamics.com +ak.live.hds.c4assets.com +csm-e.cds1.yospace.com +ic.c4assets.com +webstat.channel4.com +4id.channel4.com +apps.channel4.com +pandr.my.channel4.com +4od.my.channel4.com +fonts.channel4.com +cdn.http.anno.channel4.com +cf.http.anno.channel4.com +monitor.channel4.com +channel4.com +roku-p06.channel4.com +samsung.channel4.com +c4appletv.2cnt.net +cdn.live.hls.c4assets.com +cast-p06.channel4.com +go.sky.com +pc-wmv-skygo.vod.sky.com +assets.mobile-tv.sky.com +io-skygo.vod.sky.com +live.skyanywhere.com +skydvn-go-mobile-prod.skydvn.com +p.sky.com +init.sky.com +content.ott.sky.com +sgwl.skyanywhere.com +epgservices.sky.com +sky.com +epgstatic.sky.com +skyandroid.2cnt.net +skysports4-go-hls.l3-cdn.skydvn.com +www.skystore.com +www.tvplayer.com +tvplayer.com +lapi.cdn.tvplayer.com +lapi.cdn.uk.tvplayer.com +sapi.tvplayer.com +api.prd.uk.tvplayer.com +ssapi.tvplayer.com +api.tvplayer.com +live.plus.tvplayer.com +tvos.tvplayer.com +assets.tvplayer.com +assets.storage.uk.tvplayer.com +assets.storage.uk.tvplayer.com.s3.amazonaws.com +checkip.amazonaws.com +license.theoplayer.com +essential.tvplayer.com +pro.ip-api.com +plus-secondary.tvplayer.com +vod.hds.plus.tvplayer.com +backend.dna-delivery.com +live.tvplayer.com +live.tvpvideo.net +simplestream.tvplayer.com +startups.ss7.tv.s3.amazonaws.com +v1-metadata.tvplayer-cdn.com +sport.bt.com +be.avs.bt.com +t1-btsport-live-hls-prod.akamaized.net +t2-btsport-live-hls-prod.akamaized.net +btsportsvod-vh.akamaihd.net +auth.sport.btcsp.co.uk +vodplay.sport.btcsp.co.uk +vod-bcdd-prod.bt.co.uk +assets.sport.bt.com +liveplay.sport.btcsp.co.uk +t2btsportlivehlsprod-im-6dcb7394-002020-btgrpvideo.s.loris.llnwd.net +event.vision.bt.com +epg.sport.bt.com +metadata.sport.bt.com +t2btsportlivehlsprod-im-4df77d58-002020-btgrpvideo.s.loris.llnwd.net +t1btsportlivehlsprod-im-4df77d58-002020-btgrpvideo.s.loris.llnwd.net +samlfed.bt.com +strongauth.secure.bt.com +t1live-im-4df77d00-bts1-euwe2.prd.us.ll.streams.sport.bt.com +t1live-im-4df77d00-bts2-euwe2.prd.us.ll.streams.sport.bt.com +se1-t2-btsport-vod-i-azams.akamaized.net +t1live-im-4df77d00-bts3-euwe2.prd.us.ll.streams.sport.bt.com +t1live-im-4df77d00-btsespn-euwe2.prd.us.ll.streams.sport.bt.com +t1live-im-4df77d00-boxnation-euwe2.prd.us.ll.streams.sport.bt.com +t1live-im-4df77d00-btse1-euwe2.prd.us.ll.streams.sport.bt.com +t1live-im-4df77d00-btse2-euwe2.prd.us.ll.streams.sport.bt.com +t1live-im-4df77d00-btse3-euwe2.prd.us.ll.streams.sport.bt.com +t1live-im-4df77d00-btse4-euwe2.prd.us.ll.streams.sport.bt.com +t1live-im-4df77d00-btse5-euwe2.prd.us.ll.streams.sport.bt.com +t1live-im-4df77d00-btse6-euwe2.prd.us.ll.streams.sport.bt.com +t1live-im-4df77d00-bts1-euwe1.prd.us.ll.streams.sport.bt.com +t1live-im-4df77d00-bts2-euwe1.prd.us.ll.streams.sport.bt.com +t1live-im-4df77d00-bts3-euwe1.prd.us.ll.streams.sport.bt.com +t1live-im-4df77d00-btsespn-euwe.prd.us.ll.streams.sport.bt.com +t1live-im-4df77d00-boxnation-euwe1.prd.us.ll.streams.sport.bt.com +t1live-im-4df77d00-btse1-euwe1.prd.us.ll.streams.sport.bt.com +t1live-im-4df77d00-btse2-euwe1.prd.us.ll.streams.sport.bt.com +t1live-im-4df77d00-btse3-euwe1.prd.us.ll.streams.sport.bt.com +t1live-im-4df77d00-btse4-euwe1.prd.us.ll.streams.sport.bt.com +t1live-im-4df77d00-btse5-euwe1.prd.us.ll.streams.sport.bt.com +t1live-im-4df77d00-btse6-euwe1.prd.us.ll.streams.sport.bt.com +t1live-im-4df77d00-btsespn-euwe1.prd.us.ll.streams.sport.bt.com +www.eurosportplayer.de +www.eurosportplayer.com +www.eurosportplayer.co.uk +videoshop.ext.ws.eurosport.com +www.eurosportplayer.pl +www.eurosportplayer.se +www.eurosportplayer.nl +www.eurosportplayer.no +www.eurosportplayer.ro +ru.eurosportplayer.com +no.eurosportplayer.com +pl.eurosportplayer.com +nl.eurosportplayer.com +ro.eurosportplayer.com +uk.eurosportplayer.com +se.eurosportplayer.com +eurosport-live-poland.akamaized.net +de.eurosportplayer.com +eurosport-live-germany.akamaized.net +videoshop-partners.eurosportplayer.com +crm-partners.eurosportplayer.com +asia.eurosport.com +gb.eurosportplayer.com +cz.eurosportplayer.com +search-api.svcs.eurosportplayer.com +global-api.svcs.eurosportplayer.com +hu.eurosportplayer.com +hlsevent-aksc.ams1.media.eurosportplayer.com +hlslinear-aksc.ams1.media.eurosportplayer.com +cpe-prod.eurosportstatic.com +bam-sdk-configs.mlbam.net +api.permutive.com +hermes-tokenservice.svcs.eurosportplayer.com +cdn.permutive.com +hlslinear-l3c.ams1.media.eurosportplayer.com +eu.edge.bamgrid.com +www.eurosportstatic.com +eurosport-dlvr-ott.akamaized.net +eu3-prod.disco-api.com +iphone.eurosport.com +netsport.eurosport.io +eu3-prod-direct.eurosport.co.uk +eurosport-dlvr-ott-vod.akamaized.net +web-api.eurosport.com +www.eurosport.co.uk +ssa.eurosportplayer.com +auth.eurosportplayer.com +fire.player.stv.tv +api.stv.tv +player.stv.tv +uk-dev-stv.videoplaza.tv +http.player-cdn.stv.tv +player.api.stv.tv +stv-ak.cds1.yospace.com +hlsscottishtv-a.akamaihd.net +ssp.videoplaza.tv +freesat.player.stv.tv +files.stv.tv +files.prod.stv.tv +edge.api.brightcove.com +stv1yospace-a.akamaihd.net +stv2yospace-a.akamaihd.net +bcboltstv-a.akamaihd.net +stv1yospaceint-a.akamaihd.net +www.tv3.ie +ak.tv3.ooyala.com +www.virginmediatelevision.ie +virginmediatelevision.ie +www.zattoo.com +iphone.zattoo.com +watch.wilmaa.com +www.wilmaa.com +data.wilmaa.com +tele-vh.akamaihd.net +c001.p100.edgesuite.net +c001.p101.edgesuite.net +c001.p102.edgesuite.net +c001.p103.edgesuite.net +c001.p104.edgesuite.net +c001.p105.edgesuite.net +c001.p106.edgesuite.net +c001.p107.edgesuite.net +c001.p108.edgesuite.net +c001.p109.edgesuite.net +c001.p110.edgesuite.net +c001.p111.edgesuite.net +c001.p112.edgesuite.net +c001.p113.edgesuite.net +c001.p114.edgesuite.net +c001.p115.edgesuite.net +c001.p116.edgesuite.net +c001.p117.edgesuite.net +c001.p118.edgesuite.net +c001.p119.edgesuite.net +c001.p120.edgesuite.net +c001.p121.edgesuite.net +c001.p122.edgesuite.net +c001.p123.edgesuite.net +c001.p124.edgesuite.net +c001.p125.edgesuite.net +movies.wilmaa.com +zba2-0-hds-live.zahs.tv +zba1-0-hds-live.zahs.tv +zba2-1-hds-live.zahs.tv +zba2-1-hls-live.zahs.tv +zba1-1-hls-live.zahs.tv +zba1-0-hls-live.zahs.tv +zba2-1-hds-pvr.zahs.tv +zba1-1-hds-pvr.zahs.tv +zba2-0-hds-pvr.zahs.tv +zba1-0-hds-pvr.zahs.tv +zba1-1-hls-pvr.zahs.tv +zba2-0-hls-pvr.zahs.tv +zba2-0-ss-live.zahs.tv +zba2-1-ss-live.zahs.tv +zba1-0-ss-live.zahs.tv +zba1-1-ss-live.zahs.tv +zba2-0-hls-live.zahs.tv +zba1-1-dash-live.zahs.tv +zba2-1-dash-live.zahs.tv +zba1-1-hds-live.zahs.tv +zba2-1-ss-vod.zahs.tv +zba1-1-ss-vod.zahs.tv +zba2-0-ss-vod.zahs.tv +zba2-1-ss-pvr.zahs.tv +zba2-0-ss-pvr.zahs.tv +zba1-1-ss-pvr.zahs.tv +zba1-0-ss-pvr.zahs.tv +zba2-0-dash-live.zahs.tv +zba1-0-dash-live.zahs.tv +zba2-0-hls5-live.zahs.tv +zba1-0-hls5-live.zahs.tv +zba2-1-hls5-live.zahs.tv +zba1-1-hls5-live.zahs.tv +1und1-fra1902-1-ss-live.zahs.tv +1und1-fra1902-2-ss-live.zahs.tv +blue.ch +tv.blue.ch +*.blue.ch +services.sg101.prd.sctv.ch +tvhosa-pez0315.sctv.ch +sctv.ch +*.sctv.ch +zba2-1-hls5-pvr.zahs.tv +zba1-1-hls5-pvr.zahs.tv +zba2-0-hls5-pvr.zahs.tv +zba1-0-hls5-pvr.zahs.tv +zba2-0-hls5enc-vod.zahs.tv +zba2-1-hls5enc-vod.zahs.tv +zba1-0-hls5enc-vod.zahs.tv +zba1-1-hls5enc-vod.zahs.tv +teleboy.wemfbox.ch +c005.p100.edgesuite.net +c005.p101.edgesuite.net +c005.p102.edgesuite.net +c005.p103.edgesuite.net +c005.p104.edgesuite.net +c005.p105.edgesuite.net +c005.p106.edgesuite.net +c005.p107.edgesuite.net +c005.p108.edgesuite.net +c005.p109.edgesuite.net +c005.p110.edgesuite.net +c005.p111.edgesuite.net +c005.p112.edgesuite.net +c005.p113.edgesuite.net +c005.p114.edgesuite.net +c005.p115.edgesuite.net +c005.p116.edgesuite.net +c005.p117.edgesuite.net +c005.p118.edgesuite.net +c005.p119.edgesuite.net +c005.p120.edgesuite.net +c005.p121.edgesuite.net +c005.p122.edgesuite.net +c005.p123.edgesuite.net +c005.p124.edgesuite.net +c005.p125.edgesuite.net +zba2-3-hls5-live.zahs.tv +zba1-3-hls5-live.zahs.tv +zba2-2-hls5-live.zahs.tv +zba1-2-hls5-live.zahs.tv +zba2-3-hls-live.zahs.tv +zba1-3-hls-live.zahs.tv +zba2-2-hls-live.zahs.tv +zba1-2-hls-live.zahs.tv +zba2-0-hls5-vod.zahs.tv +zba1-0-hls5-vod.zahs.tv +zba1-2-hls5-vod.zahs.tv +zba2-2-hls5-vod.zahs.tv +zba1-3-hls5-vod.zahs.tv +zba2-3-hls5-vod.zahs.tv +zba2-3-hds-live.zahs.tv +zba1-3-hds-live.zahs.tv +zba2-2-hds-live.zahs.tv +zba1-2-hds-live.zahs.tv +zba1-0-hds-vod.zahs.tv +zba1-1-hds-vod.zahs.tv +zba1-2-hds-vod.zahs.tv +zba1-3-hds-vod.zahs.tv +zba2-0-hds-vod.zahs.tv +zba2-1-hds-vod.zahs.tv +zba2-2-hds-vod.zahs.tv +zba2-3-hds-vod.zahs.tv +zba2-3-hls5-pvr.zahs.tv +zba1-3-hls5-pvr.zahs.tv +zba1-0-dash-vod.zahs.tv +zba1-1-dash-vod.zahs.tv +zba1-2-dash-vod.zahs.tv +zba1-3-dash-vod.zahs.tv +zba2-0-dash-vod.zahs.tv +zba2-1-dash-vod.zahs.tv +zba2-2-dash-vod.zahs.tv +zba2-3-dash-vod.zahs.tv +zba1-1-dash-pvr.zahs.tv +zba1-0-dash-pvr.zahs.tv +zba1-2-dash-pvr.zahs.tv +zba1-3-dash-pvr.zahs.tv +zba2-0-dash-pvr.zahs.tv +zba2-1-dash-pvr.zahs.tv +zba2-2-dash-pvr.zahs.tv +zba2-3-dash-pvr.zahs.tv +zba2-2-dash-live.zahs.tv +zba2-3-dash-live.zahs.tv +zba1-2-dash-live.zahs.tv +zba1-3-dash-live.zahs.tv +zba1-2-hds-pvr.zahs.tv +zba1-3-hds-pvr.zahs.tv +zba2-2-hds-pvr.zahs.tv +zba2-3-hds-pvr.zahs.tv +zba2-1-hls-pvr.zahs.tv +zba2-2-hls-pvr.zahs.tv +zba2-3-hls-pvr.zahs.tv +zba1-2-hls-pvr.zahs.tv +zba1-3-hls-pvr.zahs.tv +zh2-4-hds-live.zahs.tv +zh2-3-hds-live.zahs.tv +zh2-2-hds-live.zahs.tv +zh2-1-hds-live.zahs.tv +zh2-4-hls-live.zahs.tv +zh2-3-hls-live.zahs.tv +zh2-2-hls-live.zahs.tv +zh2-1-hls-live.zahs.tv +zh2-4-hds-pvr.zahs.tv +zh2-3-hds-pvr.zahs.tv +zh2-2-hds-pvr.zahs.tv +zh2-1-hds-pvr.zahs.tv +zh2-0-hds-pvr.zahs.tv +zh2-4-hds-vod.zahs.tv +zh2-3-hds-vod.zahs.tv +zh2-2-hds-vod.zahs.tv +zh2-1-hds-vod.zahs.tv +zh2-0-hds-vod.zahs.tv +zh2-4-hls5-live.zahs.tv +zh2-3-hls5-live.zahs.tv +zh2-2-hls5-live.zahs.tv +zh2-1-hls5-live.zahs.tv +zh2-0-hls5-live.zahs.tv +zh2-4-hls5-pvr.zahs.tv +zh2-3-hls5-pvr.zahs.tv +zh2-2-hls5-pvr.zahs.tv +zh2-1-hls5-pvr.zahs.tv +zh2-0-hls5-pvr.zahs.tv +zh2-4-hls5enc-vod.zahs.tv +zh2-3-hls5enc-vod.zahs.tv +zh2-2-hls5enc-vod.zahs.tv +zh2-1-hls5enc-vod.zahs.tv +zh2-0-hls5enc-vod.zahs.tv +zh2-0-hls-live.zahs.tv +zh2-4-hls-vod.zahs.tv +zh2-3-hls-vod.zahs.tv +zh2-2-hls-vod.zahs.tv +zh2-1-hls-vod.zahs.tv +zh2-0-hls-vod.zahs.tv +zh2-4-dash-live.zahs.tv +zh2-3-dash-live.zahs.tv +zh2-2-dash-live.zahs.tv +zh2-1-dash-live.zahs.tv +zh2-0-dash-live.zahs.tv +zh2-3-dash-pvr.zahs.tv +zh2-2-dash-pvr.zahs.tv +zh2-1-dash-pvr.zahs.tv +zh2-0-dash-pvr.zahs.tv +zh2-4-dash-vod.zahs.tv +zh2-3-dash-vod.zahs.tv +zh2-2-dash-vod.zahs.tv +zh2-1-dash-vod.zahs.tv +zh2-0-dash-vod.zahs.tv +zh2-0-hls-pvr.zahs.tv +zh2-1-hls-pvr.zahs.tv +zh2-2-hls-pvr.zahs.tv +zh2-3-hls-pvr.zahs.tv +zh2-4-hls-pvr.zahs.tv +c005.p126.edgesuite.net +c005.p127.edgesuite.net +c005.p128.edgesuite.net +c005.p129.edgesuite.net +c005.p130.edgesuite.net +c005.p131.edgesuite.net +c005.p132.edgesuite.net +c005.p133.edgesuite.net +zattoo-hls5-live.akamaized.net +zattoo-hls-live.akamaized.net +zh2-5-hls-pvr.zahs.tv +zh2-6-hls-pvr.zahs.tv +zh2-5-dash-vod.zahs.tv +zh2-6-dash-vod.zahs.tv +zh2-5-dash-pvr.zahs.tv +zh2-5-dash-live.zahs.tv +zh2-6-dash-live.zahs.tv +zh2-5-hls-vod.zahs.tv +zh2-6-hls-vod.zahs.tv +zh2-5-hls-live.zahs.tv +zh2-6-hls-live.zahs.tv +zh2-5-hds-live.zahs.tv +zh2-6-hds-live.zahs.tv +zattoo-hds-live.akamaized.net +zh2-5-hls5-live.zahs.tv +zh2-6-hls5-live.zahs.tv +zh2-6-ss-vod.zahs.tv +zh2-5-ss-vod.zahs.tv +zh2-4-ss-vod.zahs.tv +zh2-3-ss-vod.zahs.tv +zh2-2-ss-vod.zahs.tv +zh2-1-ss-vod.zahs.tv +zh2-0-ss-vod.zahs.tv +zh2-6-ss-pvr.zahs.tv +zh2-5-ss-pvr.zahs.tv +zh2-4-ss-pvr.zahs.tv +zh2-3-ss-pvr.zahs.tv +zh2-2-ss-pvr.zahs.tv +zh2-1-ss-pvr.zahs.tv +zh2-0-ss-pvr.zahs.tv +zh2-0-sspr-pvr.zahs.tv +zh2-1-sspr-pvr.zahs.tv +zh2-2-sspr-pvr.zahs.tv +zh2-3-sspr-pvr.zahs.tv +zh2-4-sspr-pvr.zahs.tv +zh2-5-sspr-pvr.zahs.tv +zh2-6-sspr-pvr.zahs.tv +zh2-0-sspr-live.zahs.tv +zh2-1-sspr-live.zahs.tv +zh2-2-sspr-live.zahs.tv +zh2-3-sspr-live.zahs.tv +zh2-4-sspr-live.zahs.tv +zh2-5-sspr-live.zahs.tv +zh2-6-sspr-live.zahs.tv +zba1-0-sspr-pvr.zahs.tv +zba1-1-sspr-pvr.zahs.tv +zba1-2-sspr-pvr.zahs.tv +zba1-3-sspr-pvr.zahs.tv +zba2-0-sspr-pvr.zahs.tv +zba2-1-sspr-pvr.zahs.tv +zba2-2-sspr-pvr.zahs.tv +zba2-3-sspr-pvr.zahs.tv +zba1-0-sspr-live.zahs.tv +zba1-1-sspr-live.zahs.tv +zba1-2-sspr-live.zahs.tv +zba1-3-sspr-live.zahs.tv +zba2-0-sspr-live.zahs.tv +zba2-1-sspr-live.zahs.tv +zba2-2-sspr-live.zahs.tv +zba2-3-sspr-live.zahs.tv +zh2-5-hds-pvr.zahs.tv +download.zattoo.com +logos.zattic.com +wilmaa.customers.cdn.iptv.ch +zh2-6-hls5enc-vod.zahs.tv +zh2-5-hls5enc-vod.zahs.tv +zh2-4-hls5-vod.zahs.tv +zh2-5-hls5-vod.zahs.tv +zh2-6-hls5-vod.zahs.tv +zh2-1-hls5-vod.zahs.tv +zh2-2-hls5-vod.zahs.tv +zh2-3-hls5-vod.zahs.tv +zh2-0-sspr-vod.zahs.tv +zh2-1-sspr-vod.zahs.tv +zh2-2-sspr-vod.zahs.tv +zh2-3-sspr-vod.zahs.tv +zh2-4-sspr-vod.zahs.tv +zh2-5-sspr-vod.zahs.tv +zh2-6-sspr-vod.zahs.tv +zh2-0-hls5-vod.zahs.tv +zattoo.wemfbox.ch +wilmaatv-144447995.eu-west-1.elb.amazonaws.com +hlsbroker.api.iptv.ch +multiscreencache.tvbackbone.com +zh2-8-hls5-live.zahs.tv +zh2-7-hls5-live.zahs.tv +zh2-7-hls5-vod.zahs.tv +zh2-8-hls5-vod.zahs.tv +zh2-7-sspr-vod.zahs.tv +zh2-8-sspr-vod.zahs.tv +zh2-6-hds-pvr.zahs.tv +zh2-7-hds-pvr.zahs.tv +zh2-8-hds-pvr.zahs.tv +zh2-7-hls-live.zahs.tv +zh2-8-hls-live.zahs.tv +zh2-7-dash-live.zahs.tv +zh2-8-dash-live.zahs.tv +zh2-6-hls5-pvr.zahs.tv +zh2-7-hls5-pvr.zahs.tv +zh2-8-hls5-pvr.zahs.tv +zba1-2-ss-pvr.zahs.tv +zba2-2-ss-pvr.zahs.tv +zpush.zattoo.com +zba1-3-ss-pvr.zahs.tv +zba2-3-ss-pvr.zahs.tv +zh2-7-ss-pvr.zahs.tv +zh2-8-ss-pvr.zahs.tv +zba1-0-sspr-vod.zahs.tv +zba1-1-sspr-vod.zahs.tv +zba1-2-sspr-vod.zahs.tv +zba2-0-sspr-vod.zahs.tv +zba2-1-sspr-vod.zahs.tv +zba2-2-sspr-vod.zahs.tv +zba1-2-hls5enc-vod.zahs.tv +zba1-3-hls5enc-vod.zahs.tv +zba2-2-hls5enc-vod.zahs.tv +zba2-3-hls5enc-vod.zahs.tv +zh2-0-ss-live.zahs.tv +zh2-1-ss-live.zahs.tv +zh2-2-ss-live.zahs.tv +zh2-3-ss-live.zahs.tv +zh2-4-ss-live.zahs.tv +zh2-5-ss-live.zahs.tv +zh2-6-ss-live.zahs.tv +zh2-7-ss-live.zahs.tv +zba1-2-ss-live.zahs.tv +zba1-3-ss-live.zahs.tv +zba2-2-ss-live.zahs.tv +zba2-3-ss-live.zahs.tv +zba1-2-hls5-pvr.zahs.tv +zba2-2-hls5-pvr.zahs.tv +zh2-6-dash-pvr.zahs.tv +zh2-7-dash-pvr.zahs.tv +zh2-8-dash-pvr.zahs.tv +zh2-8-ss-live.zahs.tv +s1019-1-137.cdn.iptv.ch +s1042-0-136.cdn.iptv.ch +s1042-1-137.cdn.iptv.ch +s1019-0-136.cdn.iptv.ch +s1016-1-137.cdn.iptv.ch +zba2-0-hls5enc-live.zahs.tv +zba2-1-hls5enc-live.zahs.tv +zba2-2-hls5enc-live.zahs.tv +zba2-3-hls5enc-live.zahs.tv +s1018-1-137.cdn.iptv.ch +s1018-0-136.cdn.iptv.ch +s1016-0-136.cdn.iptv.ch +s1020-0-136.cdn.iptv.ch +s1020-1-137.cdn.iptv.ch +s1021-1-137.cdn.iptv.ch +s1041-1-137.cdn.iptv.ch +s1021-0-136.cdn.iptv.ch +s1041-0-136.cdn.iptv.ch +app.wilmaa.com +*.wilmaa.com +*.zahs.tv +*.zattoo.com +fr5-1-dash-live.zahs.tv +fr5-2-dash-live.zahs.tv +fr5-3-dash-live.zahs.tv +fr5-4-dash-live.zahs.tv +fr5-5-dash-live.zahs.tv +resources.wilmaa.com +wilmaa.wemfbox.ch +s1017-1-137.cdn.iptv.ch +s1017-0-136.cdn.iptv.ch +zh2-5-hls5-pvr.zahs.tv +zh2-0-dashenc-vod.zahs.tv +zh2-1-dashenc-vod.zahs.tv +zh2-2-dashenc-vod.zahs.tv +zh2-3-dashenc-vod.zahs.tv +zh2-4-dashenc-vod.zahs.tv +zh2-5-dashenc-vod.zahs.tv +media.service.teleboy.ch +fr5-1-hls5-live.zahs.tv +fr5-2-hls5-live.zahs.tv +fr5-3-hls5-live.zahs.tv +fr5-4-hls5-live.zahs.tv +fr5-5-hls5-live.zahs.tv +s1013-0-136.cdn.iptv.ch +s1013-1-137.cdn.iptv.ch +oldpvr1-hls5-pvr.zahs.tv +oldpvr2-hls5-pvr.zahs.tv +oldpvr3-hls5-pvr.zahs.tv +oldpvr4-hls5-pvr.zahs.tv +oldpvr1-dash-pvr.zahs.tv +oldpvr2-dash-pvr.zahs.tv +oldpvr3-dash-pvr.zahs.tv +oldpvr4-dash-pvr.zahs.tv +beta.zattoo.com +fra3-0-ss-live.zahs.tv +fra3-1-ss-live.zahs.tv +fra3-2-ss-live.zahs.tv +zba6-1-dash-live.zahs.tv +zba6-2-dash-live.zahs.tv +zba6-1-ss-live.zahs.tv +zba6-2-ss-live.zahs.tv +zh2-5-hls7-pvr.zahs.tv +zh2-3-hls7-pvr.zahs.tv +zh2-0-hls7-pvr.zahs.tv +zh2-1-hls7-pvr.zahs.tv +zh2-2-hls7-pvr.zahs.tv +zh2-4-hls7-pvr.zahs.tv +zh2-6-hls7-pvr.zahs.tv +zh2-7-hls7-pvr.zahs.tv +zh2-0-hls7-live.zahs.tv +zh2-1-hls7-live.zahs.tv +zh2-2-hls7-live.zahs.tv +zh2-3-hls7-live.zahs.tv +zh2-4-hls7-live.zahs.tv +zh2-5-hls7-live.zahs.tv +zh2-6-hls7-live.zahs.tv +zh2-7-hls7-live.zahs.tv +oldpvr1-hls7-pvr.zahs.tv +oldpvr2-hls7-pvr.zahs.tv +oldpvr3-hls7-pvr.zahs.tv +oldpvr4-hls7-pvr.zahs.tv +zattoo-dash-live.akamaized.net +oldpvr1-ss-pvr.zahs.tv +oldpvr2-ss-pvr.zahs.tv +oldpvr3-ss-pvr.zahs.tv +oldpvr4-ss-pvr.zahs.tv +tv.api.teleboy.ch +zattoo-ss-live.akamaized.net +fra3-1-ss-pvr.zahs.tv +fra3-0-ss-pvr.zahs.tv +fra3-2-ss-pvr.zahs.tv +fra3-3-ss-pvr.zahs.tv +zh2-9-hls5-live.zahs.tv +zh2-9-hls5-pvr.zahs.tv +zba6-0-hls5-live.zahs.tv +zba6-1-hls5-live.zahs.tv +zba6-2-hls5-live.zahs.tv +zba6-0-hls5-pvr.zahs.tv +zba6-1-hls5-pvr.zahs.tv +zba6-2-hls5-pvr.zahs.tv +zba6-0-dash-pvr.zahs.tv +zba6-1-dash-pvr.zahs.tv +zba6-2-dash-pvr.zahs.tv +fra3-0-dash-pvr.zahs.tv +fra3-1-dash-pvr.zahs.tv +fra3-2-dash-pvr.zahs.tv +fra3-3-dash-pvr.zahs.tv +zba6-0-dash-live.zahs.tv +fra3-0-dash-live.zahs.tv +fra3-1-dash-live.zahs.tv +fra3-2-dash-live.zahs.tv +fra3-3-dash-live.zahs.tv +zba8-0-dash-live.zahs.tv +zba8-1-dash-live.zahs.tv +zba8-2-dash-live.zahs.tv +zba8-0-dash-pvr.zahs.tv +zba8-1-dash-pvr.zahs.tv +zba8-2-dash-pvr.zahs.tv +zh2-9-dash-live.zahs.tv +zh2-9-dash-pvr.zahs.tv +zh2-6-dashenc-vod.zahs.tv +zh2-7-dashenc-vod.zahs.tv +zh2-8-dashenc-vod.zahs.tv +zh2-9-dashenc-vod.zahs.tv +zh2-6-dashenc-live.zahs.tv +zh2-7-dashenc-live.zahs.tv +zh2-8-dashenc-live.zahs.tv +zh2-1-dashenc-live.zahs.tv +zh2-2-dashenc-live.zahs.tv +zh2-3-dashenc-live.zahs.tv +zh2-4-dashenc-live.zahs.tv +zh2-5-dashenc-live.zahs.tv +zh2-1-dashenc-pvr.zahs.tv +zh2-2-dashenc-pvr.zahs.tv +zh2-3-dashenc-pvr.zahs.tv +zh2-4-dashenc-pvr.zahs.tv +zh2-5-dashenc-pvr.zahs.tv +zh2-6-dashenc-pvr.zahs.tv +zh2-7-dashenc-pvr.zahs.tv +zh2-8-dashenc-pvr.zahs.tv +zh2-9-dashenc-pvr.zahs.tv +fr5-1-dashenc-vod.zahs.tv +fr5-2-dashenc-vod.zahs.tv +fr5-3-dashenc-vod.zahs.tv +fr5-4-dashenc-vod.zahs.tv +fr5-5-dashenc-vod.zahs.tv +fr5-1-dashenc-live.zahs.tv +fr5-2-dashenc-live.zahs.tv +fr5-3-dashenc-live.zahs.tv +fr5-4-dashenc-live.zahs.tv +fr5-5-dashenc-live.zahs.tv +zba6-0-dashenc-vod.zahs.tv +zba6-1-dashenc-vod.zahs.tv +zba6-2-dashenc-vod.zahs.tv +zba6-0-dashenc-live.zahs.tv +zba6-1-dashenc-live.zahs.tv +zba6-2-dashenc-live.zahs.tv +fr5-0-dashenc-live.zahs.tv +fr5-0-dashenc-vod.zahs.tv +zh2-0-dashenc-pvr.zahs.tv +zh2-0-dashenc-live.zahs.tv +fra3-0-hls7-live.zahs.tv +fra3-1-hls7-live.zahs.tv +fra3-2-hls7-live.zahs.tv +fra3-3-hls7-live.zahs.tv +fra3-0-hls7-pvr.zahs.tv +fra3-1-hls7-pvr.zahs.tv +fra3-2-hls7-pvr.zahs.tv +fra3-3-hls7-pvr.zahs.tv +fra3-0-hls7-vod.zahs.tv +fra3-1-hls7-vod.zahs.tv +fra3-2-hls7-vod.zahs.tv +fra3-3-hls7-vod.zahs.tv +fra3-0.zahs.tv +fra3-1.zahs.tv +fra3-2.zahs.tv +fra3-3.zahs.tv +zba8-0.zahs.tv +zba8-1.zahs.tv +zba8-2.zahs.tv +zba8-0-hls7-live.zahs.tv +zba8-1-hls7-live.zahs.tv +zba8-2-hls7-live.zahs.tv +zba8-0-hls7-pvr.zahs.tv +zba8-1-hls7-pvr.zahs.tv +zba8-2-hls7-pvr.zahs.tv +zba8-0-hls7-vod.zahs.tv +zba8-1-hls7-vod.zahs.tv +zba8-2-hls7-vod.zahs.tv +zh2-8-hls7-live.zahs.tv +zh2-9-hls7-live.zahs.tv +zh2-8-hls7-pvr.zahs.tv +zh2-9-hls7-pvr.zahs.tv +zh2-8-hls7-vod.zahs.tv +zh2-9-hls7-vod.zahs.tv +zba6-0-hls7-live.zahs.tv +zba6-1-hls7-live.zahs.tv +zba6-2-hls7-live.zahs.tv +zba6-0-hls7-pvr.zahs.tv +zba6-1-hls7-pvr.zahs.tv +zba6-2-hls7-pvr.zahs.tv +zba6-0-hls7-vod.zahs.tv +zba6-1-hls7-vod.zahs.tv +zba6-2-hls7-vod.zahs.tv +zba6-0.zahs.tv +zba6-1.zahs.tv +zba6-2.zahs.tv +fr5-0-hls7-live.zahs.tv +fr5-1-hls7-live.zahs.tv +fr5-2-hls7-live.zahs.tv +fr5-3-hls7-live.zahs.tv +fr5-4-hls7-live.zahs.tv +fr5-5-hls7-live.zahs.tv +fr5-0-hls7-pvr.zahs.tv +fr5-1-hls7-pvr.zahs.tv +fr5-2-hls7-pvr.zahs.tv +fr5-3-hls7-pvr.zahs.tv +fr5-4-hls7-pvr.zahs.tv +fr5-5-hls7-pvr.zahs.tv +fr5-0-hls7-vod.zahs.tv +fr5-1-hls7-vod.zahs.tv +fr5-2-hls7-vod.zahs.tv +fr5-3-hls7-vod.zahs.tv +fr5-4-hls7-vod.zahs.tv +fr5-5-hls7-vod.zahs.tv +fr5-0.zahs.tv +fr5-1.zahs.tv +fr5-2.zahs.tv +fr5-3.zahs.tv +fr5-4.zahs.tv +fr5-5.zahs.tv +teleboy-ssl.wemfbox.ch +fra3-0-hls5-live.zahs.tv +fra3-1-hls5-live.zahs.tv +fra3-2-hls5-live.zahs.tv +fra3-3-hls5-live.zahs.tv +fra3-0-hls5-pvr.zahs.tv +fra3-1-hls5-pvr.zahs.tv +fra3-2-hls5-pvr.zahs.tv +fra3-3-hls5-pvr.zahs.tv +fra3-0-hls5-vod.zahs.tv +fra3-1-hls5-vod.zahs.tv +fra3-2-hls5-vod.zahs.tv +fra3-3-hls5-vod.zahs.tv +zba8-0-hls5-live.zahs.tv +zba8-1-hls5-live.zahs.tv +zba8-2-hls5-live.zahs.tv +zba8-0-hls5-pvr.zahs.tv +zba8-1-hls5-pvr.zahs.tv +zba8-2-hls5-pvr.zahs.tv +zba8-0-hls5-vod.zahs.tv +zba8-1-hls5-vod.zahs.tv +zba8-2-hls5-vod.zahs.tv +zh2-9-ss-pvr.zahs.tv +zh2-9-ss-live.zahs.tv +zba6-0-ss-live.zahs.tv +zba6-0-ss-pvr.zahs.tv +zba6-1-ss-pvr.zahs.tv +zattoo-hls7-live.akamaized.net +zattoo-ssl.wemfbox.ch +fr5-0-hls5-live.zahs.tv +zba6-1-hls-live.zahs.tv +zba6-0-hls-live.zahs.tv +zh2-9-hls-live.zahs.tv +fr5-4-ss-live.zahs.tv +fr5-4-ss-pvr.zahs.tv +fr5-3-ss-live.zahs.tv +fr5-3-ss-pvr.zahs.tv +fr5-5-ss-live.zahs.tv +fr5-5-ss-pvr.zahs.tv +fr5-3-hls-live.zahs.tv +fr5-4-hls-live.zahs.tv +fr5-5-dash-pvr.zahs.tv +fr5-3-dash-pvr.zahs.tv +fr5-5-hls-live.zahs.tv +zh2-10-ss-pvr.zahs.tv +zba6-0-dash-vod.zahs.tv +zba6-1-dash-vod.zahs.tv +zba6-2-dash-vod.zahs.tv +zh2-10-hls-live.zahs.tv +zh2-10-dash-vod.zahs.tv +zh2-10-dash-pvr.zahs.tv +zh2-10-ss-live.zahs.tv +zba6-2-hls-live.zahs.tv +zba6-2-ss-pvr.zahs.tv +zh2-11-dash-live.zahs.tv +zh2-11-ss-pvr.zahs.tv +zh2-11-ss-live.zahs.tv +zh2-11-hls-live.zahs.tv +zh2-11-dash-vod.zahs.tv +zh2-10-hls5-live.zahs.tv +zh2-10-dash-live.zahs.tv +zh2-10-hls7-live.zahs.tv +fr5-0-hls-live.zahs.tv +fr5-1-hls-live.zahs.tv +fr5-2-hls-live.zahs.tv +fra3-0-hls-live.zahs.tv +fra3-1-hls-live.zahs.tv +fra3-2-hls-live.zahs.tv +fra3-3-hls-live.zahs.tv +fr5-0-dash-live.zahs.tv +fr5-0-ss-live.zahs.tv +fr5-1-ss-live.zahs.tv +fr5-2-ss-live.zahs.tv +fra3-3-ss-live.zahs.tv +fr5-0-ss-pvr.zahs.tv +fr5-1-ss-pvr.zahs.tv +fr5-2-ss-pvr.zahs.tv +fr5-0-hls-pvr.zahs.tv +fr5-1-hls-pvr.zahs.tv +fr5-2-hls-pvr.zahs.tv +fr5-3-hls-pvr.zahs.tv +fr5-4-hls-pvr.zahs.tv +fr5-5-hls-pvr.zahs.tv +fra3-1-hls-pvr.zahs.tv +fra3-2-hls-pvr.zahs.tv +fra3-3-hls-pvr.zahs.tv +zh2-7-hls-pvr.zahs.tv +zh2-8-hls-pvr.zahs.tv +zh2-9-hls-pvr.zahs.tv +zba6-0-hls-pvr.zahs.tv +zba6-1-hls-pvr.zahs.tv +zba6-2-hls-pvr.zahs.tv +fr5-0-hls5-pvr.zahs.tv +fr5-1-hls5-pvr.zahs.tv +fr5-2-hls5-pvr.zahs.tv +fr5-3-hls5-pvr.zahs.tv +fr5-4-hls5-pvr.zahs.tv +fr5-5-hls5-pvr.zahs.tv +zh2-4-dash-pvr.zahs.tv +fr5-0-dash-pvr.zahs.tv +fr5-1-dash-pvr.zahs.tv +fr5-2-dash-pvr.zahs.tv +fr5-4-dash-pvr.zahs.tv +chromecast-receiver.zattoo.com +zattoo-tizen.zattoo.com +zh2-11-hls7-live.zahs.tv +zh2-11-hls5-live.zahs.tv +zh2-11-dash-pvr.zahs.tv +zh2-11-hls7-pvr.zahs.tv +shop0088.zattoo.com +www.sky.ch +sky.ch +show.sky.ch +sport.sky.ch +store.sky.ch +services.sg1.etvp01.sctv.ch +tvoosa-pez0401.sctv.ch +tvoosa-pez0402.sctv.ch +tvoosa-pez0403.sctv.ch +tvoosa-pez0404.sctv.ch +tvoosa-pez0405.sctv.ch +tvoosa-pez0406.sctv.ch +tvoosa-pez0407.sctv.ch +tvoosa-pez0408.sctv.ch +tvoosa-pez0409.sctv.ch +tvoosa-pez0410.sctv.ch +tvoosa-pez0412.sctv.ch +tvoosa-pez0413.sctv.ch +tvoosa-pez04014sctv.ch +tvoosa-pez0415.sctv.ch +tvoosa-pez0416.sctv.ch +tvoosa-pez0417.sctv.ch +tvoosa-pez0418.sctv.ch +tvoosa-pez0419.sctv.ch +tvoosa-pez0420.sctv.ch +tvoosa-pez0400.sctv.ch +test.teleboy.ch +fr5-1-hls7enc-live.zahs.tv +fr5-2-hls7enc-live.zahs.tv +fr5-3-hls7enc-live.zahs.tv +fr5-4-hls7enc-live.zahs.tv +fr5-5-hls7enc-live.zahs.tv +zh2-1-hls7enc-live.zahs.tv +zh2-2-hls7enc-live.zahs.tv +zh2-3-hls7enc-live.zahs.tv +zh2-4-hls7enc-live.zahs.tv +zh2-5-hls7enc-live.zahs.tv +zh2-6-hls7enc-live.zahs.tv +zh2-7-hls7enc-live.zahs.tv +zh2-8-hls7enc-live.zahs.tv +zh2-9-hls7enc-live.zahs.tv +zh2-10-hls7enc-live.zahs.tv +zh2-11-hls7enc-live.zahs.tv +zh2-12-hls7enc-live.zahs.tv +zh2-13-hls7enc-live.zahs.tv +zba6-1-hls7enc-live.zahs.tv +zba6-2-hls7enc-live.zahs.tv +zh2-0-hls7enc-live.zahs.tv +zba6-0-hls7enc-live.zahs.tv +fr5-0-hls7enc-vod.zahs.tv +fr5-1-hls7enc-vod.zahs.tv +fr5-2-hls7enc-vod.zahs.tv +fr5-3-hls7enc-vod.zahs.tv +fr5-4-hls7enc-vod.zahs.tv +fr5-5-hls7enc-vod.zahs.tv +fr5-0-hls7enc-live.zahs.tv +zh2-0-hls7enc-vod.zahs.tv +zh2-1-hls7enc-vod.zahs.tv +zh2-2-hls7enc-vod.zahs.tv +zh2-3-hls7enc-vod.zahs.tv +zh2-4-hls7enc-vod.zahs.tv +zh2-5-hls7enc-vod.zahs.tv +zh2-6-hls7enc-vod.zahs.tv +zh2-7-hls7enc-vod.zahs.tv +zh2-8-hls7enc-vod.zahs.tv +zh2-9-hls7enc-vod.zahs.tv +zh2-10-hls7enc-vod.zahs.tv +zh2-11-hls7enc-vod.zahs.tv +zh2-12-hls7enc-vod.zahs.tv +zh2-13-hls7enc-vod.zahs.tv +zba6-0-sspr-pvr.zahs.tv +zba6-1-sspr-pvr.zahs.tv +zba6-2-sspr-pvr.zahs.tv +fr5-0-sspr-pvr.zahs.tv +fr5-1-sspr-pvr.zahs.tv +fr5-2-sspr-pvr.zahs.tv +fr5-3-sspr-pvr.zahs.tv +fr5-4-sspr-pvr.zahs.tv +fr5-5-sspr-pvr.zahs.tv +fr5-0-dashenc-pvr.zahs.tv +fr5-1-dashenc-pvr.zahs.tv +fr5-2-dashenc-pvr.zahs.tv +fr5-3-dashenc-pvr.zahs.tv +fr5-4-dashenc-pvr.zahs.tv +fr5-5-dashenc-pvr.zahs.tv +zba6-0-dashenc-pvr.zahs.tv +zba6-1-dashenc-pvr.zahs.tv +zba6-2-dashenc-pvr.zahs.tv +oldpvr1-dashenc-pvr.zahs.tv +oldpvr2-dashenc-pvr.zahs.tv +oldpvr3-dashenc-pvr.zahs.tv +oldpvr4-dashenc-pvr.zahs.tv +zh2-10-dashenc-pvr.zahs.tv +zh2-11-dashenc-pvr.zahs.tv +zh2-12-dashenc-pvr.zahs.tv +zh2-13-dashenc-pvr.zahs.tv +zh2-7-sspr-live.zahs.tv +zh2-8-sspr-live.zahs.tv +zh2-9-sspr-live.zahs.tv +zh2-10-sspr-live.zahs.tv +zh2-11-sspr-live.zahs.tv +zh2-12-sspr-live.zahs.tv +zh2-13-sspr-live.zahs.tv +fr5-0-sspr-live.zahs.tv +fr5-1-sspr-live.zahs.tv +fr5-2-sspr-live.zahs.tv +fr5-3-sspr-live.zahs.tv +fr5-4-sspr-live.zahs.tv +fr5-5-sspr-live.zahs.tv +fr5-0-hls7enc-pvr.zahs.tv +fr5-1-hls7enc-pvr.zahs.tv +fr5-2-hls7enc-pvr.zahs.tv +fr5-3-hls7enc-pvr.zahs.tv +fr5-4-hls7enc-pvr.zahs.tv +fr5-5-hls7enc-pvr.zahs.tv +zh2-0-hls7enc-pvr.zahs.tv +zh2-1-hls7enc-pvr.zahs.tv +zh2-2-hls7enc-pvr.zahs.tv +zh2-3-hls7enc-pvr.zahs.tv +zh2-4-hls7enc-pvr.zahs.tv +zh2-5-hls7enc-pvr.zahs.tv +zh2-6-hls7enc-pvr.zahs.tv +zh2-7-hls7enc-pvr.zahs.tv +zh2-8-hls7enc-pvr.zahs.tv +zh2-9-hls7enc-pvr.zahs.tv +zh2-10-hls7enc-pvr.zahs.tv +zh2-11-hls7enc-pvr.zahs.tv +zh2-12-hls7enc-pvr.zahs.tv +zh2-13-hls7enc-pvr.zahs.tv +zba6-0-hls7enc-pvr.zahs.tv +zba6-1-hls7enc-pvr.zahs.tv +zba6-2-hls7enc-pvr.zahs.tv +oldpvr1-hls7enc-pvr.zahs.tv +oldpvr2-hls7enc-pvr.zahs.tv +oldpvr3-hls7enc-pvr.zahs.tv +oldpvr4-hls7enc-pvr.zahs.tv +zh2-7-sspr-pvr.zahs.tv +zh2-8-sspr-pvr.zahs.tv +zh2-9-sspr-pvr.zahs.tv +zh2-10-sspr-pvr.zahs.tv +zh2-11-sspr-pvr.zahs.tv +zh2-9-dashenc-live.zahs.tv +zh2-10-dashenc-live.zahs.tv +zh2-11-dashenc-live.zahs.tv +zba6-0-sspr-live.zahs.tv +zba6-1-sspr-live.zahs.tv +zba6-2-sspr-live.zahs.tv +zba6-0-sspr-vod.zahs.tv +zba6-1-sspr-vod.zahs.tv +zba6-2-sspr-vod.zahs.tv +fr5-0-dash-vod.zahs.tv +fr5-1-dash-vod.zahs.tv +fr5-2-dash-vod.zahs.tv +fr5-3-dash-vod.zahs.tv +fr5-4-dash-vod.zahs.tv +fr5-5-dash-vod.zahs.tv +fr5-0-sspr-vod.zahs.tv +fr5-1-sspr-vod.zahs.tv +fr5-2-sspr-vod.zahs.tv +fr5-3-sspr-vod.zahs.tv +fr5-4-sspr-vod.zahs.tv +fr5-5-sspr-vod.zahs.tv +zh2-13-hls7-pvr.zahs.tv +zh2-12-hls7-live.zahs.tv +zh2-13-hls7-live.zahs.tv +zh2-12-hls7-vod.zahs.tv +www.teleboy.ch +il.srgssr.ch +srgssruni1ch-lh.akamaihd.net +srgssruni2ch-lh.akamaihd.net +srgssruni3ch-lh.akamaihd.net +sftv-ssl.wemfbox.ch +www.srf.ch +srfvodhd-vh.akamaihd.net +srgssrrcdvr5ch-lh.akamaihd.net +srgssrgop18a-lh.akamaihd.net +srgssruni18ach-lh.akamaihd.net +srgssruni6ch-lh.akamaihd.net +srgssrrcdvr4ch-lh.akamaihd.net +srgssruni4ch-lh.akamaihd.net +srgssrgop18b-lh.akamaihd.net +srgssrrcdvr1ch-lh.akamaihd.net +srgssrrcdvr2ch-lh.akamaihd.net +srgssrrcdvr3ch-lh.akamaihd.net +srgssrrcdvr6ch-lh.akamaihd.net +ws.srf.ch +geo.francetv.fr +ftvodhdsecz-f.akamaihd.net +pluzz.francetv.fr +webservices.francetelevisions.fr +pluzz.webservices.francetelevisions.fr +geoftv-a.akamaihd.net +ftveninfo-lh.akamaihd.net +live.francetv.fr +hdfauthftv-a.akamaihd.net +replayftv-vh.akamaihd.net +livefrancetv.akamaized.net +cloudreplayfrancetv.akamaized.net +www.france.tv +cloudingestfrancetv.akamaized.net +ftvingest-vh.akamaihd.net +staticftv-a.akamaihd.net +cloudreplay.ftven.fr +simulcast.ftven.fr +cloudingest.ftven.fr +live-olympics.ftven.fr +reco.webservices.francetelevisions.fr +player.webservices.francetelevisions.fr +mobile.france.tv +hdfauth.ftven.fr +simulcast-p.ftven.fr +liveventftv.akamaized.net +www.arte.tv +org-www.arte.tv +api.arte.tv +arte.tv +artestras.fc.llnwd.net +api.skychnl.net +artelive-lh.akamaihd.net +arteptweb-vh.akamaihd.net +arteconcert-vh.akamaihd.net +api-cdn.arte.tv +geoloc.arte.tv +sso.arte.tv +wp.arte.tv +y1.arte.tv +static-cdn.arte.tv +arteeurope-vh.akamaihd.net +artehls-vh.akamaihd.net +api-cdn.arte.tv.edgekey.net +artesimulcast.akamaized.net +tf1livhdsstrike-lh.akamaihd.net +s.wat.tv +www.wat.tv +tmclivhdsweblive-lh.akamaihd.net +nt1livhdsweb-lh.akamaihd.net +hd1livhdsweblive-lh.akamaihd.net +geoloc.tf1.fr +delivery.tf1.fr +player.tf1.fr +www.tf1.fr +das-q1-ssl.tf1.fr +cdn1-live.mlflux.net +cdn2-live.mlflux.net +cdn3-live.mlflux.net +noqs-cnd1-live.mlflux.net +cdn3-live-mlflux-net.akamaized.net +cdn3-vod-mlflux-net.akamaized.net +atv.molotov.tv +fusion.molotov.tv +fapi.molotov.tv +app.molotov.tv +desktop-auto-upgrade.molotov.tv +images.molotov.tv +cdn3-vod.mlflux.net +cdn2-vod.mlflux.net +cdn1-vod.mlflux.net +wpush.molotov.tv +fp-vs.azureedge.net +www.viaplay.no +www.viaplay.se +www.viaplay.dk +www.viaplay.fi +checkout.viaplay.no +checkout.viaplay.se +checkout.viaplay.dk +checkout.viaplay.fi +play.viaplay.no +play.viaplay.se +play.viaplay.dk +play.viaplay.fi +account.viaplay.no +account.viaplay.se +account.viaplay.dk +account.viaplay.fi +appconfig.pdl.viaplay.com +content.viaplay.se +content.viaplay.no +content.viaplay.dk +content.viaplay.fi +viaplay.mtg-api.com +tnfailover.viaplay.tv +login.viaplay.no +login.viaplay.se +login.viaplay.dk +login.viaplay.fi +scandi-secure-vod.hls.adaptive.level3.net +appletv.viaplay.se +appletv.viaplay.no +appletv.viaplay.dk +appletv.viaplay.fi +viaplay.no +viaplay.se +viaplay.dk +viaplay.fi +psfil.tv.nrk.no +nordond-f.akamaihd.net +m.nrk.no +nrk1us-f.akamaihd.net +nrk2us-f.akamaihd.net +nrk3us-f.akamaihd.net +nrksuper-lh.akamaihd.net +nrktegnsprak-lh.akamaihd.net +v8-psapi.nrk.no +v8.psapi.nrk.no +psapi-ne.nrk.no +httpcache0-47115-httpcache0.dna.qbrick.com +nrk-nrk1.akamaized.net +nrk-nrk2.akamaized.net +nrk-nrk3.akamaized.net +fastly3.cedexis.fastlylb.net +nordond11c-f.akamaihd.net +fastly.cedexis-test.com +nrk-od-95.akamaized.net +httpcache0-47115-cacheod0.dna.qbrick.com +nrk-od-no.telenorcdn.net +psapi-we.nrk.no +innlogging.nrk.no +nrktv-ios-version-check.nrk.no +nrkod37-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod04-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod01-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod02-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod03-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod05-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod06-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod07-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod08-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod09-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod10-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod11-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod12-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod13-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod14-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod15-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod16-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod17-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod18-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod19-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod20-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod21-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod22-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod23-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod24-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod25-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod26-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod27-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod28-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod29-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod30-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod31-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod32-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod33-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod34-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod35-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod36-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod38-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod39-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod40-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod41-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod42-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod43-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod44-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod45-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod46-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod47-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod48-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod49-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod50-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod51-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod52-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod53-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod54-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod55-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod56-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod57-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod58-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod59-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod60-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod61-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod62-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod63-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod64-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod65-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod66-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod67-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod68-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod69-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod70-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod71-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod72-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod73-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod74-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod75-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod76-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod77-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod78-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod79-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod80-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod81-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod82-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod83-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod84-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod85-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod86-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod87-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod88-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod89-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod90-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod91-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod92-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod93-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod94-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod95-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod96-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod97-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod98-httpcache0-47115-cacheod0.dna.ip-only.net +nrkod99-httpcache0-47115-cacheod0.dna.ip-only.net +www.nrk.no +ssl-nrk.tns-cs.net +nrkstream.tns-cs.net +undertekst.nrk.no +dr01-lh.akamaihd.net +dr02-lh.akamaihd.net +dr03-lh.akamaihd.net +dr04-lh.akamaihd.net +dr05-lh.akamaihd.net +dr06-lh.akamaihd.net +drod-vh.akamaihd.net +www.dr.dk +www.dr-massive.com +drlowlat.akamaized.net +ssl-drtv-appletv.tns-gallup.dk +drlive01hls.akamaized.net +drlive02hls.akamaized.net +drlive03hls.akamaized.net +downol.dr.dk +drod24t.akamaized.net +iview.abc.net.au +cdn.iview.abc.net.au +www.abc.net.au +iviewmetered-vh.akamaihd.net +iviewhls-i.akamaihd.net +a888.avodsl-s.akamaihd.net +abcsecurehttp-a.akamaihd.net +iphonestreaming.abc.net.au +abctvlivehds-lh.akamaihd.net +cp81899.live.edgefcs.net +abcnews24livehds-lh.akamaihd.net +abctvlivehls-lh.akamaihd.net +abcnews24hls-lh.akamaihd.net +iview-vod.akamaized.net +api.iview.abc.net.au +abc-iview-mediapackagestreams-1.akamaized.net +abc-iview-mediapackagestreams-2.akamaized.net +iviewhlsvod-vh.akamaihd.net +foxsportshds-vh.akamaihd.net +foxsportshdhls-lh.akamaihd.net +foxsportshls-vh.akamaihd.net +foxsportseplhds-vh.akamaihd.net +fseplhdhds-lh.akamaihd.net +foxsportshlsg01-lh.akamaihd.net +www.lightbox.co.nz +tdvott-a.akamaihd.net +appgrid-api.cloud.accedo.tv +vpc-lightbox-api-production.cloud.xstream.dk +www.devices.lightbox.co.nz +vpc-lightbox-apigw-production.cloud.xstream.dk +api.lightbox.co.nz +lbdash.akamaized.net +lbsmooth.akamaized.net +lbhls.akamaized.net +staragvod1-vh.akamaihd.net +staragvod-vh.akamaihd.net +staragvod2-vh.akamaihd.net +ipl2061-i.akamaihd.net +star.drm.edgesuite.net +t1re-s.akamaihd.net +service.hotstar.com +beacon.hotstar.com +getcdn.hotstar.com +staragatv.akamaized.net +media1-starag.startv.in +media0-starag.startv.in +search.hotstar.com +hshls2-i.akamaihd.net +staragvod3-vh.akamaihd.net +staragvod4-vh.akamaihd.net +account.hotstar.com +www.hotstar.com +segment.hotstar.com +services.hotstar.com +media-starag.startv.in +hotstar-sin.gravityrd-services.com +hstennislive2-lh.akamaihd.net +secure-getcdn.hotstar.com +secure-media1.hotstar.com +hotstar.worldgravity.com +umsp.hotstar.com +ca.hotstar.com +secure-media0.hotstar.com +secure-media2.hotstar.com +secure-media.hotstar.com +drm.hotstar.com +cws-usw2.conviva.com +hssportsprepack.akamaized.net +hssports33-i.akamaihd.net +api.hotstar.com +staragdash.akamaized.net +staragdash.edgesuite.net +cdn.meta.ndmdhs.com +gcache.hotstar.com +hsdesinova.akamaized.net +sshd2livetv-i.akamaihd.net +starplushd-i.akamaihd.net +sshd1livetv-i.akamaihd.net +starbharat-i.akamaihd.net +starsuvarna-i.akamaihd.net +starutsav-i.akamaihd.net +maagold-i.akamaihd.net +asianethd-i.akamaihd.net +asianetplus-i.akamaihd.net +channelv-i.akamaihd.net +sshindi-i.akamaihd.net +starvijay-i.akamaihd.net +ssselecthd1-i.akamaihd.net +maatv-i.akamaihd.net +ssselecthd2-i.akamaihd.net +hsdashbundesliga1.akamaized.net +hsdashbundesliga2.akamaized.net +hsdashbundesliga3.akamaized.net +hsdashbundesliga4.akamaized.net +hsdashbundesliga5.akamaized.net +hsdashbundesliga6.akamaized.net +hsprepack.akamaized.net +hsdash30.akamaized.net +hses.akamaized.net +live01.akt.hotstar-cdn.net +bifrost-api.hotstar.com +live12.akt.hotstar-cdn.net +us.hotstar.com +live11.hotstar.com +live12.hotstar.com +live13.hotstar.com +live14.hotstar.com +live15.hotstar.com +secure-media1.hotstarext.com +live15p.hotstar.com +live11p.hotstar.com +live12p.hotstar.com +live13p.hotstar.com +live14p.hotstar.com +persona.hotstar.com +live09.akt.hotstar-cdn.net +live02.akt.hotstar-cdn.net +live03.akt.hotstar-cdn.net +live05.akt.hotstar-cdn.net +live06.akt.hotstar-cdn.net +live07.akt.hotstar-cdn.net +live08.akt.hotstar-cdn.net +img1.hotstarext.com +logs.hotstar.com +sub-media.hotstar.com +bifrost.hotstar.com +hotstar.com +img1.hotstar.com +hooq-vod.akamaized.net +hq-clr.akamaized.net +cf-images.ap-southeast-1.prod.boltdns.net +hses.hotstar.com +hshlsnews14-i.akamaihd.net +hsnewsprepack.akamaized.net +live01p.hotstar.com +live02p.hotstar.com +live03p.hotstar.com +live04p.hotstar.com +live05p.hotstar.com +live06p.hotstar.com +live07p.hotstar.com +live08p.hotstar.com +live09p.hotstar.com +live10p.hotstar.com +tv.hotstar.com +webos.hotstar.com +secure-media.hotstarext.com +vod01.akt.hotstar-cdn.net +tailor.akt.hotstar-cdn.net +live12p.akt.hotstar-cdn.net +live11p.akt.hotstar-cdn.net +tizen.hotstar.com +check.dns4me.net +api.production.k8s.y3o.tv +rest.yallo.ch +yallo.ch +www.yallo.ch +yallo.tv +www.yallo.tv +sdp.123data.net +d1ddyhvswp58xh.cloudfront.net +data.production.web.y3o.tv +y3o.tv +*.y3o.tv +login-scl-swisscom-ch.hdb-cs04.ellb.ch +bwsso.login.scl.swisscom.ch +*.swisscom.ch +swisscom.ch +login.scl.swisscom.ch diff --git a/proxies/generate_json.py b/proxies/generate_json.py new file mode 100644 index 0000000..69fb462 --- /dev/null +++ b/proxies/generate_json.py @@ -0,0 +1,109 @@ +import json + +domains = open("domains.lst", "r") +domains = domains.readlines() + + +#print(domains) +#array = [] +#data = { +# "domains": { +# "proxies": [ +# { +# "alias":"amazon_atv-ps-eu", +# "domain":"atv-ps-eu.amazon.com", +# "protocols": ["http", "https"], +# "dnat": "false" +# } +# ] +# } +#} + + + +result = ('{\n') +result += (' "domains": {\n') +result += (' "proxies": [\n') +for domain in domains: + domain = domain.strip() + result += (' {\n') + result += (' "alias":"' + domain + '",\n') + result += (' "domain":"' + domain + '",\n') + result += (' "protocols": ["http", "https"],\n') + result += (' "dnat": true\n') + result += (' },\n') +result += (' {\n') +result += (' "alias":"placeholder.de",\n') +result += (' "domain":"placeholder.de",\n') +result += (' "protocols": ["http", "https"],\n') +result += (' "dnat": true\n') +result += (' }\n') + +result += (' ]\n') +result += (' }\n') +result += ('}\n') + + + + + + +#result += ('"amazon": {') +# "proxies": [ +# { +# "alias":"amazon_atv-ps-eu", +# "domain":"atv-ps-eu.amazon.com", +# "protocols": ["http", "https"], +# "dnat": true +# }, +# { +# "alias":"amazon_atv-ext-eu", +# "domain":"atv-ext-eu.amazon.com", +# "protocols": ["http", "https"], +# "dnat": false +# }, +# { +# "alias":"amazon_atv-eu", +# "domain":"atv-eu.amazon.com", +# "protocols": ["http", "https"], +# "dnat": true + # } + # ] + # } +#} + +#print (result) + + + + +#print(json_string) + +# Directly from dictionary +#with open('json_data.json', 'w') as outfile: +# json.dump(json_string, outfile) +# Using a JSON string +#with open('json_data.json', 'w') as outfile: +# outfile.write(json_string) + +#with open('proxies-us.json', 'w') as f: +# json.dump(array, f, indent=2) +# print("New json file is created from data.json file") + + + +#newJson = json.dump(result,, indent=2, separators=(',', ': ')) +#json.dump(json_data, result, separators=(',', ':')) +#with open('proxies-us.json', 'w') as json_file: +# json_file.write(json_data) + +#with open('proxies-us.json', 'w') as outfile: +# json.dump(result, outfile, separators=(',', ':')) + +#with open('proxies-us.json', 'w') as f: +# f.write(result) + + +with open('proxies-ch.json', 'w') as f: + f.write(result) + f.close() diff --git a/proxies/proxies-ch.json b/proxies/proxies-ch.json new file mode 100644 index 0000000..e0276a7 --- /dev/null +++ b/proxies/proxies-ch.json @@ -0,0 +1,18372 @@ +{ + "domains": { + "proxies": [ + { + "alias":"api.roku.com", + "domain":"api.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.rokutime.com", + "domain":"api.rokutime.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www-roku.mgo.com", + "domain":"www-roku.mgo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.mobile.roku.com", + "domain":"api.mobile.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.sr.roku.com", + "domain":"api.sr.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cigars.roku.com", + "domain":"cigars.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cloudservices.roku.com", + "domain":"cloudservices.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api2.sr.roku.com", + "domain":"api2.sr.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aphrodite.web.roku.com", + "domain":"aphrodite.web.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"order.rhapsody.com", + "domain":"order.rhapsody.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.pandora.com", + "domain":"www.pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tuner.pandora.com", + "domain":"tuner.pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"device-tuner.pandora.com", + "domain":"device-tuner.pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tv.pandora.com", + "domain":"tv.pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"bivl.pandora.com", + "domain":"bivl.pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ios-tuner.pandora.com", + "domain":"ios-tuner.pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mediaserver-cont-sv5-1-v4v6.pandora.com", + "domain":"mediaserver-cont-sv5-1-v4v6.pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mediaserver-cont-sv5-2-v4v6.pandora.com", + "domain":"mediaserver-cont-sv5-2-v4v6.pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mediaserver-cont-ch1-1-v4v6.pandora.com", + "domain":"mediaserver-cont-ch1-1-v4v6.pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mediaserver-cont-dc6-2-v4v6.pandora.com", + "domain":"mediaserver-cont-dc6-2-v4v6.pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mediaserver-cont-dc6-1-v4v6.pandora.com", + "domain":"mediaserver-cont-dc6-1-v4v6.pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pindorama.amazon.com", + "domain":"pindorama.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ssm1.internet.sony.tv", + "domain":"ssm1.internet.sony.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ssm.internet.sony.tv", + "domain":"ssm.internet.sony.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"portal.store.sonyentertainmentnetwork.com", + "domain":"portal.store.sonyentertainmentnetwork.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.erabu.sonymobile.com", + "domain":"api.erabu.sonymobile.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"content.erabu.sonymobile.com", + "domain":"content.erabu.sonymobile.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"bivl.np.ac.playstation.net", + "domain":"bivl.np.ac.playstation.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"kairos.dl.playstation.net", + "domain":"kairos.dl.playstation.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"kairos-ssl.dl.playstation.net", + "domain":"kairos-ssl.dl.playstation.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"store.playstation.com", + "domain":"store.playstation.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"call.me.sel.sony.com", + "domain":"call.me.sel.sony.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"static.internet.sony.tv", + "domain":"static.internet.sony.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"update.biv.sony.tv", + "domain":"update.biv.sony.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"blu-ray.update.sony.net", + "domain":"blu-ray.update.sony.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"reg.biv.sony.tv", + "domain":"reg.biv.sony.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"service.biv.sony.tv", + "domain":"service.biv.sony.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"applicast.ga.sony.net", + "domain":"applicast.ga.sony.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"atv-ps.amazon.com", + "domain":"atv-ps.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fals.atv-ps.amazon.com", + "domain":"fals.atv-ps.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"atv-ext.amazon.com", + "domain":"atv-ext.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fls-eu.amazon.com", + "domain":"fls-eu.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fls-eu.amazon.co.uk", + "domain":"fls-eu.amazon.co.uk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"atv-ps-eu.amazon.com", + "domain":"atv-ps-eu.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fls-eu.amazon.de", + "domain":"fls-eu.amazon.de", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"atv-eu.amazon.com", + "domain":"atv-eu.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fls-na.amazon.com", + "domain":"fls-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aiv-clients-apps.amazon.com", + "domain":"aiv-clients-apps.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"atv-ext-eu.amazon.com", + "domain":"atv-ext-eu.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.amazon.de", + "domain":"api.amazon.de", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.amazon.com", + "domain":"api.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fls-fe.amazon.co.jp", + "domain":"fls-fe.amazon.co.jp", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fls-fe.amazon.com", + "domain":"fls-fe.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"atv-ps-fe.amazon.com", + "domain":"atv-ps-fe.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"atv-ext-fe.amazon.com", + "domain":"atv-ext-fe.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.amazon.co.jp", + "domain":"api.amazon.co.jp", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.amazon.co.uk", + "domain":"api.amazon.co.uk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dcape-na.amazon.com", + "domain":"dcape-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"arcus-uswest.amazon.com", + "domain":"arcus-uswest.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"atv-ps-eu.amazon.co.uk", + "domain":"atv-ps-eu.amazon.co.uk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dp-gw-na.amazon.com", + "domain":"dp-gw-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.amazon.com.au", + "domain":"www.amazon.com.au", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"unagi-na.amazon.com", + "domain":"unagi-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.amazonalexa.com", + "domain":"api.amazonalexa.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"avs-alexa-1-na.amazon.com", + "domain":"avs-alexa-1-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"avs-alexa-2-na.amazon.com", + "domain":"avs-alexa-2-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"avs-alexa-3-na.amazon.com", + "domain":"avs-alexa-3-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"avs-alexa-4-na.amazon.com", + "domain":"avs-alexa-4-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"avs-alexa-5-na.amazon.com", + "domain":"avs-alexa-5-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"avs-alexa-6-na.amazon.com", + "domain":"avs-alexa-6-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"avs-alexa-7-na.amazon.com", + "domain":"avs-alexa-7-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"avs-alexa-8-na.amazon.com", + "domain":"avs-alexa-8-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"avs-alexa-9-na.amazon.com", + "domain":"avs-alexa-9-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"avs-alexa-10-na.amazon.com", + "domain":"avs-alexa-10-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"avs-alexa-11-na.amazon.com", + "domain":"avs-alexa-11-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"avs-alexa-12-na.amazon.com", + "domain":"avs-alexa-12-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"avs-alexa-13-na.amazon.com", + "domain":"avs-alexa-13-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"avs-alexa-14-na.amazon.com", + "domain":"avs-alexa-14-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"avs-alexa-15-na.amazon.com", + "domain":"avs-alexa-15-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"avs-alexa-16-na.amazon.com", + "domain":"avs-alexa-16-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"avs-alexa-17-na.amazon.com", + "domain":"avs-alexa-17-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"avs-alexa-18-na.amazon.com", + "domain":"avs-alexa-18-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"avs-alexa-19-na.amazon.com", + "domain":"avs-alexa-19-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"avs-alexa-20-na.amazon.com", + "domain":"avs-alexa-20-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ia.media-imdb.com", + "domain":"ia.media-imdb.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"imdbtv-backend-na.amazon.com", + "domain":"imdbtv-backend-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sessions.watchtower.imdbtv.amazon.dev", + "domain":"sessions.watchtower.imdbtv.amazon.dev", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.spotify.com", + "domain":"www.spotify.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"play.spotify.com", + "domain":"play.spotify.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.spotify.com", + "domain":"api.spotify.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api-partner.spotify.com", + "domain":"api-partner.spotify.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.iheart.com", + "domain":"www.iheart.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.slacker.com", + "domain":"www.slacker.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"gspe19-ssl.ls.apple.com", + "domain":"gspe19-ssl.ls.apple.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.config.watchabc.go.com", + "domain":"api.config.watchabc.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.contents.watchabc.go.com", + "domain":"api.contents.watchabc.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.abc.com", + "domain":"api.abc.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"radiko.jp", + "domain":"radiko.jp", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.crackle.com", + "domain":"www.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"omn.crackle.com", + "domain":"omn.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ios-api-us.crackle.com", + "domain":"ios-api-us.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ios-api.crackle.com", + "domain":"ios-api.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"android-api-us.crackle.com", + "domain":"android-api-us.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"xboxone-api-us.crackle.com", + "domain":"xboxone-api-us.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ps3-api-us.crackle.com", + "domain":"ps3-api-us.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"roku-api.crackle.com", + "domain":"roku-api.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"amazon-api-us.crackle.com", + "domain":"amazon-api-us.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.crackle.com", + "domain":"api.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m.crackle.com", + "domain":"m.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"content-xuse1.uplynk.com", + "domain":"content-xuse1.uplynk.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"appletv.crackle.com", + "domain":"appletv.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"appletv-api-us.crackle.com", + "domain":"appletv-api-us.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"androidtv-api-us.crackle.com", + "domain":"androidtv-api-us.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"geo.aspen.turner.com", + "domain":"geo.aspen.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"token.aspen.vgtf.net", + "domain":"token.aspen.vgtf.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"i.cdn.tbs.com", + "domain":"i.cdn.tbs.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"geo.ngtv.io", + "domain":"geo.ngtv.io", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"token.ngtv.io", + "domain":"token.ngtv.io", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"highlander-prod.tbsdlabs.com", + "domain":"highlander-prod.tbsdlabs.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"blackout.ngtv.io", + "domain":"blackout.ngtv.io", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aspen.ngtv.io", + "domain":"aspen.ngtv.io", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"atlas.ngtv.io", + "domain":"atlas.ngtv.io", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"highlander.tbs.com", + "domain":"highlander.tbs.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sbp.ngtv.io", + "domain":"sbp.ngtv.io", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"i.hbo.lv3.hbogo.com", + "domain":"i.hbo.lv3.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hls.hbo.lv3.hbogo.com", + "domain":"hls.hbo.lv3.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"atv.api.lv3.cdn.hbo.com", + "domain":"atv.api.lv3.cdn.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"artist.api.lv3.cdn.hbo.com", + "domain":"artist.api.lv3.cdn.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"artist.api.lv3.cdn.hbo.com.c.footprint.net", + "domain":"artist.api.lv3.cdn.hbo.com.c.footprint.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"comet.api.hbo.com", + "domain":"comet.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"login.api.hbo.com", + "domain":"login.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"telegraph.api.hbo.com", + "domain":"telegraph.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"markers.api.hbo.com", + "domain":"markers.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.hbonow.com", + "domain":"www.hbonow.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"play.hbonow.com", + "domain":"play.hbonow.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"prod-v2.reporting.hbogo.com", + "domain":"prod-v2.reporting.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"commerce-experience.api.hbo.com", + "domain":"commerce-experience.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"activate.hbomax.com", + "domain":"activate.hbomax.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"commerce.api.hbo.com", + "domain":"commerce.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.hbomax.com", + "domain":"www.hbomax.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sessions.api.hbo.com", + "domain":"sessions.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oauth.api.hbo.com", + "domain":"oauth.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oauth-us.api.hbo.com", + "domain":"oauth-us.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"manifests.api.hbo.com", + "domain":"manifests.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"commerce-latam.api.hbo.com", + "domain":"commerce-latam.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"gateway-latam.api.hbo.com", + "domain":"gateway-latam.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sessions-latam.api.hbo.com", + "domain":"sessions-latam.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oauth-latam.api.hbo.com", + "domain":"oauth-latam.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"comet-latam.api.hbo.com", + "domain":"comet-latam.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"comet-emea.api.hbo.com", + "domain":"comet-emea.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"manifests.v2.api.hbo.com", + "domain":"manifests.v2.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"gateway-emea.api.hbo.com", + "domain":"gateway-emea.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"xbox.mtvnservices.com", + "domain":"xbox.mtvnservices.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"apimtv-a.akamaihd.net", + "domain":"apimtv-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mediaresolver-a.akamaihd.net", + "domain":"mediaresolver-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"musicjsonpath-a.akamaihd.net", + "domain":"musicjsonpath-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"auth.mtvnservices.com", + "domain":"auth.mtvnservices.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mb.mtvnservices.com", + "domain":"mb.mtvnservices.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ssc.cc.com", + "domain":"ssc.cc.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"apicache.vudu.com", + "domain":"apicache.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.vudu.com", + "domain":"api.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup.vudu.com", + "domain":"startup.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"my.vudu.com", + "domain":"my.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cs1.vudu.com", + "domain":"cs1.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cs2.vudu.com", + "domain":"cs2.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cs3.vudu.com", + "domain":"cs3.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cs4.vudu.com", + "domain":"cs4.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cs5.vudu.com", + "domain":"cs5.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cs6.vudu.com", + "domain":"cs6.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vudu.d1.sc.omtrdc.net", + "domain":"vudu.d1.sc.omtrdc.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup.vvond.net", + "domain":"startup.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-aus.vvond.net", + "domain":"startup-aus.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-nzl.vvond.net", + "domain":"startup-nzl.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-abw.vvond.net", + "domain":"startup-abw.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-afg.vvond.net", + "domain":"startup-afg.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ago.vvond.net", + "domain":"startup-ago.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-aia.vvond.net", + "domain":"startup-aia.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ala.vvond.net", + "domain":"startup-ala.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-alb.vvond.net", + "domain":"startup-alb.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-and.vvond.net", + "domain":"startup-and.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-are.vvond.net", + "domain":"startup-are.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-arg.vvond.net", + "domain":"startup-arg.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-arm.vvond.net", + "domain":"startup-arm.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-asm.vvond.net", + "domain":"startup-asm.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ata.vvond.net", + "domain":"startup-ata.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-atf.vvond.net", + "domain":"startup-atf.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-atg.vvond.net", + "domain":"startup-atg.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-aut.vvond.net", + "domain":"startup-aut.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-aze.vvond.net", + "domain":"startup-aze.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-bdi.vvond.net", + "domain":"startup-bdi.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-bel.vvond.net", + "domain":"startup-bel.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ben.vvond.net", + "domain":"startup-ben.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-bes.vvond.net", + "domain":"startup-bes.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-bfa.vvond.net", + "domain":"startup-bfa.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-bgd.vvond.net", + "domain":"startup-bgd.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-bgr.vvond.net", + "domain":"startup-bgr.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-bhr.vvond.net", + "domain":"startup-bhr.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-bhs.vvond.net", + "domain":"startup-bhs.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-bih.vvond.net", + "domain":"startup-bih.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-blm.vvond.net", + "domain":"startup-blm.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-blr.vvond.net", + "domain":"startup-blr.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-blz.vvond.net", + "domain":"startup-blz.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-bmu.vvond.net", + "domain":"startup-bmu.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-bol.vvond.net", + "domain":"startup-bol.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-bra.vvond.net", + "domain":"startup-bra.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-brb.vvond.net", + "domain":"startup-brb.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-brn.vvond.net", + "domain":"startup-brn.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-btn.vvond.net", + "domain":"startup-btn.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-bvt.vvond.net", + "domain":"startup-bvt.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-bwa.vvond.net", + "domain":"startup-bwa.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-caf.vvond.net", + "domain":"startup-caf.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-can.vvond.net", + "domain":"startup-can.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-cck.vvond.net", + "domain":"startup-cck.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-che.vvond.net", + "domain":"startup-che.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-chl.vvond.net", + "domain":"startup-chl.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-chn.vvond.net", + "domain":"startup-chn.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-civ.vvond.net", + "domain":"startup-civ.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-cmr.vvond.net", + "domain":"startup-cmr.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-cod.vvond.net", + "domain":"startup-cod.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-cog.vvond.net", + "domain":"startup-cog.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-cok.vvond.net", + "domain":"startup-cok.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-col.vvond.net", + "domain":"startup-col.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-com.vvond.net", + "domain":"startup-com.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-cpv.vvond.net", + "domain":"startup-cpv.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-cri.vvond.net", + "domain":"startup-cri.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-cub.vvond.net", + "domain":"startup-cub.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-cuw.vvond.net", + "domain":"startup-cuw.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-cxr.vvond.net", + "domain":"startup-cxr.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-cym.vvond.net", + "domain":"startup-cym.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-cyp.vvond.net", + "domain":"startup-cyp.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-cze.vvond.net", + "domain":"startup-cze.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-deu.vvond.net", + "domain":"startup-deu.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-dji.vvond.net", + "domain":"startup-dji.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-dma.vvond.net", + "domain":"startup-dma.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-dnk.vvond.net", + "domain":"startup-dnk.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-dom.vvond.net", + "domain":"startup-dom.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-dza.vvond.net", + "domain":"startup-dza.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ecu.vvond.net", + "domain":"startup-ecu.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-egy.vvond.net", + "domain":"startup-egy.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-eri.vvond.net", + "domain":"startup-eri.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-esh.vvond.net", + "domain":"startup-esh.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-esp.vvond.net", + "domain":"startup-esp.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-est.vvond.net", + "domain":"startup-est.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-eth.vvond.net", + "domain":"startup-eth.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-fin.vvond.net", + "domain":"startup-fin.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-fji.vvond.net", + "domain":"startup-fji.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-flk.vvond.net", + "domain":"startup-flk.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-fra.vvond.net", + "domain":"startup-fra.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-fro.vvond.net", + "domain":"startup-fro.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-fsm.vvond.net", + "domain":"startup-fsm.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-gab.vvond.net", + "domain":"startup-gab.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-gbr.vvond.net", + "domain":"startup-gbr.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-geo.vvond.net", + "domain":"startup-geo.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ggy.vvond.net", + "domain":"startup-ggy.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-gha.vvond.net", + "domain":"startup-gha.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-gib.vvond.net", + "domain":"startup-gib.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-gin.vvond.net", + "domain":"startup-gin.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-glp.vvond.net", + "domain":"startup-glp.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-gmb.vvond.net", + "domain":"startup-gmb.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-gnb.vvond.net", + "domain":"startup-gnb.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-gnq.vvond.net", + "domain":"startup-gnq.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-grc.vvond.net", + "domain":"startup-grc.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-grd.vvond.net", + "domain":"startup-grd.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-grl.vvond.net", + "domain":"startup-grl.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-gtm.vvond.net", + "domain":"startup-gtm.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-guf.vvond.net", + "domain":"startup-guf.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-gum.vvond.net", + "domain":"startup-gum.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-guy.vvond.net", + "domain":"startup-guy.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-hkg.vvond.net", + "domain":"startup-hkg.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-hmd.vvond.net", + "domain":"startup-hmd.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-hnd.vvond.net", + "domain":"startup-hnd.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-hrv.vvond.net", + "domain":"startup-hrv.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-hti.vvond.net", + "domain":"startup-hti.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-hun.vvond.net", + "domain":"startup-hun.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-idn.vvond.net", + "domain":"startup-idn.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-imn.vvond.net", + "domain":"startup-imn.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ind.vvond.net", + "domain":"startup-ind.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-iot.vvond.net", + "domain":"startup-iot.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-irl.vvond.net", + "domain":"startup-irl.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-irn.vvond.net", + "domain":"startup-irn.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-irq.vvond.net", + "domain":"startup-irq.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-isl.vvond.net", + "domain":"startup-isl.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-isr.vvond.net", + "domain":"startup-isr.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ita.vvond.net", + "domain":"startup-ita.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-jam.vvond.net", + "domain":"startup-jam.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-jey.vvond.net", + "domain":"startup-jey.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-jor.vvond.net", + "domain":"startup-jor.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-jpn.vvond.net", + "domain":"startup-jpn.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-kaz.vvond.net", + "domain":"startup-kaz.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ken.vvond.net", + "domain":"startup-ken.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-kgz.vvond.net", + "domain":"startup-kgz.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-khm.vvond.net", + "domain":"startup-khm.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-kir.vvond.net", + "domain":"startup-kir.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-kna.vvond.net", + "domain":"startup-kna.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-kor.vvond.net", + "domain":"startup-kor.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-kwt.vvond.net", + "domain":"startup-kwt.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-lao.vvond.net", + "domain":"startup-lao.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-lbn.vvond.net", + "domain":"startup-lbn.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-lbr.vvond.net", + "domain":"startup-lbr.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-lby.vvond.net", + "domain":"startup-lby.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-lca.vvond.net", + "domain":"startup-lca.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-lie.vvond.net", + "domain":"startup-lie.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-lka.vvond.net", + "domain":"startup-lka.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-lso.vvond.net", + "domain":"startup-lso.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ltu.vvond.net", + "domain":"startup-ltu.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-lux.vvond.net", + "domain":"startup-lux.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-lva.vvond.net", + "domain":"startup-lva.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mac.vvond.net", + "domain":"startup-mac.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-maf.vvond.net", + "domain":"startup-maf.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mar.vvond.net", + "domain":"startup-mar.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mco.vvond.net", + "domain":"startup-mco.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mda.vvond.net", + "domain":"startup-mda.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mdg.vvond.net", + "domain":"startup-mdg.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mdv.vvond.net", + "domain":"startup-mdv.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mex.vvond.net", + "domain":"startup-mex.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mhl.vvond.net", + "domain":"startup-mhl.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mkd.vvond.net", + "domain":"startup-mkd.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mli.vvond.net", + "domain":"startup-mli.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mlt.vvond.net", + "domain":"startup-mlt.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mmr.vvond.net", + "domain":"startup-mmr.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mne.vvond.net", + "domain":"startup-mne.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mng.vvond.net", + "domain":"startup-mng.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mnp.vvond.net", + "domain":"startup-mnp.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-moz.vvond.net", + "domain":"startup-moz.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mrt.vvond.net", + "domain":"startup-mrt.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mtq.vvond.net", + "domain":"startup-mtq.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mus.vvond.net", + "domain":"startup-mus.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mwi.vvond.net", + "domain":"startup-mwi.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mys.vvond.net", + "domain":"startup-mys.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-myt.vvond.net", + "domain":"startup-myt.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-nam.vvond.net", + "domain":"startup-nam.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ncl.vvond.net", + "domain":"startup-ncl.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ner.vvond.net", + "domain":"startup-ner.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-nfk.vvond.net", + "domain":"startup-nfk.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-nga.vvond.net", + "domain":"startup-nga.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-nic.vvond.net", + "domain":"startup-nic.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-niu.vvond.net", + "domain":"startup-niu.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-nld.vvond.net", + "domain":"startup-nld.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-nor.vvond.net", + "domain":"startup-nor.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-npl.vvond.net", + "domain":"startup-npl.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-nru.vvond.net", + "domain":"startup-nru.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-omn.vvond.net", + "domain":"startup-omn.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-pak.vvond.net", + "domain":"startup-pak.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-pan.vvond.net", + "domain":"startup-pan.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-pcn.vvond.net", + "domain":"startup-pcn.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-per.vvond.net", + "domain":"startup-per.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-phl.vvond.net", + "domain":"startup-phl.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-plw.vvond.net", + "domain":"startup-plw.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-png.vvond.net", + "domain":"startup-png.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-pol.vvond.net", + "domain":"startup-pol.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-pri.vvond.net", + "domain":"startup-pri.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-prk.vvond.net", + "domain":"startup-prk.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-prt.vvond.net", + "domain":"startup-prt.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-pry.vvond.net", + "domain":"startup-pry.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-pse.vvond.net", + "domain":"startup-pse.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-pyf.vvond.net", + "domain":"startup-pyf.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-qat.vvond.net", + "domain":"startup-qat.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-reu.vvond.net", + "domain":"startup-reu.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-rou.vvond.net", + "domain":"startup-rou.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-rus.vvond.net", + "domain":"startup-rus.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-rwa.vvond.net", + "domain":"startup-rwa.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-sau.vvond.net", + "domain":"startup-sau.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-sdn.vvond.net", + "domain":"startup-sdn.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-sen.vvond.net", + "domain":"startup-sen.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-sgp.vvond.net", + "domain":"startup-sgp.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-sgs.vvond.net", + "domain":"startup-sgs.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-shn.vvond.net", + "domain":"startup-shn.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-sjm.vvond.net", + "domain":"startup-sjm.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-slb.vvond.net", + "domain":"startup-slb.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-sle.vvond.net", + "domain":"startup-sle.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-slv.vvond.net", + "domain":"startup-slv.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-smr.vvond.net", + "domain":"startup-smr.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-som.vvond.net", + "domain":"startup-som.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-spm.vvond.net", + "domain":"startup-spm.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-srb.vvond.net", + "domain":"startup-srb.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ssd.vvond.net", + "domain":"startup-ssd.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-stp.vvond.net", + "domain":"startup-stp.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-sur.vvond.net", + "domain":"startup-sur.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-svk.vvond.net", + "domain":"startup-svk.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-svn.vvond.net", + "domain":"startup-svn.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-swe.vvond.net", + "domain":"startup-swe.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-swz.vvond.net", + "domain":"startup-swz.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-sxm.vvond.net", + "domain":"startup-sxm.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-syc.vvond.net", + "domain":"startup-syc.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-syr.vvond.net", + "domain":"startup-syr.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-tca.vvond.net", + "domain":"startup-tca.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-tcd.vvond.net", + "domain":"startup-tcd.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-tgo.vvond.net", + "domain":"startup-tgo.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-tha.vvond.net", + "domain":"startup-tha.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-tjk.vvond.net", + "domain":"startup-tjk.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-tkl.vvond.net", + "domain":"startup-tkl.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-tkm.vvond.net", + "domain":"startup-tkm.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-tls.vvond.net", + "domain":"startup-tls.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ton.vvond.net", + "domain":"startup-ton.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-tto.vvond.net", + "domain":"startup-tto.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-tun.vvond.net", + "domain":"startup-tun.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-tur.vvond.net", + "domain":"startup-tur.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-tuv.vvond.net", + "domain":"startup-tuv.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-twn.vvond.net", + "domain":"startup-twn.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-tza.vvond.net", + "domain":"startup-tza.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-uga.vvond.net", + "domain":"startup-uga.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ukr.vvond.net", + "domain":"startup-ukr.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-umi.vvond.net", + "domain":"startup-umi.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ury.vvond.net", + "domain":"startup-ury.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-usa.vvond.net", + "domain":"startup-usa.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-uzb.vvond.net", + "domain":"startup-uzb.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-vat.vvond.net", + "domain":"startup-vat.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-vct.vvond.net", + "domain":"startup-vct.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ven.vvond.net", + "domain":"startup-ven.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-vgb.vvond.net", + "domain":"startup-vgb.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-vir.vvond.net", + "domain":"startup-vir.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-vnm.vvond.net", + "domain":"startup-vnm.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-vut.vvond.net", + "domain":"startup-vut.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-wlf.vvond.net", + "domain":"startup-wlf.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-wsm.vvond.net", + "domain":"startup-wsm.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-yem.vvond.net", + "domain":"startup-yem.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-zaf.vvond.net", + "domain":"startup-zaf.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-zmb.vvond.net", + "domain":"startup-zmb.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-zwe.vvond.net", + "domain":"startup-zwe.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vudu-api.hs.llnwd.net", + "domain":"vudu-api.hs.llnwd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-auto.vvond.net", + "domain":"startup-auto.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vudu-2.vo.llnwd.net", + "domain":"vudu-2.vo.llnwd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"images2.vudu.com", + "domain":"images2.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"images.vudu.com", + "domain":"images.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cs7.vudu.com", + "domain":"cs7.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cs8.vudu.com", + "domain":"cs8.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cs9.vudu.com", + "domain":"cs9.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cs11.vudu.com", + "domain":"cs11.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cs12.vudu.com", + "domain":"cs12.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cs13.vudu.com", + "domain":"cs13.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cs14.vudu.com", + "domain":"cs14.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cs10.vudu.com", + "domain":"cs10.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"websocket-cs.vudu.com", + "domain":"websocket-cs.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-msr.vvond.net", + "domain":"startup-msr.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"httppolling-cs.vudu.com", + "domain":"httppolling-cs.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ws.media.net.wwe.com", + "domain":"ws.media.net.wwe.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"secure.net.wwe.com", + "domain":"secure.net.wwe.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.wwe.com", + "domain":"www.wwe.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api-app.espn.com", + "domain":"api-app.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.espn.com", + "domain":"api.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"broadband.espn.com", + "domain":"broadband.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.espn.go.com", + "domain":"www.espn.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"espn.go.com", + "domain":"espn.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.espn.com", + "domain":"www.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"affiliate.api.espn.com", + "domain":"affiliate.api.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fan.api.espn.com", + "domain":"fan.api.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"w88.espn.com", + "domain":"w88.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"artwork.api.espn.com", + "domain":"artwork.api.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tredir.espn.com", + "domain":"tredir.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"watchproductapi.prod.geo.espn.com", + "domain":"watchproductapi.prod.geo.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"watch.product.api.espn.com", + "domain":"watch.product.api.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"secure.espncdn.com", + "domain":"secure.espncdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"plus.espn.com", + "domain":"plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"secure.web.plus.espn.com", + "domain":"secure.web.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"search-api.svcs.plus.espn.com", + "domain":"search-api.svcs.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"edge.bamgrid.com", + "domain":"edge.bamgrid.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn.unid.go.com", + "domain":"cdn.unid.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sportscenter.fan.api.espn.com", + "domain":"sportscenter.fan.api.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sportscenter.api.espn.com", + "domain":"sportscenter.api.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"appconfigs.web.plus.espn.com", + "domain":"appconfigs.web.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"playback.svcs.plus.espn.com", + "domain":"playback.svcs.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"a.espncdn.com", + "domain":"a.espncdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"bam-sdk-configs.bamgrid.com", + "domain":"bam-sdk-configs.bamgrid.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"bam.nr-data.net", + "domain":"bam.nr-data.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"watch.api.espn.com", + "domain":"watch.api.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"watch.auth.api.espn.go.com", + "domain":"watch.auth.api.espn.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"site.web.api.espn.com", + "domain":"site.web.api.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"secure.espn.com", + "domain":"secure.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"r.espn.com", + "domain":"r.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s.secure.espncdn.com", + "domain":"s.secure.espncdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"onefeed.fan.api.espn.com", + "domain":"onefeed.fan.api.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"watch.auth.api.espn.com", + "domain":"watch.auth.api.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"watch.graph.api.espn.com", + "domain":"watch.graph.api.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sw88.go.com", + "domain":"sw88.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sw88.espn.com", + "domain":"sw88.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.artwork.espncdn.com", + "domain":"www.artwork.espncdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nhlinteractivecybere.tt.omtrdc.net", + "domain":"nhlinteractivecybere.tt.omtrdc.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.usopen.org", + "domain":"www.usopen.org", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"usgageo.edgesuite.net", + "domain":"usgageo.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"usopen2011-f.akamaihd.net", + "domain":"usopen2011-f.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.apptentive.com", + "domain":"api.apptentive.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"video.pbs.org", + "domain":"video.pbs.org", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.pbs.org", + "domain":"www.pbs.org", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"urs.pbs.org", + "domain":"urs.pbs.org", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"localization.services.pbs.org", + "domain":"localization.services.pbs.org", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"player.pbs.org", + "domain":"player.pbs.org", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.spiritclips.com", + "domain":"api.spiritclips.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"player.ooyala.com", + "domain":"player.ooyala.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"d0.tubitv.com", + "domain":"d0.tubitv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"amolio.fubo.tv", + "domain":"amolio.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.viki.io", + "domain":"api.viki.io", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"collector.viki.io", + "domain":"collector.viki.io", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.viki.com", + "domain":"www.viki.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.willow.tv", + "domain":"www.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"appletv.willow.tv", + "domain":"appletv.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mdallas1.willow.tv", + "domain":"mdallas1.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"eventlog.willow.tv", + "domain":"eventlog.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.knowledge.ca", + "domain":"www.knowledge.ca", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"esi.ctv.ca", + "domain":"esi.ctv.ca", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"capi.9c9media.com", + "domain":"capi.9c9media.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"new.livestream.com", + "domain":"new.livestream.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.new.livestream.com", + "domain":"api.new.livestream.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"livestream.com", + "domain":"livestream.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn.livestream.com", + "domain":"cdn.livestream.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"player-api.new.livestream.com", + "domain":"player-api.new.livestream.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"access.video.qq.com", + "domain":"access.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cache.video.iqiyi.com", + "domain":"cache.video.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t7z.cupid.iqiyi.com", + "domain":"t7z.cupid.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"data.video.iqiyi.com", + "domain":"data.video.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"control-i.iqiyi.com", + "domain":"control-i.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pcw-api.iqiyi.com", + "domain":"pcw-api.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"qiqu.iqiyi.com", + "domain":"qiqu.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"msg.qy.net", + "domain":"msg.qy.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.channel4.com", + "domain":"api.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.channel4.com", + "domain":"www.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"amazonfire-p06.channel4.com", + "domain":"amazonfire-p06.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ios.channel4.com", + "domain":"ios.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"goan.sky.com", + "domain":"goan.sky.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.sky.com", + "domain":"www.sky.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"goio.sky.com", + "domain":"goio.sky.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sgw.skyanywhere.com", + "domain":"sgw.skyanywhere.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"uapi.staging.simplestream.com", + "domain":"uapi.staging.simplestream.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"epg.cdn.vision.bt.com", + "domain":"epg.cdn.vision.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t.appsflyer.com", + "domain":"t.appsflyer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"eu-west-1-api.svcs.eurosportplayer.com", + "domain":"eu-west-1-api.svcs.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"global-api.svcs.eurosportplayer.com", + "domain":"global-api.svcs.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"secure.web.eurosportplayer.com", + "domain":"secure.web.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"frontend-gateway.svcs.eurosportplayer.com", + "domain":"frontend-gateway.svcs.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"subscription.svcs.eurosportplayer.com", + "domain":"subscription.svcs.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"proxyservices.svcs.eurosportplayer.com", + "domain":"proxyservices.svcs.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"eu3-prod-direct.eurosportplayer.com", + "domain":"eu3-prod-direct.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.eurosport.com", + "domain":"www.eurosport.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"auth.eurosport.co.uk", + "domain":"auth.eurosport.co.uk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"admin.brightcove.com", + "domain":"admin.brightcove.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c.brightcove.com", + "domain":"c.brightcove.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"geo.wilmaa.com", + "domain":"geo.wilmaa.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"teleboy.customers.cdn.iptv.ch", + "domain":"teleboy.customers.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"wilmaa-jitp.customers.cdn.iptv.ch", + "domain":"wilmaa-jitp.customers.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"streams.wilmaa.com", + "domain":"streams.wilmaa.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t.teleboy.ch", + "domain":"t.teleboy.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.wilmaa.com", + "domain":"api.wilmaa.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"xml.fullepg.wilmaa.com", + "domain":"xml.fullepg.wilmaa.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"srg.live.ott.irdeto.com", + "domain":"srg.live.ott.irdeto.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"prod-player.tf1.fr", + "domain":"prod-player.tf1.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mediainfo.tf1.fr", + "domain":"mediainfo.tf1.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tv.nrk.no", + "domain":"tv.nrk.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvapi.nrk.no", + "domain":"tvapi.nrk.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"atv.nrk.no", + "domain":"atv.nrk.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"psapi.nrk.no", + "domain":"psapi.nrk.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrk-live-no.telenorcdn.net", + "domain":"nrk-live-no.telenorcdn.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fargerik-psapi.nrk.no", + "domain":"fargerik-psapi.nrk.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"isl.dr-massive.com", + "domain":"isl.dr-massive.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"static.dr-massive.com", + "domain":"static.dr-massive.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"deliver.oztam.com.au", + "domain":"deliver.oztam.com.au", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sportzsdk.hotstar.com", + "domain":"sportzsdk.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"geoip.hotstar.com", + "domain":"geoip.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hses1.akamaized.net", + "domain":"hses1.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hses2.akamaized.net", + "domain":"hses2.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zattoo.com", + "domain":"zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zapi.zattoo.com", + "domain":"zapi.zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zapi0001.zattoo.com", + "domain":"zapi0001.zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zapi0215.zattoo.com", + "domain":"zapi0215.zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zapi0088.zattoo.com", + "domain":"zapi0088.zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zapi0016.zattoo.com", + "domain":"zapi0016.zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zapi0106.zattoo.com", + "domain":"zapi0106.zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zapi0087.zattoo.com", + "domain":"zapi0087.zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live07.hotstar.com", + "domain":"live07.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live01.hotstar.com", + "domain":"live01.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live02.hotstar.com", + "domain":"live02.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live03.hotstar.com", + "domain":"live03.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live04.hotstar.com", + "domain":"live04.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live05.hotstar.com", + "domain":"live05.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live06.hotstar.com", + "domain":"live06.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live08.hotstar.com", + "domain":"live08.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live09.hotstar.com", + "domain":"live09.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live10.hotstar.com", + "domain":"live10.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hses4.akamaized.net", + "domain":"hses4.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hses3.akamaized.net", + "domain":"hses3.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hses4.hotstar.com", + "domain":"hses4.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hses3.hotstar.com", + "domain":"hses3.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hses2.hotstar.com", + "domain":"hses2.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hses1.hotstar.com", + "domain":"hses1.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hses5.hotstar.com", + "domain":"hses5.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"owner.roku.com", + "domain":"owner.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"channels.roku.com", + "domain":"channels.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"search.roku.com", + "domain":"search.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.roku.com", + "domain":"www.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"channelstore.roku.com", + "domain":"channelstore.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"plugins.roku.com", + "domain":"plugins.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"plugins.qa.roku.com", + "domain":"plugins.qa.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"amoeba.web.roku.com", + "domain":"amoeba.web.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"austin.sw.roku.com", + "domain":"austin.sw.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"austin.sb.roku.com", + "domain":"austin.sb.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"captive.roku.com", + "domain":"captive.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"configsvc.cs.roku.com", + "domain":"configsvc.cs.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"edge.roku-vod.top.comcast.net", + "domain":"edge.roku-vod.top.comcast.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"my.roku.com", + "domain":"my.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"roku.globaltivi.com", + "domain":"roku.globaltivi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"therokuchannel.roku.com", + "domain":"therokuchannel.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vidmark-mdc.akamaized.net", + "domain":"vidmark-mdc.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"track.sr.roku.com", + "domain":"track.sr.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"content.sr.roku.com", + "domain":"content.sr.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c-ls.mgo-images.com", + "domain":"c-ls.mgo-images.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c-catalog.mgo-images.com", + "domain":"c-catalog.mgo-images.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ls.cti.roku.com", + "domain":"ls.cti.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"lat-services.api.data.roku.com", + "domain":"lat-services.api.data.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"scribe.logs.roku.com", + "domain":"scribe.logs.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"rights-manager.sr.roku.com", + "domain":"rights-manager.sr.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"gilbert.sb.roku.com", + "domain":"gilbert.sb.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ravm.tv", + "domain":"ravm.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"os.fandango.com", + "domain":"os.fandango.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"authentication.mgo.com", + "domain":"authentication.mgo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"apiweb.roku.com", + "domain":"apiweb.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vod.delivery.roku.com", + "domain":"vod.delivery.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"prod.mobile.roku.com", + "domain":"prod.mobile.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"prd-geolookup.mgo.com", + "domain":"prd-geolookup.mgo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"amoeba-plus.web.roku.com", + "domain":"amoeba-plus.web.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.mgo.com", + "domain":"www.mgo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"servicesfacade.mgo.com", + "domain":"servicesfacade.mgo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"prd-smoothstreaming.mgo.com", + "domain":"prd-smoothstreaming.mgo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"devicemedia.mgo.com", + "domain":"devicemedia.mgo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.wdtvlive.com", + "domain":"www.wdtvlive.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"res.boxee.tv", + "domain":"res.boxee.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"app.boxee.tv", + "domain":"app.boxee.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dir.boxee.tv", + "domain":"dir.boxee.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"0.ping.boxee.tv", + "domain":"0.ping.boxee.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"1.ping.boxee.tv", + "domain":"1.ping.boxee.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"2.ping.boxee.tv", + "domain":"2.ping.boxee.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"3.ping.boxee.tv", + "domain":"3.ping.boxee.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"4.ping.boxee.tv", + "domain":"4.ping.boxee.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"5.ping.boxee.tv", + "domain":"5.ping.boxee.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"6.ping.boxee.tv", + "domain":"6.ping.boxee.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"7.ping.boxee.tv", + "domain":"7.ping.boxee.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"8.ping.boxee.tv", + "domain":"8.ping.boxee.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"9.ping.boxee.tv", + "domain":"9.ping.boxee.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.logitech.com", + "domain":"www.logitech.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mysqueezebox.com", + "domain":"mysqueezebox.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.mysqueezebox.com", + "domain":"www.mysqueezebox.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mediaserver-sv5-rt-1.pandora.com", + "domain":"mediaserver-sv5-rt-1.pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mediaserver-sv5-rt-1-v4v6.pandora.com", + "domain":"mediaserver-sv5-rt-1-v4v6.pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ce.pandora.com", + "domain":"ce.pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mediaserver-cont-ch1-2-v4v6.pandora.com", + "domain":"mediaserver-cont-ch1-2-v4v6.pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mediaserver-cont-sv5-3-v4v6.pandora.com", + "domain":"mediaserver-cont-sv5-3-v4v6.pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"internal-tuner.pandora.com", + "domain":"internal-tuner.pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cont-1.p-cdn.com", + "domain":"cont-1.p-cdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cont-2.p-cdn.com", + "domain":"cont-2.p-cdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"avs-alexa-na.amazon.com", + "domain":"avs-alexa-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"android-tuner.pandora.com", + "domain":"android-tuner.pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pandora.com", + "domain":"pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pandoramedia-mkt-prod1-t.campaign.adobe.com", + "domain":"pandoramedia-mkt-prod1-t.campaign.adobe.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mediaserver-cont-usc-mp1-1-v4v6.pandora.com", + "domain":"mediaserver-cont-usc-mp1-1-v4v6.pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"web-cdn.pandora.com", + "domain":"web-cdn.pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s.hoplon.pandora.com", + "domain":"s.hoplon.pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"metadata.erabu.sony.tv", + "domain":"metadata.erabu.sony.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.erabu.sony.tv", + "domain":"api.erabu.sony.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.sony.net", + "domain":"www.sony.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.amazon.com", + "domain":"www.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.amazon.de", + "domain":"www.amazon.de", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.amazon.co.uk", + "domain":"www.amazon.co.uk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.amazon.co.jp", + "domain":"www.amazon.co.jp", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"na.api.amazonvideo.com", + "domain":"na.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"eu.api.amazonvideo.com", + "domain":"eu.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"andr-785f3ec7eb-cbc62794911ff31b-a93c5fcf2ef7a8b7c6-950312.na.api.amazonvideo.com", + "domain":"andr-785f3ec7eb-cbc62794911ff31b-a93c5fcf2ef7a8b7c6-950312.na.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"andr-785f3ec7eb-cbc62794911ff31b-a93c5fcf2ef7a8b7c6-950312.fe.api.amazonvideo.com", + "domain":"andr-785f3ec7eb-cbc62794911ff31b-a93c5fcf2ef7a8b7c6-950312.fe.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.amazon.in", + "domain":"www.amazon.in", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"primevideo.com", + "domain":"primevideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.primevideo.com", + "domain":"www.primevideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"atv-ps-eu.amazon.de", + "domain":"atv-ps-eu.amazon.de", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"prime.amazon.com", + "domain":"prime.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"andr-785f3ec7eb-cbc62794911ff31b-a93c5fcf2ef7a8b7c6-970805.eu.api.amazonvideo.com", + "domain":"andr-785f3ec7eb-cbc62794911ff31b-a93c5fcf2ef7a8b7c6-970805.eu.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"xbox-one-du-10-0-15063-3054-3-3-34-6.api.amazonvideo.com", + "domain":"xbox-one-du-10-0-15063-3054-3-3-34-6.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aviary.amazon.de", + "domain":"aviary.amazon.de", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"prod.amazoncrl.com", + "domain":"prod.amazoncrl.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"atv-ps-fe.amazon.co.jp", + "domain":"atv-ps-fe.amazon.co.jp", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mas-sdk-eu.amazon.com", + "domain":"mas-sdk-eu.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aax-eu.amazon-adsystem.com", + "domain":"aax-eu.amazon-adsystem.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.us-east-1.aiv-delivery.net", + "domain":"api.us-east-1.aiv-delivery.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ign-a2ehf10z0yhpek-1d0d2d6-1d0d2d6.api.amazonvideo.com", + "domain":"ign-a2ehf10z0yhpek-1d0d2d6-1d0d2d6.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ags-ext.amazon.com", + "domain":"ags-ext.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"na.account.amazon.com", + "domain":"na.account.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"andr-22-AFTB-600612710.api.amazonvideo.com", + "domain":"andr-22-AFTB-600612710.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mas-ssr.amazon.com", + "domain":"mas-ssr.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aviary.amazon.com", + "domain":"aviary.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ktpx.amazon.com", + "domain":"ktpx.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mas-ext.amazon.com", + "domain":"mas-ext.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dp-discovery-na-ext.amazon.com", + "domain":"dp-discovery-na-ext.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"msh.amazon.com", + "domain":"msh.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pitangui.amazon.com", + "domain":"pitangui.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"primenow.amazon.com", + "domain":"primenow.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"services.amazon.com", + "domain":"services.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"kdp.amazon.com", + "domain":"kdp.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"coin.amazonpay.com", + "domain":"coin.amazonpay.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"unagi-eu.amazon.com", + "domain":"unagi-eu.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"atv-ps-fe.primevideo.com", + "domain":"atv-ps-fe.primevideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"amazonmmdeu-ic-7bf39f00-08f65a-pr.s.loris.llnwd.net", + "domain":"amazonmmdeu-ic-7bf39f00-08f65a-pr.s.loris.llnwd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"amazonmmd-eu-pr.hs.llnwd.net", + "domain":"amazonmmd-eu-pr.hs.llnwd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"det-ta-g7g.amazon.com", + "domain":"det-ta-g7g.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pinpoint.us-east-1.amazonaws.com", + "domain":"pinpoint.us-east-1.amazonaws.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"app.primevideo.com", + "domain":"app.primevideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fls-eu.amazon.in", + "domain":"fls-eu.amazon.in", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"eu.api.amazonvideo.in", + "domain":"eu.api.amazonvideo.in", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"frank-comp-na.amazon.com", + "domain":"frank-comp-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ftvr-na.amazon.com", + "domain":"ftvr-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"appstore-tv-prod-na.amazon.com", + "domain":"appstore-tv-prod-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"primevideo-dp-na.imdb.com", + "domain":"primevideo-dp-na.imdb.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.imdb.com", + "domain":"www.imdb.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m.imdb.com", + "domain":"m.imdb.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m.media-amazon.com", + "domain":"m.media-amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.us-west-2.aiv-delivery.net", + "domain":"api.us-west-2.aiv-delivery.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"andr.na.ec.api.amazonvideo.com", + "domain":"andr.na.ec.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dna.amazon.com", + "domain":"dna.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"msh.amazon.co.uk", + "domain":"msh.amazon.co.uk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cognito-identity.us-east-1.amazonaws.com", + "domain":"cognito-identity.us-east-1.amazonaws.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ktpx-uk.amazon.com", + "domain":"ktpx-uk.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"a3jtvzs340-53cb997a-a047f305-e4f99133-13908f40.na.ec.api.amazonvideo.com", + "domain":"a3jtvzs340-53cb997a-a047f305-e4f99133-13908f40.na.ec.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"watch.amazon.com", + "domain":"watch.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"andr-22-aftt-0.api.amazonvideo.com", + "domain":"andr-22-aftt-0.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"antv-26-nvidia-shieldandroidtv-412000500.api.amazonvideo.com", + "domain":"antv-26-nvidia-shieldandroidtv-412000500.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"andr-22-afts-0.api.amazonvideo.com", + "domain":"andr-22-afts-0.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"prime.amazon.eu", + "domain":"prime.amazon.eu", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"msh.amazon.co.jp", + "domain":"msh.amazon.co.jp", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.amazon.ca", + "domain":"www.amazon.ca", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fls-na.amazon.ca", + "domain":"fls-na.amazon.ca", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"wl.amazon-dss.com", + "domain":"wl.amazon-dss.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"andr.fe.ec.api.amazonvideo.com", + "domain":"andr.fe.ec.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"q419aw9zfb4fa0.api.amazonvideo.com", + "domain":"q419aw9zfb4fa0.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.imdbws.com", + "domain":"api.imdbws.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ios-app-config.media-imdb.com", + "domain":"ios-app-config.media-imdb.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"firebat.api.amazonvideo.com", + "domain":"firebat.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"unagi.amazon.ca", + "domain":"unagi.amazon.ca", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"unagi-fe.amazon.com", + "domain":"unagi-fe.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"unagi.amazon.com", + "domain":"unagi.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"unagi.amazon.de", + "domain":"unagi.amazon.de", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ipv6.unagi-na.amazon.com", + "domain":"ipv6.unagi-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"remoteconfig-na.amazon.com", + "domain":"remoteconfig-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.amazon.es", + "domain":"www.amazon.es", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"unagi.amazon.es", + "domain":"unagi.amazon.es", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"global.backend.imdbtv-services.amazon.dev", + "domain":"global.backend.imdbtv-services.amazon.dev", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"avpk-a3vn4e5f7bbc7s-1.na.api.amazonvideo.com", + "domain":"avpk-a3vn4e5f7bbc7s-1.na.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"avpk-a3vn4e5f7bbc7s-1.api.amazonvideo.com", + "domain":"avpk-a3vn4e5f7bbc7s-1.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"avpk-a3vn4e5f7bbc7s-1.fe.api.amazonvideo.com", + "domain":"avpk-a3vn4e5f7bbc7s-1.fe.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.amazon.fr", + "domain":"www.amazon.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fls-eu.amazon.fr", + "domain":"fls-eu.amazon.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"unagi.amazon.fr", + "domain":"unagi.amazon.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"unagi.amazon.co.jp", + "domain":"unagi.amazon.co.jp", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fls-fe.amazon.com.au", + "domain":"fls-fe.amazon.com.au", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"unagi.amazon.com.au", + "domain":"unagi.amazon.com.au", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"open.spotify.com", + "domain":"open.spotify.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"spclient.wg.spotify.com", + "domain":"spclient.wg.spotify.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"apresolve.spotify.com", + "domain":"apresolve.spotify.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mobile-ap.spotify.com", + "domain":"mobile-ap.spotify.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api2.iheart.com", + "domain":"api2.iheart.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"us.api.iheart.com", + "domain":"us.api.iheart.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"au.api.iheart.com", + "domain":"au.api.iheart.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nz.api.iheart.com", + "domain":"nz.api.iheart.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"global.api.iheart.com", + "domain":"global.api.iheart.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"play.itunes.apple.com", + "domain":"play.itunes.apple.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"play-edge.itunes.apple.com", + "domain":"play-edge.itunes.apple.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tv.applemusic.com", + "domain":"tv.applemusic.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear.tv.apple.com", + "domain":"linear.tv.apple.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"captive.apple.com", + "domain":"captive.apple.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"upp.itunes.apple.com", + "domain":"upp.itunes.apple.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mediaservices.cdn-apple.com", + "domain":"mediaservices.cdn-apple.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pd.itunes.apple.com", + "domain":"pd.itunes.apple.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"apptrailers.itunes.apple.com", + "domain":"apptrailers.itunes.apple.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"playerservices.streamtheworld.com", + "domain":"playerservices.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mobileroadie.com", + "domain":"mobileroadie.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"14653.live.streamtheworld.com", + "domain":"14653.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"9313.live.streamtheworld.com", + "domain":"9313.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"14773.live.streamtheworld.com", + "domain":"14773.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"9513.live.streamtheworld.com", + "domain":"9513.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"14633.live.streamtheworld.com", + "domain":"14633.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"10433.live.streamtheworld.com", + "domain":"10433.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"9303.live.streamtheworld.com", + "domain":"9303.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"1351.live.streamtheworld.com", + "domain":"1351.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"8343.live.streamtheworld.com", + "domain":"8343.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"9453.live.streamtheworld.com", + "domain":"9453.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"13993.live.streamtheworld.com", + "domain":"13993.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"14013.live.streamtheworld.com", + "domain":"14013.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"14093.live.streamtheworld.com", + "domain":"14093.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"14623.live.streamtheworld.com", + "domain":"14623.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"15123.live.streamtheworld.com", + "domain":"15123.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"15213.live.streamtheworld.com", + "domain":"15213.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"15233.live.streamtheworld.com", + "domain":"15233.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"15273.live.streamtheworld.com", + "domain":"15273.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"13743.live.streamtheworld.com", + "domain":"13743.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"14023.live.streamtheworld.com", + "domain":"14023.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"14083.live.streamtheworld.com", + "domain":"14083.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"15363.live.streamtheworld.com", + "domain":"15363.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"17793.live.streamtheworld.com", + "domain":"17793.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"14103.live.streamtheworld.com", + "domain":"14103.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"13693.live.streamtheworld.com", + "domain":"13693.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"18443.live.streamtheworld.com", + "domain":"18443.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"17523.live.streamtheworld.com", + "domain":"17523.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tidalhifi.com", + "domain":"tidalhifi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"getlossless.com", + "domain":"getlossless.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"go.tidalhifi.com", + "domain":"go.tidalhifi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"listen.tidalhifi.com", + "domain":"listen.tidalhifi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tidal.com", + "domain":"tidal.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"appletv.abcfamily.go.com", + "domain":"appletv.abcfamily.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.mobile.aws.abcf.seabc.go.com", + "domain":"api.mobile.aws.abcf.seabc.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.watchabc.go.com", + "domain":"api.watchabc.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.entitlement.watchabc.go.com", + "domain":"api.entitlement.watchabc.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"abc.go.com", + "domain":"abc.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.utils.watchabc.go.com", + "domain":"api.utils.watchabc.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"appletv.abc.go.com", + "domain":"appletv.abc.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.profile.abc.go.com", + "domain":"api.profile.abc.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"prod.gatekeeper.us-abc.symphony.edgedatg.go.com", + "domain":"prod.gatekeeper.us-abc.symphony.edgedatg.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.telemetry.watchabc.go.com", + "domain":"api.telemetry.watchabc.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.pluto.watchabc.go.com", + "domain":"api.pluto.watchabc.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sw88.go.com", + "domain":"sw88.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"prod.gatekeeper.us-abc.symphony.edgedatg.com", + "domain":"prod.gatekeeper.us-abc.symphony.edgedatg.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"unid.go.com", + "domain":"unid.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"w88.go.com", + "domain":"w88.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.eu-west-1.aiv-delivery.net", + "domain":"api.eu-west-1.aiv-delivery.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"streams.adobeprimetime.com", + "domain":"streams.adobeprimetime.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn.video.abc.com", + "domain":"cdn.video.abc.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ios.unid.go.com", + "domain":"ios.unid.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"itsliveradio.apple.com", + "domain":"itsliveradio.apple.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"itsliveradiobackup.apple.com", + "domain":"itsliveradiobackup.apple.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"music.163.com", + "domain":"music.163.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m10.music.126.net", + "domain":"m10.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ipservice.163.com", + "domain":"ipservice.163.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m2.music.126.net", + "domain":"m2.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1.music.126.net", + "domain":"s1.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"p1.music.126.net", + "domain":"p1.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"p2.music.126.net", + "domain":"p2.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"p3.music.126.net", + "domain":"p3.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"p4.music.126.net", + "domain":"p4.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"p5.music.126.net", + "domain":"p5.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"p6.music.126.net", + "domain":"p6.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"p7.music.126.net", + "domain":"p7.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"p8.music.126.net", + "domain":"p8.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"p9.music.126.net", + "domain":"p9.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m1.music.126.net", + "domain":"m1.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m3.music.126.net", + "domain":"m3.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m4.music.126.net", + "domain":"m4.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m5.music.126.net", + "domain":"m5.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m6.music.126.net", + "domain":"m6.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m7.music.126.net", + "domain":"m7.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m8.music.126.net", + "domain":"m8.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m9.music.126.net", + "domain":"m9.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"wanproxy.127.net", + "domain":"wanproxy.127.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"music.httpdns.c.163.com", + "domain":"music.httpdns.c.163.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dongfeng.alicdn.com", + "domain":"dongfeng.alicdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"wanproxy-hz.127.net", + "domain":"wanproxy-hz.127.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"wanproxy-bj.127.net", + "domain":"wanproxy-bj.127.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"wanproxy-oversea.127.net", + "domain":"wanproxy-oversea.127.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nstool.netease.com", + "domain":"nstool.netease.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"gslb.live.126.net", + "domain":"gslb.live.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"interface.music.163.com", + "domain":"interface.music.163.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"web.push.126.net", + "domain":"web.push.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"iadmat.nosdn.127.net", + "domain":"iadmat.nosdn.127.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"163music.azurewebsites.net", + "domain":"163music.azurewebsites.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sitemap.163.com", + "domain":"sitemap.163.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ac.dun.163yun.com", + "domain":"ac.dun.163yun.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"help.163.com", + "domain":"help.163.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"crash.163.com", + "domain":"crash.163.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"clientlog.music.163.com", + "domain":"clientlog.music.163.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"only-770054-47-94-87-143.nstool.netease.com", + "domain":"only-770054-47-94-87-143.nstool.netease.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mr.da.netease.com", + "domain":"mr.da.netease.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mam.netease.com", + "domain":"mam.netease.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"rec.g.163.com", + "domain":"rec.g.163.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"iad.g.163.com", + "domain":"iad.g.163.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"wr.da.netease.com", + "domain":"wr.da.netease.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s3.music.126.net", + "domain":"s3.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s4.music.126.net", + "domain":"s4.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s2.music.126.net", + "domain":"s2.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"acstatic-dun.126.net", + "domain":"acstatic-dun.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"img3.126.net", + "domain":"img3.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sp0.baidu.com", + "domain":"sp0.baidu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"only-634895-47-94-87-143.nstool.netease.com", + "domain":"only-634895-47-94-87-143.nstool.netease.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"web-api-us.crackle.com", + "domain":"web-api-us.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"roku-api-us.crackle.com", + "domain":"roku-api-us.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"legacyweb-us.crackle.com", + "domain":"legacyweb-us.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"content-ause3.uplynk.com", + "domain":"content-ause3.uplynk.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"images-us-az.crackle.com", + "domain":"images-us-az.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"content-ause4.uplynk.com", + "domain":"content-ause4.uplynk.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"android-fire-tv-api-us.crackle.com", + "domain":"android-fire-tv-api-us.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"android-tv-api-us.crackle.com", + "domain":"android-tv-api-us.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api-v1-us.crackle.com", + "domain":"api-v1-us.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sonytv-api-us.crackle.com", + "domain":"sonytv-api-us.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ipad-api-us.crackle.com", + "domain":"ipad-api-us.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.sonycrackle.com", + "domain":"www.sonycrackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m.sonycrackle.com", + "domain":"m.sonycrackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"roku-v2-api-us.crackle.com", + "domain":"roku-v2-api-us.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"crackleott.s3.amazonaws.com", + "domain":"crackleott.s3.amazonaws.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.xiami.com", + "domain":"www.xiami.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"spark.api.xiami.com", + "domain":"spark.api.xiami.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"music.xiami.com", + "domain":"music.xiami.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"play.baidu.com", + "domain":"play.baidu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"music.baidu.com", + "domain":"music.baidu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tingapi.ting.baidu.com", + "domain":"tingapi.ting.baidu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.kkbox.com", + "domain":"www.kkbox.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ssl.kkbox.com", + "domain":"ssl.kkbox.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api-login.kkbox.com.tw", + "domain":"api-login.kkbox.com.tw", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.tbs.com", + "domain":"www.tbs.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.tntdrama.com", + "domain":"www.tntdrama.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"phds-live.cdn.turner.com", + "domain":"phds-live.cdn.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aspen.turner.com", + "domain":"aspen.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"token.vgtf.net", + "domain":"token.vgtf.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"data.tbs.com", + "domain":"data.tbs.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tve-vod.cdn.turner.com", + "domain":"tve-vod.cdn.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tnteast-i.akamaihd.net", + "domain":"tnteast-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tntwest-i.akamaihd.net", + "domain":"tntwest-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tbseast-i.akamaihd.net", + "domain":"tbseast-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tbswest-i.akamaihd.net", + "domain":"tbswest-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"apple-secure.cdn.turner.com", + "domain":"apple-secure.cdn.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tve.cdn.turner.com", + "domain":"tve.cdn.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"i.cdn.tntdrama.com", + "domain":"i.cdn.tntdrama.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cvp1.cdn.turner.com", + "domain":"cvp1.cdn.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tbseastlive-i.akamaihd.net", + "domain":"tbseastlive-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tbswestlive-i.akamaihd.net", + "domain":"tbswestlive-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tnteastlive-i.akamaihd.net", + "domain":"tnteastlive-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tntwestlive-i.akamaihd.net", + "domain":"tntwestlive-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"turnerlive.akamaized.net", + "domain":"turnerlive.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"z.cdn.turner.com", + "domain":"z.cdn.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tve-vod-preview.cdn.turner.com", + "domain":"tve-vod-preview.cdn.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tbs-vh.akamaihd.net", + "domain":"tbs-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tbs.com", + "domain":"tbs.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tve-live-ctl.warnermediacdn.com", + "domain":"tve-live-ctl.warnermediacdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tve-live-aka.warnermediacdn.com", + "domain":"tve-live-aka.warnermediacdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tve-vod-ctl.warnermediacdn.com", + "domain":"tve-vod-ctl.warnermediacdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tve-vod-aka.warnermediacdn.com", + "domain":"tve-vod-aka.warnermediacdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"adultswim-vodlive.cdn.turner.com", + "domain":"adultswim-vodlive.cdn.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.adultswim.com", + "domain":"api.adultswim.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"identity.api.wmcdp.io", + "domain":"identity.api.wmcdp.io", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tve-ssai-aka.warnermediacdn.com", + "domain":"tve-ssai-aka.warnermediacdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvem.cdn.turner.com", + "domain":"tvem.cdn.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.tcm.com", + "domain":"www.tcm.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.hbogo.com", + "domain":"www.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pdl.misc.lv3.hbogo.com", + "domain":"pdl.misc.lv3.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"smooth.pro17.lv3.hbogo.com", + "domain":"smooth.pro17.lv3.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hds.pro12.lv3.hbogo.com", + "domain":"hds.pro12.lv3.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"smooth.misc.lv3.hbogo.com", + "domain":"smooth.misc.lv3.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"atv.lv3.hbogo.com", + "domain":"atv.lv3.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hbogo.com", + "domain":"hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"play.hbogo.com", + "domain":"play.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"secure.hbogo.com", + "domain":"secure.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"snowball.api.hbo.com", + "domain":"snowball.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"concierge.api.hbo.com", + "domain":"concierge.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"activate.hbogo.com", + "domain":"activate.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"smooth.misc.akm.hbogo.com", + "domain":"smooth.misc.akm.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"shop.hbo.com", + "domain":"shop.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.hbostore.co.uk", + "domain":"www.hbostore.co.uk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aracahq.com", + "domain":"aracahq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pdl.misc.akm.hbogo.com", + "domain":"pdl.misc.akm.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"livepassdl.conviva.com", + "domain":"livepassdl.conviva.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"watch.hbo.com", + "domain":"watch.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"order.hbonow.com", + "domain":"order.hbonow.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"smetrics.hbonow.com", + "domain":"smetrics.hbonow.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hbobroadband.sc.omtrdc.net", + "domain":"hbobroadband.sc.omtrdc.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"devicecast.hbogo.com", + "domain":"devicecast.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"activate.hbonow.com", + "domain":"activate.hbonow.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"device.hbonow.com", + "domain":"device.hbonow.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"appletv-api.lv3.cdn.hbo.com", + "domain":"appletv-api.lv3.cdn.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"appletv.api.hbo.com", + "domain":"appletv.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"subscribe.hbonow.com", + "domain":"subscribe.hbonow.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hbogeo.cust.footprint.net", + "domain":"hbogeo.cust.footprint.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"geo.hbo.com", + "domain":"geo.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"smooth.pro17.cf.cdn.hbogo.com", + "domain":"smooth.pro17.cf.cdn.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"smooth.pro17.lln.cdn.hbogo.com", + "domain":"smooth.pro17.lln.cdn.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"affiliatelogos.fly.cdn.hbogo.com", + "domain":"affiliatelogos.fly.cdn.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"media.fly.cdn.hbomax.com", + "domain":"media.fly.cdn.hbomax.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hbomax.com", + "domain":"hbomax.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"help.hbonow.com", + "domain":"help.hbonow.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"play.hbomax.com", + "domain":"play.hbomax.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"help.hbomax.com", + "domain":"help.hbomax.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"trickplay.pro42.fly.cdn.hbogo.com", + "domain":"trickplay.pro42.fly.cdn.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dash.pro42.lln.cdn.hbogo.com", + "domain":"dash.pro42.lln.cdn.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"device.hbomax.com", + "domain":"device.hbomax.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"artist.api.cdn.hbo.com", + "domain":"artist.api.cdn.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hbo.map.fastly.net", + "domain":"hbo.map.fastly.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"chromecast.cdn.hbogo.com", + "domain":"chromecast.cdn.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"atv.api.akm.cdn.hbo.com", + "domain":"atv.api.akm.cdn.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"gateway.api.hbo.com", + "domain":"gateway.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dynamic-content-frontdoor.api.hbo.com", + "domain":"dynamic-content-frontdoor.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sessions-us.api.hbo.com", + "domain":"sessions-us.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"commerce-experience-latam.api.hbo.com", + "domain":"commerce-experience-latam.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"markers-latam.api.hbo.com", + "domain":"markers-latam.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dualstack.hbo.map.fastly.net", + "domain":"dualstack.hbo.map.fastly.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"herald.caps.hbo.com", + "domain":"herald.caps.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dgoauth.discovery.com", + "domain":"dgoauth.discovery.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.discoverygo.com", + "domain":"www.discoverygo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.discovery.com", + "domain":"api.discovery.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"login.discovery.com", + "domain":"login.discovery.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dscusvod-vh.akamaihd.net", + "domain":"dscusvod-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"uslivediscovery-lh.akamaihd.net", + "domain":"uslivediscovery-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"usliveapl-lh.akamaihd.net", + "domain":"usliveapl-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"uslivetlc-lh.akamaihd.net", + "domain":"uslivetlc-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"usliveid-lh.akamaihd.net", + "domain":"usliveid-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"uslivescience-lh.akamaihd.net", + "domain":"uslivescience-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"uslivevel-lh.akamaihd.net", + "domain":"uslivevel-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"usliveahc-lh.akamaihd.net", + "domain":"usliveahc-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"uslivedam-lh.akamaihd.net", + "domain":"uslivedam-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"usliveaplhls-i.akamaihd.net", + "domain":"usliveaplhls-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"uslivedschls-i.akamaihd.net", + "domain":"uslivedschls-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"uslivetlchls-i.akamaihd.net", + "domain":"uslivetlchls-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"usliveidshls-i.akamaihd.net", + "domain":"usliveidshls-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.discovery.com", + "domain":"www.discovery.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"go.discovery.com", + "domain":"go.discovery.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"media.mtvnservices.com", + "domain":"media.mtvnservices.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.spike.com", + "domain":"www.spike.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"intl.esperanto.mtvi.com", + "domain":"intl.esperanto.mtvi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.cc.com", + "domain":"www.cc.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mediautilsmrs-a.akamaihd.net", + "domain":"mediautilsmrs-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"southpark.cc.com", + "domain":"southpark.cc.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"media-utils.mtvnservices.com", + "domain":"media-utils.mtvnservices.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.comedycentral.com", + "domain":"api.comedycentral.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.cc.com", + "domain":"api.cc.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"relaunch.api.mtv.com", + "domain":"relaunch.api.mtv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mediamtvnserv-a.akamaihd.net", + "domain":"mediamtvnserv-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"btg.mtvnservices.com", + "domain":"btg.mtvnservices.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mtvi.com", + "domain":"mtvi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.mtvunderthethumb.com", + "domain":"www.mtvunderthethumb.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mediautilssvcs-a.akamaihd.net", + "domain":"mediautilssvcs-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nick.com", + "domain":"nick.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nickjr.com", + "domain":"nickjr.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.nick.com", + "domain":"www.nick.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.nickjr.com", + "domain":"www.nickjr.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.playplex.viacom.com", + "domain":"api.playplex.viacom.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mediautilslive-a.akamaihd.net", + "domain":"mediautilslive-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"neutron-api.viacom.tech", + "domain":"neutron-api.viacom.tech", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.vh1.com", + "domain":"www.vh1.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.logotv.com", + "domain":"www.logotv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"topaz.viacomcbs.digital", + "domain":"topaz.viacomcbs.digital", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vidtech.cbsinteractive.com", + "domain":"vidtech.cbsinteractive.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"paramount-network.orchestrator.viacomcbs-tech.com", + "domain":"paramount-network.orchestrator.viacomcbs-tech.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"topaz.dai.viacomcbs.digital", + "domain":"topaz.dai.viacomcbs.digital", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cc.orchestrator.viacomcbs-tech.com", + "domain":"cc.orchestrator.viacomcbs-tech.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tveauth.viacom.com", + "domain":"tveauth.viacom.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"neutron-api.viacbs.tech", + "domain":"neutron-api.viacbs.tech", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"viafree-content.mtg-api.com", + "domain":"viafree-content.mtg-api.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sparrow.intl.paramountplus.com", + "domain":"sparrow.intl.paramountplus.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.paramountnetwork.com", + "domain":"www.paramountnetwork.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"neutron-api.paramount.tech", + "domain":"neutron-api.paramount.tech", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.cartoonnetwork.com", + "domain":"www.cartoonnetwork.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ht2.cdn.turner.com", + "domain":"ht2.cdn.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"token.vgtf.net", + "domain":"token.vgtf.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pmd.cdn.turner.com", + "domain":"pmd.cdn.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"phds-vod.cdn.turner.com", + "domain":"phds-vod.cdn.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"config.outturner.com", + "domain":"config.outturner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"phls-live.cdn.turner.com", + "domain":"phls-live.cdn.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"z.cdn.turner.com", + "domain":"z.cdn.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cnnios-f.akamaihd.net", + "domain":"cnnios-f.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"phls-vod.cdn.turner.com", + "domain":"phls-vod.cdn.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cnngo-i.akamaihd.net", + "domain":"cnngo-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"trueast-i.akamaihd.net", + "domain":"trueast-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"truwest-i.akamaihd.net", + "domain":"truwest-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"video-api.cartoonnetwork.com", + "domain":"video-api.cartoonnetwork.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"d2c-vod.cdn.turner.com", + "domain":"d2c-vod.cdn.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.trutv.com", + "domain":"www.trutv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"z.static.cdn.trutv.com", + "domain":"z.static.cdn.trutv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"i.static.cdn.trutv.com", + "domain":"i.static.cdn.trutv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.platform.cnn.com", + "domain":"api.platform.cnn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"token.ngtv.io", + "domain":"token.ngtv.io", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.cnn.com", + "domain":"www.cnn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.filmstruck.com", + "domain":"www.filmstruck.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"devgeo.ngtv.io", + "domain":"devgeo.ngtv.io", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ensighten.filmstruck.com", + "domain":"ensighten.filmstruck.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"prod-iris.filmstruck.com", + "domain":"prod-iris.filmstruck.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.trutv.com", + "domain":"api.trutv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cerebro.api.cnn.io", + "domain":"cerebro.api.cnn.io", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.boomerang.com", + "domain":"www.boomerang.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"turnerlive.warnermediacdn.com", + "domain":"turnerlive.warnermediacdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"top.warnermediacdn.com", + "domain":"top.warnermediacdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"plus.cnn.com", + "domain":"plus.cnn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-media-ctl.warnermediacdn.com", + "domain":"live-media-ctl.warnermediacdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-media-aka.warnermediacdn.com", + "domain":"live-media-aka.warnermediacdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-media-lln.warnermediacdn.com", + "domain":"live-media-lln.warnermediacdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vod-media-lln.warnermediacdn.com", + "domain":"vod-media-lln.warnermediacdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vod-media-aka.warnermediacdn.com", + "domain":"vod-media-aka.warnermediacdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vod-media-ctl.warnermediacdn.com", + "domain":"vod-media-ctl.warnermediacdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.starzplay.com", + "domain":"www.starzplay.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"starz.122.2o7.net", + "domain":"starz.122.2o7.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.dmlib.com", + "domain":"api.dmlib.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"playauthcontent.starz.com", + "domain":"playauthcontent.starz.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"playdata.starz.com", + "domain":"playdata.starz.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.starz.com", + "domain":"www.starz.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tpr372228livesec-lh.akamaihd.net", + "domain":"tpr372228livesec-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"video01-us.starz.com", + "domain":"video01-us.starz.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"auth-prod.starzaws.com", + "domain":"auth-prod.starzaws.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"auth.starz.com", + "domain":"auth.starz.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"starz.penthera.com", + "domain":"starz.penthera.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.vudu.com", + "domain":"www.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"origin.www.vudu.com", + "domain":"origin.www.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"llavodhls.vudu.com", + "domain":"llavodhls.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"espni.go.com", + "domain":"espni.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tredir.go.com", + "domain":"tredir.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"broadband.espn.go.com", + "domain":"broadband.espn.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"media.video-cdn.espn.com", + "domain":"media.video-cdn.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"services.prd1.contentdirect.tv", + "domain":"services.prd1.contentdirect.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"espn.go.com", + "domain":"espn.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"espn.com", + "domain":"espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"players.brightcove.net", + "domain":"players.brightcove.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"proxy.espn.com", + "domain":"proxy.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s.espncdn.com", + "domain":"s.espncdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pkg.video-cdn.espn.com", + "domain":"pkg.video-cdn.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sportscenterfanapi.prod.geo.espn.com", + "domain":"sportscenterfanapi.prod.geo.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn.registerdisney.go.com", + "domain":"cdn.registerdisney.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlsvod-l3c-clt1.media.plus.espn.com", + "domain":"hlsvod-l3c-clt1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlslive-akc-clt2.media.plus.espn.com", + "domain":"hlslive-akc-clt2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlslive-l3c-clt2.media.plus.espn.com", + "domain":"hlslive-l3c-clt2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlsvod-akc-clt1.media.plus.espn.com", + "domain":"hlsvod-akc-clt1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlslive-akc-clt1.media.plus.espn.com", + "domain":"hlslive-akc-clt1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlslive-l3c-clt1.media.plus.espn.com", + "domain":"hlslive-l3c-clt1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlslive-l3c-med2.media.plus.espn.com", + "domain":"hlslive-l3c-med2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlslive-l3c-med1.media.plus.espn.com", + "domain":"hlslive-l3c-med1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlslive-akc-med2.media.plus.espn.com", + "domain":"hlslive-akc-med2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlslive-akc-med1.media.plus.espn.com", + "domain":"hlslive-akc-med1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"registerdisney.go.com", + "domain":"registerdisney.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"static.web.plus.espn.com", + "domain":"static.web.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"qa-static.web.plus.espn.com", + "domain":"qa-static.web.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn.espn.com", + "domain":"cdn.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlslive-llc-clt2.media.plus.espn.com", + "domain":"hlslive-llc-clt2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aeng.svcs.plus.espn.com", + "domain":"aeng.svcs.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aserv-akc-us-east-1.media.plus.espn.com", + "domain":"aserv-akc-us-east-1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"prod-freewheel.espn.go.com", + "domain":"prod-freewheel.espn.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aserv-l3c-us-east-1.media.plus.espn.com", + "domain":"aserv-l3c-us-east-1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlslive-l3c-oma2.media.plus.espn.com", + "domain":"hlslive-l3c-oma2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.broadband.espn.com", + "domain":"www.broadband.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlslive-akc-oma2.media.plus.espn.com", + "domain":"hlslive-akc-oma2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ak-hls-brs-espn1.espn.go.com", + "domain":"ak-hls-brs-espn1.espn.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ak-hls-brs-espn2.espn.go.com", + "domain":"ak-hls-brs-espn2.espn.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ak-hls-brs-espn3.espn.go.com", + "domain":"ak-hls-brs-espn3.espn.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ak-hls-brs-espnu.espn.go.com", + "domain":"ak-hls-brs-espnu.espn.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"artwork.espncdn.com", + "domain":"artwork.espncdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vod-l3c-na.media.plus.espn.com", + "domain":"vod-l3c-na.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vod-llc-na.media.plus.espn.com", + "domain":"vod-llc-na.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vod-akc-na.media.plus.espn.com", + "domain":"vod-akc-na.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"a2.espncdn.com", + "domain":"a2.espncdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"a1.espncdn.com", + "domain":"a1.espncdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"a3.espncdn.com", + "domain":"a3.espncdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"a4.espncdn.com", + "domain":"a4.espncdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"us.edge.bamgrid.com", + "domain":"us.edge.bamgrid.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"watchespn.com", + "domain":"watchespn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlslive-llc-oma2.media.plus.espn.com", + "domain":"hlslive-llc-oma2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"watch-cdn.product.api.espn.com", + "domain":"watch-cdn.product.api.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"espnapp.geo.hosted.espn.com", + "domain":"espnapp.geo.hosted.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"affiliate.api.geo.hosted.espn.com", + "domain":"affiliate.api.geo.hosted.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlslive-ftc-clt2.media.plus.espn.com", + "domain":"hlslive-ftc-clt2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"watch.graph.api.geo.hosted.espn.com", + "domain":"watch.graph.api.geo.hosted.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"espn.api.edge.bamgrid.com", + "domain":"espn.api.edge.bamgrid.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-ftc-na-east-2.media.plus.espn.com", + "domain":"live-ftc-na-east-2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-ftc-na-central-1.media.plus.espn.com", + "domain":"live-ftc-na-central-1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-ftc-na-central-2.media.plus.espn.com", + "domain":"live-ftc-na-central-2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-ftc-na-west-1.media.plus.espn.com", + "domain":"live-ftc-na-west-1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-ftc-na-west-2.media.plus.espn.com", + "domain":"live-ftc-na-west-2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-ftc-na-east-1.media.plus.espn.com", + "domain":"live-ftc-na-east-1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-akc-na-central-1.media.plus.espn.com", + "domain":"live-akc-na-central-1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-akc-na-west-1.media.plus.espn.com", + "domain":"live-akc-na-west-1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-akc-na-east-1.media.plus.espn.com", + "domain":"live-akc-na-east-1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-akc-na-west-2.media.plus.espn.com", + "domain":"live-akc-na-west-2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-akc-na-east-2.media.plus.espn.com", + "domain":"live-akc-na-east-2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-akc-na-central-2.media.plus.espn.com", + "domain":"live-akc-na-central-2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-l3c-na-east-1.media.plus.espn.com", + "domain":"live-l3c-na-east-1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-l3c-na-west-1.media.plus.espn.com", + "domain":"live-l3c-na-west-1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-l3c-na-central-1.media.plus.espn.com", + "domain":"live-l3c-na-central-1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-l3c-na-east-2.media.plus.espn.com", + "domain":"live-l3c-na-east-2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-l3c-na-west-2.media.plus.espn.com", + "domain":"live-l3c-na-west-2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-l3c-na-central-2.media.plus.espn.com", + "domain":"live-l3c-na-central-2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aserv-akc-us-west-2.media.plus.espn.com", + "domain":"aserv-akc-us-west-2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlslive-ftc-oma2.media.plus.espn.com", + "domain":"hlslive-ftc-oma2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dualstack.dss-espn.map.fastly.net", + "domain":"dualstack.dss-espn.map.fastly.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn1.espn.net", + "domain":"cdn1.espn.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pinpoint.espn.com", + "domain":"pinpoint.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aserv-ftc-us-east-1.media.plus.espn.com", + "domain":"aserv-ftc-us-east-1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aserv-ftc-us-west-2.media.plus.espn.com", + "domain":"aserv-ftc-us-west-2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aserv-l3c-us-west-2.media.plus.espn.com", + "domain":"aserv-l3c-us-west-2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"gamecenter.nhl.com", + "domain":"gamecenter.nhl.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.nhl.com", + "domain":"www.nhl.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nhl.com", + "domain":"nhl.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"secure.nhl.com", + "domain":"secure.nhl.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"activation-rogers.svc.nhl.com", + "domain":"activation-rogers.svc.nhl.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cd.web.nhl.com", + "domain":"cd.web.nhl.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"user.svc.nhl.com", + "domain":"user.svc.nhl.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mf.svc.nhl.com", + "domain":"mf.svc.nhl.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nhl.bamcontent.com", + "domain":"nhl.bamcontent.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"account.nhl.com", + "domain":"account.nhl.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"statsapi.web.nhl.com", + "domain":"statsapi.web.nhl.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"gateway.web.nhl.com", + "domain":"gateway.web.nhl.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"activation-nhl.svc.nhl.com", + "domain":"activation-nhl.svc.nhl.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"secure.web.nhl.com", + "domain":"secure.web.nhl.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hermes-tokenservice.svc.nhl.com", + "domain":"hermes-tokenservice.svc.nhl.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aeng.svc.nhl.com", + "domain":"aeng.svc.nhl.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ch181.hls.att.com.edgesuite.net", + "domain":"ch181.hls.att.com.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn01.uverse.com", + "domain":"cdn01.uverse.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn02.uverse.com", + "domain":"cdn02.uverse.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn03.uverse.com", + "domain":"cdn03.uverse.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn04.uverse.com", + "domain":"cdn04.uverse.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn05.uverse.com", + "domain":"cdn05.uverse.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"uverse.com", + "domain":"uverse.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m.uverse.com", + "domain":"m.uverse.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cprodx.att.net", + "domain":"cprodx.att.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cprodx.uverse.com", + "domain":"cprodx.uverse.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tdata-offers.att.com", + "domain":"tdata-offers.att.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"uverse.quickplay.com", + "domain":"uverse.quickplay.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"uverse-image.quickplay.com", + "domain":"uverse-image.quickplay.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"labs.fyitelevision.com", + "domain":"labs.fyitelevision.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.crunchyroll.com", + "domain":"www.crunchyroll.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.crunchyroll.com", + "domain":"api.crunchyroll.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"beta-api.crunchyroll.com", + "domain":"beta-api.crunchyroll.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"beta.crunchyroll.com", + "domain":"beta.crunchyroll.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-cdn.pbskids.org", + "domain":"live-cdn.pbskids.org", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"jaws.pbs.org", + "domain":"jaws.pbs.org", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"localization.digi-prod.pbs.org", + "domain":"localization.digi-prod.pbs.org", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"wptddt.lls.cdn.pbs.org", + "domain":"wptddt.lls.cdn.pbs.org", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"station.services.pbs.org", + "domain":"station.services.pbs.org", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"jaws-prod.cdn.pbs.org", + "domain":"jaws-prod.cdn.pbs.org", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"content.services.pbs.org", + "domain":"content.services.pbs.org", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn.wwtv.warnerbros.com", + "domain":"cdn.wwtv.warnerbros.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"media.cwtv.com", + "domain":"media.cwtv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlsioscwtv.warnerbros.com", + "domain":"hlsioscwtv.warnerbros.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cwtv-vod.mdialog.com", + "domain":"cwtv-vod.mdialog.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cwtv-origin.mdialog.com", + "domain":"cwtv-origin.mdialog.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cwtv-ad-akamai.cwtv.com", + "domain":"cwtv-ad-akamai.cwtv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cwtv-hls-akamai.cwtv.com", + "domain":"cwtv-hls-akamai.cwtv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cwtv-mrss-akamai.cwtv.com", + "domain":"cwtv-mrss-akamai.cwtv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cwsmooth-vod.hss.adaptive.level3.net", + "domain":"cwsmooth-vod.hss.adaptive.level3.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.cwtv.com", + "domain":"www.cwtv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cwtv-apple-vod.adaptive.level3.net", + "domain":"cwtv-apple-vod.adaptive.level3.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"images.cwtv.com", + "domain":"images.cwtv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"secure.footprint.net", + "domain":"secure.footprint.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"stream-hls.cwtv.com", + "domain":"stream-hls.cwtv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cwtv-amd-akamai.akamaized.net", + "domain":"cwtv-amd-akamai.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"edge.cwtv-vod-ext.top.comcast.net", + "domain":"edge.cwtv-vod-ext.top.comcast.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"edge.cwtv-egress.top.comcast.net", + "domain":"edge.cwtv-egress.top.comcast.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.cwseed.com", + "domain":"www.cwseed.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m.cwtv.com", + "domain":"m.cwtv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"6ab03b26.customer.core.one.accedo.tv", + "domain":"6ab03b26.customer.core.one.accedo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"6ab03b26.bootstrap.core.one.accedo.tv", + "domain":"6ab03b26.bootstrap.core.one.accedo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"6ab03b26.customer.static.core.one.accedo.tv", + "domain":"6ab03b26.customer.static.core.one.accedo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.skychnl.net", + "domain":"api.skychnl.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.feeln.com", + "domain":"www.feeln.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"crowntrans-vh.akamaihd.net", + "domain":"crowntrans-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"crownmediaingest.akamaized.net", + "domain":"crownmediaingest.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.hallmarkchanneleverywhere.com", + "domain":"www.hallmarkchanneleverywhere.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hallmarkcom.hb.omtrdc.net", + "domain":"hallmarkcom.hb.omtrdc.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hallmarkchannel.sc.omtrdc.net", + "domain":"hallmarkchannel.sc.omtrdc.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"crownstreaming.akamaized.net", + "domain":"crownstreaming.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"authcrowntrans-vh.akamaihd.net", + "domain":"authcrowntrans-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api2.hmnow.com", + "domain":"api2.hmnow.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.hmnow.com", + "domain":"www.hmnow.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"playback.brightcovecdn.com", + "domain":"playback.brightcovecdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"devices.carnivalmobile.com", + "domain":"devices.carnivalmobile.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"097d0e9f.customer.core.one.accedo.tv", + "domain":"097d0e9f.customer.core.one.accedo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.foxsoccer2go.com", + "domain":"www.foxsoccer2go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.foxsoccer-iphone.premiumtv.co.uk", + "domain":"www.foxsoccer-iphone.premiumtv.co.uk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.foxsoccermatchpass.com", + "domain":"www.foxsoccermatchpass.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dvr-i-uefa-video-foxmp.akamaized.net", + "domain":"dvr-i-uefa-video-foxmp.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dvr-i-video-foxmp.akamaized.net", + "domain":"dvr-i-video-foxmp.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"foxmp-prd.akamaized.net", + "domain":"foxmp-prd.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"livemain-i-video-foxmp.akamaized.net", + "domain":"livemain-i-video-foxmp.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"livemain-i-uefa-video-foxmp.akamaized.net", + "domain":"livemain-i-uefa-video-foxmp.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"foxus-dev-frontend.azurewebsites.net", + "domain":"foxus-dev-frontend.azurewebsites.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tubitv.com", + "domain":"tubitv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn.adrise.tv", + "domain":"cdn.adrise.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cms.adrise.com", + "domain":"cms.adrise.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"i.adrise.tv", + "domain":"i.adrise.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"uapi.adrise.tv", + "domain":"uapi.adrise.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ott-firetv.tubitv.com", + "domain":"ott-firetv.tubitv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"titan.adrise.tv", + "domain":"titan.adrise.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.tubitv.com", + "domain":"www.tubitv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ads.adrise.tv", + "domain":"ads.adrise.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s.adrise.tv", + "domain":"s.adrise.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ott-androidtv.tubitv.com", + "domain":"ott-androidtv.tubitv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ott-xboxone.tubitv.com", + "domain":"ott-xboxone.tubitv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ott-sony.tubitv.com", + "domain":"ott-sony.tubitv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"gdpr.tubi.tv", + "domain":"gdpr.tubi.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ott-samsung.tubitv.com", + "domain":"ott-samsung.tubitv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"canvas-bridge.tubitv.com", + "domain":"canvas-bridge.tubitv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"canvas-bridge02.tubitv.com", + "domain":"canvas-bridge02.tubitv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ott-firetv-hyb.tubitv.com", + "domain":"ott-firetv-hyb.tubitv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"lb4.production-public.tubi.io", + "domain":"lb4.production-public.tubi.io", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tensor.production-public.tubi.io", + "domain":"tensor.production-public.tubi.io", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vod.fubotv.com.global.prod.fastly.net", + "domain":"vod.fubotv.com.global.prod.fastly.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.fubo.tv", + "domain":"api.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ak-cred-bein-us-en-stream.fubo.tv", + "domain":"ak-cred-bein-us-en-stream.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fubotv_live1-i.akamaihd.net", + "domain":"fubotv_live1-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ak-cred-bein-us-es-stream.fubo.tv", + "domain":"ak-cred-bein-us-es-stream.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ak-cred-goltv-us-en-stream.fubo.tv", + "domain":"ak-cred-goltv-us-en-stream.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ak-cred-fubotv-us-en-stream.fubo.tv", + "domain":"ak-cred-fubotv-us-en-stream.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fubotvuslive1-i.akamaihd.net", + "domain":"fubotvuslive1-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fuboptstream.global.ssl.fastly.net", + "domain":"fuboptstream.global.ssl.fastly.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fubotv.imgix.net", + "domain":"fubotv.imgix.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"securehls.fubo.tv", + "domain":"securehls.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fubo.auth0.com", + "domain":"fubo.auth0.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"playlist.fubo.tv", + "domain":"playlist.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"gcs-streams-prod.fubo.tv", + "domain":"gcs-streams-prod.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"player-config-prod.fubo.tv", + "domain":"player-config-prod.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"blue-midas.fubo.tv", + "domain":"blue-midas.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dvr.fubo.tv", + "domain":"dvr.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"playlist-nonlive.fubo.tv", + "domain":"playlist-nonlive.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"licensing.bitmovin.com", + "domain":"licensing.bitmovin.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.fubo.tv", + "domain":"www.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ws.peer5.com", + "domain":"ws.peer5.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"uhd-streams.fubo.tv", + "domain":"uhd-streams.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"force-upgrade.fubo.tv", + "domain":"force-upgrade.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"playlist-central.fubo.tv", + "domain":"playlist-central.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"blob-service-fastly-west.fubo.tv", + "domain":"blob-service-fastly-west.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"prod.fubo-tv.map.fastly.net", + "domain":"prod.fubo-tv.map.fastly.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"showtime-bmvn.fubo.tv", + "domain":"showtime-bmvn.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pr-keyos.licensekeyserver.com", + "domain":"pr-keyos.licensekeyserver.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"4k-streams-prod.fubo.tv", + "domain":"4k-streams-prod.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.foodnetwork.com", + "domain":"www.foodnetwork.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sni-vh.akamaihd.net", + "domain":"sni-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sni-i.akamaihd.net", + "domain":"sni-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"foodnetwork-i.akamaihd.net", + "domain":"foodnetwork-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"snihlsvod.scripps.com.edgesuite.net", + "domain":"snihlsvod.scripps.com.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"web.api.video.snidigital.com", + "domain":"web.api.video.snidigital.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"watch.foodnetwork.com", + "domain":"watch.foodnetwork.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"j.sni.global.fastly.net", + "domain":"j.sni.global.fastly.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"us1-prod.disco-api.com", + "domain":"us1-prod.disco-api.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"auth.watch.foodnetwork.com", + "domain":"auth.watch.foodnetwork.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"subber.viki.com", + "domain":"subber.viki.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"skydvn-sn-cdhls-prod.skydvn.com", + "domain":"skydvn-sn-cdhls-prod.skydvn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"poc-content.mobile-tv.sky.com", + "domain":"poc-content.mobile-tv.sky.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"skynewsamericas-sn-cdhls.ak-cdn.skydvn.com", + "domain":"skynewsamericas-sn-cdhls.ak-cdn.skydvn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"skynews-sn-cdhls.ak-cdn.skydvn.com", + "domain":"skynews-sn-cdhls.ak-cdn.skydvn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"skydvn-sn-mobile-prod.skydvn.com", + "domain":"skydvn-sn-mobile-prod.skydvn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"news.sky.com", + "domain":"news.sky.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"d301yv2uyy17su.cloudfront.net", + "domain":"d301yv2uyy17su.cloudfront.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear101-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear101-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear102-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear102-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear103-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear103-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear104-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear104-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear105-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear105-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear106-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear106-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear107-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear107-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear108-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear108-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear109-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear109-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear110-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear110-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear111-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear111-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear112-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear112-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear113-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear113-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear114-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear114-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear115-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear115-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear116-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear116-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear117-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear117-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear118-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear118-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear119-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear119-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear120-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear120-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear100-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear100-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear001-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear001-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear002-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear002-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear003-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear003-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear004-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear004-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear005-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear005-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear006-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear006-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear007-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear007-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear008-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear008-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear009-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear009-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear010-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear010-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear011-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear011-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear012-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear012-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear013-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear013-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear014-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear014-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear015-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear015-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear016-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear016-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear017-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear017-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear018-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear018-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear019-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear019-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear020-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear020-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear021-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear021-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear022-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear022-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear023-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear023-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear024-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear024-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear025-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear025-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear026-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear026-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear027-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear027-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear028-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear028-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear029-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear029-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear030-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear030-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear031-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear031-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear032-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear032-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear033-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear033-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear034-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear034-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear035-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear035-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear036-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear036-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear037-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear037-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear038-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear038-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear039-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear039-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear040-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear040-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear041-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear041-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear042-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear042-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear043-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear043-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear044-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear044-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear045-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear045-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear046-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear046-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear047-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear047-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear048-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear048-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear049-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear049-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear050-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear050-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear051-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear051-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear052-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear052-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear053-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear053-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear054-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear054-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear055-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear055-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear056-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear056-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear057-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear057-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear058-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear058-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear059-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear059-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear060-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear060-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear061-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear061-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear062-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear062-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear063-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear063-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear064-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear064-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear065-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear065-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear066-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear066-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear067-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear067-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear068-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear068-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear069-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear069-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear070-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear070-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear071-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear071-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear072-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear072-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear073-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear073-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear074-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear074-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear075-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear075-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear076-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear076-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear077-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear077-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear078-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear078-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear079-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear079-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear080-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear080-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear081-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear081-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear082-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear082-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear083-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear083-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear084-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear084-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear085-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear085-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear086-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear086-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear087-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear087-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear088-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear088-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear089-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear089-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear090-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear090-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear091-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear091-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear092-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear092-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear093-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear093-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear094-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear094-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear095-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear095-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear096-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear096-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear097-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear097-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear098-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear098-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear099-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear099-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"d1bj4v5rjwvoka.cloudfront.net", + "domain":"d1bj4v5rjwvoka.cloudfront.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"willow.tv", + "domain":"willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"willowfeedsv2.willow.tv", + "domain":"willowfeedsv2.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"akamaifeed1.willow.tv", + "domain":"akamaifeed1.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"akamaifeed2.willow.tv", + "domain":"akamaifeed2.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"akamaifeed3.willow.tv", + "domain":"akamaifeed3.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"akamaifeed4.willow.tv", + "domain":"akamaifeed4.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"akamaifeed5.willow.tv", + "domain":"akamaifeed5.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"akamaifeed6.willow.tv", + "domain":"akamaifeed6.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"akamaifeed7.willow.tv", + "domain":"akamaifeed7.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"akamaifeed8.willow.tv", + "domain":"akamaifeed8.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"atvapp.willow.tv", + "domain":"atvapp.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"atvappv2.willow.tv", + "domain":"atvappv2.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ws.willow.tv", + "domain":"ws.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"wlfeed2-lh.akamaihd.net", + "domain":"wlfeed2-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m.willow.tv", + "domain":"m.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"akvod160ws-vh.akamaihd.net", + "domain":"akvod160ws-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"akvod177w-vh.akamaihd.net", + "domain":"akvod177w-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"willowlive-i.akamaihd.net", + "domain":"willowlive-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"willowlive1-i.akamaihd.net", + "domain":"willowlive1-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"willowlive.akamaized.net", + "domain":"willowlive.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"willowtv-tavod160w.pc.cdn.bitgravity.com", + "domain":"willowtv-tavod160w.pc.cdn.bitgravity.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"willowtv-tavod177w.pc.cdn.bitgravity.com", + "domain":"willowtv-tavod177w.pc.cdn.bitgravity.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"er.knowledge.ca", + "domain":"er.knowledge.ca", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.knowledgekids.ca", + "domain":"www.knowledgekids.ca", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.eonline.com", + "domain":"www.eonline.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.pptv.com", + "domain":"www.pptv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tools.aplusapi.pptv.com", + "domain":"tools.aplusapi.pptv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"web-play.pptv.com", + "domain":"web-play.pptv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"web-play.pplive.cn", + "domain":"web-play.pplive.cn", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"epg.api.pptv.com", + "domain":"epg.api.pptv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"play.api.pptv.com", + "domain":"play.api.pptv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live.tv.sohu.com", + "domain":"live.tv.sohu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pad.tv.sohu.com", + "domain":"pad.tv.sohu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"my.tv.sohu.com", + "domain":"my.tv.sohu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"access.tv.sohu.com", + "domain":"access.tv.sohu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.tv.sohu.com", + "domain":"api.tv.sohu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m.tv.sohu.com", + "domain":"m.tv.sohu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tv.sohu.com", + "domain":"tv.sohu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"changyan.sohu.com", + "domain":"changyan.sohu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hui.sohu.com", + "domain":"hui.sohu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pv.sohu.com", + "domain":"pv.sohu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m.aty.sohu.com", + "domain":"m.aty.sohu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"img.m.tv.sohu.com", + "domain":"img.m.tv.sohu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hot.vrs.sohu.com", + "domain":"hot.vrs.sohu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"film.sohu.com", + "domain":"film.sohu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"css.tv.itc.cn", + "domain":"css.tv.itc.cn", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"js.tv.itc.cn", + "domain":"js.tv.itc.cn", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.letv.com", + "domain":"api.letv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hot.vrs.letv.com", + "domain":"hot.vrs.letv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live.gslb.letv.com", + "domain":"live.gslb.letv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"static.itv.letv.com", + "domain":"static.itv.letv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m.letv.com", + "domain":"m.letv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dynamic.app.m.letv.com", + "domain":"dynamic.app.m.letv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dynamic.meizi.app.m.letv.com", + "domain":"dynamic.meizi.app.m.letv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dynamic.search.app.m.letv.com", + "domain":"dynamic.search.app.m.letv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dynamic.live.app.m.letv.com", + "domain":"dynamic.live.app.m.letv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dynamic.meizi.app.m.letvapp.net", + "domain":"dynamic.meizi.app.m.letvapp.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.mob.app.letv.com", + "domain":"api.mob.app.letv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.letv.com", + "domain":"www.letv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.leletv.net", + "domain":"api.leletv.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.mod.app.leletv.net", + "domain":"api.mod.app.leletv.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.mob.app.letv.net", + "domain":"api.mob.app.letv.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"swebp2p.leletv.net", + "domain":"swebp2p.leletv.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dcvipall.leletv.net", + "domain":"dcvipall.leletv.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ark.letv.com", + "domain":"ark.letv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dynamic.user.app.m.letv.com", + "domain":"dynamic.user.app.m.letv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.lesports.com", + "domain":"api.lesports.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"u.api.lesports.com", + "domain":"u.api.lesports.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s.plcloud.music.qq.com", + "domain":"s.plcloud.music.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"i.y.qq.com", + "domain":"i.y.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vv.video.qq.com", + "domain":"vv.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tt.video.qq.com", + "domain":"tt.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ice.video.qq.com", + "domain":"ice.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tjsa.video.qq.com", + "domain":"tjsa.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"a10.video.qq.com", + "domain":"a10.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"xyy.video.qq.com", + "domain":"xyy.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vcq.video.qq.com", + "domain":"vcq.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vsh.video.qq.com", + "domain":"vsh.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vbj.video.qq.com", + "domain":"vbj.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"bobo.video.qq.com", + "domain":"bobo.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"flvs.video.qq.com", + "domain":"flvs.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"bkvv.video.qq.com", + "domain":"bkvv.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"info.zb.qq.com", + "domain":"info.zb.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zb.s.qq.com", + "domain":"zb.s.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aid.video.qq.com", + "domain":"aid.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aidbak.video.qq.com", + "domain":"aidbak.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pay.video.qq.com", + "domain":"pay.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"paybak.video.qq.com", + "domain":"paybak.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"3g.music.qq.com", + "domain":"3g.music.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mqqplayer.3g.qq.com", + "domain":"mqqplayer.3g.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"proxy.music.qq.com", + "domain":"proxy.music.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"proxymc.qq.com", + "domain":"proxymc.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sns.video.qq.com", + "domain":"sns.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"film.qq.com", + "domain":"film.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"y.qq.com", + "domain":"y.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"music.qq.com", + "domain":"music.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"music.tc.qq.com", + "domain":"music.tc.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"music.tcdn.qq.com", + "domain":"music.tcdn.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ssd.tc.qq.com", + "domain":"ssd.tc.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"node.video.qq.com", + "domain":"node.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tunnel.video.qq.com", + "domain":"tunnel.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vd.l.qq.com", + "domain":"vd.l.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"data.video.qiyi.com", + "domain":"data.video.qiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cache.video.qiyi.com", + "domain":"cache.video.qiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cache.vip.qiyi.com", + "domain":"cache.vip.qiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cache.m.iqiyi.com", + "domain":"cache.m.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"iplocation.geo.qiyi.com", + "domain":"iplocation.geo.qiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"imo.iqiyi.com", + "domain":"imo.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"qosp.iqiyi.com", + "domain":"qosp.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cook.ptqy.gitv.tv", + "domain":"cook.ptqy.gitv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"bi.ptqy.gitv.tv", + "domain":"bi.ptqy.gitv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"itv.video.ptqy.gitv.tv", + "domain":"itv.video.ptqy.gitv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pb.bi.gitv.tv", + "domain":"pb.bi.gitv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"flux.hcdn.ptqy.gitv.tv", + "domain":"flux.hcdn.ptqy.gitv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"act.vip.ptqy.gitv.tv", + "domain":"act.vip.ptqy.gitv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"policy.video.ptqy.gitv.tv", + "domain":"policy.video.ptqy.gitv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t7z.cupid.ptqy.gitv.tv", + "domain":"t7z.cupid.ptqy.gitv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cache.video.ptqy.gitv.tv", + "domain":"cache.video.ptqy.gitv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"kepler.ptqy.gitv.tv", + "domain":"kepler.ptqy.gitv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"puma-api.ptqy.gitv.tv", + "domain":"puma-api.ptqy.gitv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m.iqiyi.com", + "domain":"m.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m.iqiyipic.com", + "domain":"m.iqiyipic.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"static.iqiyi.com", + "domain":"static.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"security.iqiyi.com", + "domain":"security.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pub.m.iqiyi.com", + "domain":"pub.m.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cook.iqiyi.com", + "domain":"cook.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.vip.iqiyi.com", + "domain":"api.vip.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cmts.iqiyi.com", + "domain":"cmts.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"serv.vip.iqiyi.com", + "domain":"serv.vip.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"iqiyi.irs01.com", + "domain":"iqiyi.irs01.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nl-rcd.iqiyi.com", + "domain":"nl-rcd.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tracker-sns.iqiyi.com", + "domain":"tracker-sns.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"paopao.iqiyi.com", + "domain":"paopao.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"search.video.iqiyi.com", + "domain":"search.video.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"msgv6.qy.net", + "domain":"msgv6.qy.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"geo.js.kankan.xunlei.com", + "domain":"geo.js.kankan.xunlei.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ip.kankan.xunlei.com", + "domain":"ip.kankan.xunlei.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"flwww.b-ch.com", + "domain":"flwww.b-ch.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"bchvod-f.akamaihd.net", + "domain":"bchvod-f.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"bngnwww.b-ch.com", + "domain":"bngnwww.b-ch.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ais.channel4.com", + "domain":"ais.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"freesat.channel4.com", + "domain":"freesat.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"service.maxymiser.net", + "domain":"service.maxymiser.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn.appdynamics.com", + "domain":"cdn.appdynamics.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"col.eum-appdynamics.com", + "domain":"col.eum-appdynamics.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ak.live.hds.c4assets.com", + "domain":"ak.live.hds.c4assets.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"csm-e.cds1.yospace.com", + "domain":"csm-e.cds1.yospace.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ic.c4assets.com", + "domain":"ic.c4assets.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"webstat.channel4.com", + "domain":"webstat.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"4id.channel4.com", + "domain":"4id.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"apps.channel4.com", + "domain":"apps.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pandr.my.channel4.com", + "domain":"pandr.my.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"4od.my.channel4.com", + "domain":"4od.my.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fonts.channel4.com", + "domain":"fonts.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn.http.anno.channel4.com", + "domain":"cdn.http.anno.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cf.http.anno.channel4.com", + "domain":"cf.http.anno.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"monitor.channel4.com", + "domain":"monitor.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"channel4.com", + "domain":"channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"roku-p06.channel4.com", + "domain":"roku-p06.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"samsung.channel4.com", + "domain":"samsung.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c4appletv.2cnt.net", + "domain":"c4appletv.2cnt.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn.live.hls.c4assets.com", + "domain":"cdn.live.hls.c4assets.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cast-p06.channel4.com", + "domain":"cast-p06.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"go.sky.com", + "domain":"go.sky.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pc-wmv-skygo.vod.sky.com", + "domain":"pc-wmv-skygo.vod.sky.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"assets.mobile-tv.sky.com", + "domain":"assets.mobile-tv.sky.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"io-skygo.vod.sky.com", + "domain":"io-skygo.vod.sky.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live.skyanywhere.com", + "domain":"live.skyanywhere.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"skydvn-go-mobile-prod.skydvn.com", + "domain":"skydvn-go-mobile-prod.skydvn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"p.sky.com", + "domain":"p.sky.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"init.sky.com", + "domain":"init.sky.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"content.ott.sky.com", + "domain":"content.ott.sky.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sgwl.skyanywhere.com", + "domain":"sgwl.skyanywhere.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"epgservices.sky.com", + "domain":"epgservices.sky.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sky.com", + "domain":"sky.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"epgstatic.sky.com", + "domain":"epgstatic.sky.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"skyandroid.2cnt.net", + "domain":"skyandroid.2cnt.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"skysports4-go-hls.l3-cdn.skydvn.com", + "domain":"skysports4-go-hls.l3-cdn.skydvn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.skystore.com", + "domain":"www.skystore.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.tvplayer.com", + "domain":"www.tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvplayer.com", + "domain":"tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"lapi.cdn.tvplayer.com", + "domain":"lapi.cdn.tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"lapi.cdn.uk.tvplayer.com", + "domain":"lapi.cdn.uk.tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sapi.tvplayer.com", + "domain":"sapi.tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.prd.uk.tvplayer.com", + "domain":"api.prd.uk.tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ssapi.tvplayer.com", + "domain":"ssapi.tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.tvplayer.com", + "domain":"api.tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live.plus.tvplayer.com", + "domain":"live.plus.tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvos.tvplayer.com", + "domain":"tvos.tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"assets.tvplayer.com", + "domain":"assets.tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"assets.storage.uk.tvplayer.com", + "domain":"assets.storage.uk.tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"assets.storage.uk.tvplayer.com.s3.amazonaws.com", + "domain":"assets.storage.uk.tvplayer.com.s3.amazonaws.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"checkip.amazonaws.com", + "domain":"checkip.amazonaws.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"license.theoplayer.com", + "domain":"license.theoplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"essential.tvplayer.com", + "domain":"essential.tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pro.ip-api.com", + "domain":"pro.ip-api.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"plus-secondary.tvplayer.com", + "domain":"plus-secondary.tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vod.hds.plus.tvplayer.com", + "domain":"vod.hds.plus.tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"backend.dna-delivery.com", + "domain":"backend.dna-delivery.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live.tvplayer.com", + "domain":"live.tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live.tvpvideo.net", + "domain":"live.tvpvideo.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"simplestream.tvplayer.com", + "domain":"simplestream.tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startups.ss7.tv.s3.amazonaws.com", + "domain":"startups.ss7.tv.s3.amazonaws.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"v1-metadata.tvplayer-cdn.com", + "domain":"v1-metadata.tvplayer-cdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sport.bt.com", + "domain":"sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"be.avs.bt.com", + "domain":"be.avs.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1-btsport-live-hls-prod.akamaized.net", + "domain":"t1-btsport-live-hls-prod.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t2-btsport-live-hls-prod.akamaized.net", + "domain":"t2-btsport-live-hls-prod.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"btsportsvod-vh.akamaihd.net", + "domain":"btsportsvod-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"auth.sport.btcsp.co.uk", + "domain":"auth.sport.btcsp.co.uk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vodplay.sport.btcsp.co.uk", + "domain":"vodplay.sport.btcsp.co.uk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vod-bcdd-prod.bt.co.uk", + "domain":"vod-bcdd-prod.bt.co.uk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"assets.sport.bt.com", + "domain":"assets.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"liveplay.sport.btcsp.co.uk", + "domain":"liveplay.sport.btcsp.co.uk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t2btsportlivehlsprod-im-6dcb7394-002020-btgrpvideo.s.loris.llnwd.net", + "domain":"t2btsportlivehlsprod-im-6dcb7394-002020-btgrpvideo.s.loris.llnwd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"event.vision.bt.com", + "domain":"event.vision.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"epg.sport.bt.com", + "domain":"epg.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"metadata.sport.bt.com", + "domain":"metadata.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t2btsportlivehlsprod-im-4df77d58-002020-btgrpvideo.s.loris.llnwd.net", + "domain":"t2btsportlivehlsprod-im-4df77d58-002020-btgrpvideo.s.loris.llnwd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1btsportlivehlsprod-im-4df77d58-002020-btgrpvideo.s.loris.llnwd.net", + "domain":"t1btsportlivehlsprod-im-4df77d58-002020-btgrpvideo.s.loris.llnwd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"samlfed.bt.com", + "domain":"samlfed.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"strongauth.secure.bt.com", + "domain":"strongauth.secure.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-bts1-euwe2.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-bts1-euwe2.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-bts2-euwe2.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-bts2-euwe2.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"se1-t2-btsport-vod-i-azams.akamaized.net", + "domain":"se1-t2-btsport-vod-i-azams.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-bts3-euwe2.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-bts3-euwe2.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-btsespn-euwe2.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-btsespn-euwe2.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-boxnation-euwe2.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-boxnation-euwe2.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-btse1-euwe2.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-btse1-euwe2.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-btse2-euwe2.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-btse2-euwe2.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-btse3-euwe2.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-btse3-euwe2.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-btse4-euwe2.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-btse4-euwe2.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-btse5-euwe2.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-btse5-euwe2.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-btse6-euwe2.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-btse6-euwe2.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-bts1-euwe1.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-bts1-euwe1.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-bts2-euwe1.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-bts2-euwe1.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-bts3-euwe1.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-bts3-euwe1.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-btsespn-euwe.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-btsespn-euwe.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-boxnation-euwe1.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-boxnation-euwe1.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-btse1-euwe1.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-btse1-euwe1.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-btse2-euwe1.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-btse2-euwe1.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-btse3-euwe1.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-btse3-euwe1.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-btse4-euwe1.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-btse4-euwe1.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-btse5-euwe1.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-btse5-euwe1.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-btse6-euwe1.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-btse6-euwe1.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-btsespn-euwe1.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-btsespn-euwe1.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.eurosportplayer.de", + "domain":"www.eurosportplayer.de", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.eurosportplayer.com", + "domain":"www.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.eurosportplayer.co.uk", + "domain":"www.eurosportplayer.co.uk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"videoshop.ext.ws.eurosport.com", + "domain":"videoshop.ext.ws.eurosport.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.eurosportplayer.pl", + "domain":"www.eurosportplayer.pl", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.eurosportplayer.se", + "domain":"www.eurosportplayer.se", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.eurosportplayer.nl", + "domain":"www.eurosportplayer.nl", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.eurosportplayer.no", + "domain":"www.eurosportplayer.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.eurosportplayer.ro", + "domain":"www.eurosportplayer.ro", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ru.eurosportplayer.com", + "domain":"ru.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"no.eurosportplayer.com", + "domain":"no.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pl.eurosportplayer.com", + "domain":"pl.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nl.eurosportplayer.com", + "domain":"nl.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ro.eurosportplayer.com", + "domain":"ro.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"uk.eurosportplayer.com", + "domain":"uk.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"se.eurosportplayer.com", + "domain":"se.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"eurosport-live-poland.akamaized.net", + "domain":"eurosport-live-poland.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"de.eurosportplayer.com", + "domain":"de.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"eurosport-live-germany.akamaized.net", + "domain":"eurosport-live-germany.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"videoshop-partners.eurosportplayer.com", + "domain":"videoshop-partners.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"crm-partners.eurosportplayer.com", + "domain":"crm-partners.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"asia.eurosport.com", + "domain":"asia.eurosport.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"gb.eurosportplayer.com", + "domain":"gb.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cz.eurosportplayer.com", + "domain":"cz.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"search-api.svcs.eurosportplayer.com", + "domain":"search-api.svcs.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"global-api.svcs.eurosportplayer.com", + "domain":"global-api.svcs.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hu.eurosportplayer.com", + "domain":"hu.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlsevent-aksc.ams1.media.eurosportplayer.com", + "domain":"hlsevent-aksc.ams1.media.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlslinear-aksc.ams1.media.eurosportplayer.com", + "domain":"hlslinear-aksc.ams1.media.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cpe-prod.eurosportstatic.com", + "domain":"cpe-prod.eurosportstatic.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"bam-sdk-configs.mlbam.net", + "domain":"bam-sdk-configs.mlbam.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.permutive.com", + "domain":"api.permutive.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hermes-tokenservice.svcs.eurosportplayer.com", + "domain":"hermes-tokenservice.svcs.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn.permutive.com", + "domain":"cdn.permutive.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlslinear-l3c.ams1.media.eurosportplayer.com", + "domain":"hlslinear-l3c.ams1.media.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"eu.edge.bamgrid.com", + "domain":"eu.edge.bamgrid.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.eurosportstatic.com", + "domain":"www.eurosportstatic.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"eurosport-dlvr-ott.akamaized.net", + "domain":"eurosport-dlvr-ott.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"eu3-prod.disco-api.com", + "domain":"eu3-prod.disco-api.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"iphone.eurosport.com", + "domain":"iphone.eurosport.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"netsport.eurosport.io", + "domain":"netsport.eurosport.io", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"eu3-prod-direct.eurosport.co.uk", + "domain":"eu3-prod-direct.eurosport.co.uk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"eurosport-dlvr-ott-vod.akamaized.net", + "domain":"eurosport-dlvr-ott-vod.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"web-api.eurosport.com", + "domain":"web-api.eurosport.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.eurosport.co.uk", + "domain":"www.eurosport.co.uk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ssa.eurosportplayer.com", + "domain":"ssa.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"auth.eurosportplayer.com", + "domain":"auth.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fire.player.stv.tv", + "domain":"fire.player.stv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.stv.tv", + "domain":"api.stv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"player.stv.tv", + "domain":"player.stv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"uk-dev-stv.videoplaza.tv", + "domain":"uk-dev-stv.videoplaza.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"http.player-cdn.stv.tv", + "domain":"http.player-cdn.stv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"player.api.stv.tv", + "domain":"player.api.stv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"stv-ak.cds1.yospace.com", + "domain":"stv-ak.cds1.yospace.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlsscottishtv-a.akamaihd.net", + "domain":"hlsscottishtv-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ssp.videoplaza.tv", + "domain":"ssp.videoplaza.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"freesat.player.stv.tv", + "domain":"freesat.player.stv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"files.stv.tv", + "domain":"files.stv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"files.prod.stv.tv", + "domain":"files.prod.stv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"edge.api.brightcove.com", + "domain":"edge.api.brightcove.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"stv1yospace-a.akamaihd.net", + "domain":"stv1yospace-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"stv2yospace-a.akamaihd.net", + "domain":"stv2yospace-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"bcboltstv-a.akamaihd.net", + "domain":"bcboltstv-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"stv1yospaceint-a.akamaihd.net", + "domain":"stv1yospaceint-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.tv3.ie", + "domain":"www.tv3.ie", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ak.tv3.ooyala.com", + "domain":"ak.tv3.ooyala.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.virginmediatelevision.ie", + "domain":"www.virginmediatelevision.ie", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"virginmediatelevision.ie", + "domain":"virginmediatelevision.ie", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.zattoo.com", + "domain":"www.zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"iphone.zattoo.com", + "domain":"iphone.zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"watch.wilmaa.com", + "domain":"watch.wilmaa.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.wilmaa.com", + "domain":"www.wilmaa.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"data.wilmaa.com", + "domain":"data.wilmaa.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tele-vh.akamaihd.net", + "domain":"tele-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p100.edgesuite.net", + "domain":"c001.p100.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p101.edgesuite.net", + "domain":"c001.p101.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p102.edgesuite.net", + "domain":"c001.p102.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p103.edgesuite.net", + "domain":"c001.p103.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p104.edgesuite.net", + "domain":"c001.p104.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p105.edgesuite.net", + "domain":"c001.p105.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p106.edgesuite.net", + "domain":"c001.p106.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p107.edgesuite.net", + "domain":"c001.p107.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p108.edgesuite.net", + "domain":"c001.p108.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p109.edgesuite.net", + "domain":"c001.p109.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p110.edgesuite.net", + "domain":"c001.p110.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p111.edgesuite.net", + "domain":"c001.p111.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p112.edgesuite.net", + "domain":"c001.p112.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p113.edgesuite.net", + "domain":"c001.p113.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p114.edgesuite.net", + "domain":"c001.p114.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p115.edgesuite.net", + "domain":"c001.p115.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p116.edgesuite.net", + "domain":"c001.p116.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p117.edgesuite.net", + "domain":"c001.p117.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p118.edgesuite.net", + "domain":"c001.p118.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p119.edgesuite.net", + "domain":"c001.p119.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p120.edgesuite.net", + "domain":"c001.p120.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p121.edgesuite.net", + "domain":"c001.p121.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p122.edgesuite.net", + "domain":"c001.p122.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p123.edgesuite.net", + "domain":"c001.p123.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p124.edgesuite.net", + "domain":"c001.p124.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p125.edgesuite.net", + "domain":"c001.p125.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"movies.wilmaa.com", + "domain":"movies.wilmaa.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-hds-live.zahs.tv", + "domain":"zba2-0-hds-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-0-hds-live.zahs.tv", + "domain":"zba1-0-hds-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-hds-live.zahs.tv", + "domain":"zba2-1-hds-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-hls-live.zahs.tv", + "domain":"zba2-1-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-hls-live.zahs.tv", + "domain":"zba1-1-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-0-hls-live.zahs.tv", + "domain":"zba1-0-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-hds-pvr.zahs.tv", + "domain":"zba2-1-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-hds-pvr.zahs.tv", + "domain":"zba1-1-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-hds-pvr.zahs.tv", + "domain":"zba2-0-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-0-hds-pvr.zahs.tv", + "domain":"zba1-0-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-hls-pvr.zahs.tv", + "domain":"zba1-1-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-hls-pvr.zahs.tv", + "domain":"zba2-0-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-ss-live.zahs.tv", + "domain":"zba2-0-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-ss-live.zahs.tv", + "domain":"zba2-1-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-0-ss-live.zahs.tv", + "domain":"zba1-0-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-ss-live.zahs.tv", + "domain":"zba1-1-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-hls-live.zahs.tv", + "domain":"zba2-0-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-dash-live.zahs.tv", + "domain":"zba1-1-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-dash-live.zahs.tv", + "domain":"zba2-1-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-hds-live.zahs.tv", + "domain":"zba1-1-hds-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-ss-vod.zahs.tv", + "domain":"zba2-1-ss-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-ss-vod.zahs.tv", + "domain":"zba1-1-ss-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-ss-vod.zahs.tv", + "domain":"zba2-0-ss-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-ss-pvr.zahs.tv", + "domain":"zba2-1-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-ss-pvr.zahs.tv", + "domain":"zba2-0-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-ss-pvr.zahs.tv", + "domain":"zba1-1-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-0-ss-pvr.zahs.tv", + "domain":"zba1-0-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-dash-live.zahs.tv", + "domain":"zba2-0-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-0-dash-live.zahs.tv", + "domain":"zba1-0-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-hls5-live.zahs.tv", + "domain":"zba2-0-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-0-hls5-live.zahs.tv", + "domain":"zba1-0-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-hls5-live.zahs.tv", + "domain":"zba2-1-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-hls5-live.zahs.tv", + "domain":"zba1-1-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"1und1-fra1902-1-ss-live.zahs.tv", + "domain":"1und1-fra1902-1-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"1und1-fra1902-2-ss-live.zahs.tv", + "domain":"1und1-fra1902-2-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"blue.ch", + "domain":"blue.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tv.blue.ch", + "domain":"tv.blue.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"*.blue.ch", + "domain":"*.blue.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"services.sg101.prd.sctv.ch", + "domain":"services.sg101.prd.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvhosa-pez0315.sctv.ch", + "domain":"tvhosa-pez0315.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sctv.ch", + "domain":"sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"*.sctv.ch", + "domain":"*.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-hls5-pvr.zahs.tv", + "domain":"zba2-1-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-hls5-pvr.zahs.tv", + "domain":"zba1-1-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-hls5-pvr.zahs.tv", + "domain":"zba2-0-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-0-hls5-pvr.zahs.tv", + "domain":"zba1-0-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-hls5enc-vod.zahs.tv", + "domain":"zba2-0-hls5enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-hls5enc-vod.zahs.tv", + "domain":"zba2-1-hls5enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-0-hls5enc-vod.zahs.tv", + "domain":"zba1-0-hls5enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-hls5enc-vod.zahs.tv", + "domain":"zba1-1-hls5enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"teleboy.wemfbox.ch", + "domain":"teleboy.wemfbox.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p100.edgesuite.net", + "domain":"c005.p100.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p101.edgesuite.net", + "domain":"c005.p101.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p102.edgesuite.net", + "domain":"c005.p102.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p103.edgesuite.net", + "domain":"c005.p103.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p104.edgesuite.net", + "domain":"c005.p104.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p105.edgesuite.net", + "domain":"c005.p105.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p106.edgesuite.net", + "domain":"c005.p106.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p107.edgesuite.net", + "domain":"c005.p107.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p108.edgesuite.net", + "domain":"c005.p108.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p109.edgesuite.net", + "domain":"c005.p109.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p110.edgesuite.net", + "domain":"c005.p110.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p111.edgesuite.net", + "domain":"c005.p111.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p112.edgesuite.net", + "domain":"c005.p112.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p113.edgesuite.net", + "domain":"c005.p113.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p114.edgesuite.net", + "domain":"c005.p114.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p115.edgesuite.net", + "domain":"c005.p115.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p116.edgesuite.net", + "domain":"c005.p116.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p117.edgesuite.net", + "domain":"c005.p117.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p118.edgesuite.net", + "domain":"c005.p118.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p119.edgesuite.net", + "domain":"c005.p119.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p120.edgesuite.net", + "domain":"c005.p120.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p121.edgesuite.net", + "domain":"c005.p121.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p122.edgesuite.net", + "domain":"c005.p122.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p123.edgesuite.net", + "domain":"c005.p123.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p124.edgesuite.net", + "domain":"c005.p124.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p125.edgesuite.net", + "domain":"c005.p125.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-hls5-live.zahs.tv", + "domain":"zba2-3-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-3-hls5-live.zahs.tv", + "domain":"zba1-3-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-hls5-live.zahs.tv", + "domain":"zba2-2-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-hls5-live.zahs.tv", + "domain":"zba1-2-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-hls-live.zahs.tv", + "domain":"zba2-3-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-3-hls-live.zahs.tv", + "domain":"zba1-3-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-hls-live.zahs.tv", + "domain":"zba2-2-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-hls-live.zahs.tv", + "domain":"zba1-2-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-hls5-vod.zahs.tv", + "domain":"zba2-0-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-0-hls5-vod.zahs.tv", + "domain":"zba1-0-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-hls5-vod.zahs.tv", + "domain":"zba1-2-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-hls5-vod.zahs.tv", + "domain":"zba2-2-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-3-hls5-vod.zahs.tv", + "domain":"zba1-3-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-hls5-vod.zahs.tv", + "domain":"zba2-3-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-hds-live.zahs.tv", + "domain":"zba2-3-hds-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-3-hds-live.zahs.tv", + "domain":"zba1-3-hds-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-hds-live.zahs.tv", + "domain":"zba2-2-hds-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-hds-live.zahs.tv", + "domain":"zba1-2-hds-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-0-hds-vod.zahs.tv", + "domain":"zba1-0-hds-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-hds-vod.zahs.tv", + "domain":"zba1-1-hds-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-hds-vod.zahs.tv", + "domain":"zba1-2-hds-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-3-hds-vod.zahs.tv", + "domain":"zba1-3-hds-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-hds-vod.zahs.tv", + "domain":"zba2-0-hds-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-hds-vod.zahs.tv", + "domain":"zba2-1-hds-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-hds-vod.zahs.tv", + "domain":"zba2-2-hds-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-hds-vod.zahs.tv", + "domain":"zba2-3-hds-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-hls5-pvr.zahs.tv", + "domain":"zba2-3-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-3-hls5-pvr.zahs.tv", + "domain":"zba1-3-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-0-dash-vod.zahs.tv", + "domain":"zba1-0-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-dash-vod.zahs.tv", + "domain":"zba1-1-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-dash-vod.zahs.tv", + "domain":"zba1-2-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-3-dash-vod.zahs.tv", + "domain":"zba1-3-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-dash-vod.zahs.tv", + "domain":"zba2-0-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-dash-vod.zahs.tv", + "domain":"zba2-1-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-dash-vod.zahs.tv", + "domain":"zba2-2-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-dash-vod.zahs.tv", + "domain":"zba2-3-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-dash-pvr.zahs.tv", + "domain":"zba1-1-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-0-dash-pvr.zahs.tv", + "domain":"zba1-0-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-dash-pvr.zahs.tv", + "domain":"zba1-2-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-3-dash-pvr.zahs.tv", + "domain":"zba1-3-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-dash-pvr.zahs.tv", + "domain":"zba2-0-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-dash-pvr.zahs.tv", + "domain":"zba2-1-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-dash-pvr.zahs.tv", + "domain":"zba2-2-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-dash-pvr.zahs.tv", + "domain":"zba2-3-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-dash-live.zahs.tv", + "domain":"zba2-2-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-dash-live.zahs.tv", + "domain":"zba2-3-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-dash-live.zahs.tv", + "domain":"zba1-2-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-3-dash-live.zahs.tv", + "domain":"zba1-3-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-hds-pvr.zahs.tv", + "domain":"zba1-2-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-3-hds-pvr.zahs.tv", + "domain":"zba1-3-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-hds-pvr.zahs.tv", + "domain":"zba2-2-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-hds-pvr.zahs.tv", + "domain":"zba2-3-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-hls-pvr.zahs.tv", + "domain":"zba2-1-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-hls-pvr.zahs.tv", + "domain":"zba2-2-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-hls-pvr.zahs.tv", + "domain":"zba2-3-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-hls-pvr.zahs.tv", + "domain":"zba1-2-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-3-hls-pvr.zahs.tv", + "domain":"zba1-3-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-hds-live.zahs.tv", + "domain":"zh2-4-hds-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-hds-live.zahs.tv", + "domain":"zh2-3-hds-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-hds-live.zahs.tv", + "domain":"zh2-2-hds-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-hds-live.zahs.tv", + "domain":"zh2-1-hds-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-hls-live.zahs.tv", + "domain":"zh2-4-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-hls-live.zahs.tv", + "domain":"zh2-3-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-hls-live.zahs.tv", + "domain":"zh2-2-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-hls-live.zahs.tv", + "domain":"zh2-1-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-hds-pvr.zahs.tv", + "domain":"zh2-4-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-hds-pvr.zahs.tv", + "domain":"zh2-3-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-hds-pvr.zahs.tv", + "domain":"zh2-2-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-hds-pvr.zahs.tv", + "domain":"zh2-1-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-hds-pvr.zahs.tv", + "domain":"zh2-0-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-hds-vod.zahs.tv", + "domain":"zh2-4-hds-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-hds-vod.zahs.tv", + "domain":"zh2-3-hds-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-hds-vod.zahs.tv", + "domain":"zh2-2-hds-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-hds-vod.zahs.tv", + "domain":"zh2-1-hds-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-hds-vod.zahs.tv", + "domain":"zh2-0-hds-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-hls5-live.zahs.tv", + "domain":"zh2-4-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-hls5-live.zahs.tv", + "domain":"zh2-3-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-hls5-live.zahs.tv", + "domain":"zh2-2-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-hls5-live.zahs.tv", + "domain":"zh2-1-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-hls5-live.zahs.tv", + "domain":"zh2-0-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-hls5-pvr.zahs.tv", + "domain":"zh2-4-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-hls5-pvr.zahs.tv", + "domain":"zh2-3-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-hls5-pvr.zahs.tv", + "domain":"zh2-2-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-hls5-pvr.zahs.tv", + "domain":"zh2-1-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-hls5-pvr.zahs.tv", + "domain":"zh2-0-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-hls5enc-vod.zahs.tv", + "domain":"zh2-4-hls5enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-hls5enc-vod.zahs.tv", + "domain":"zh2-3-hls5enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-hls5enc-vod.zahs.tv", + "domain":"zh2-2-hls5enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-hls5enc-vod.zahs.tv", + "domain":"zh2-1-hls5enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-hls5enc-vod.zahs.tv", + "domain":"zh2-0-hls5enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-hls-live.zahs.tv", + "domain":"zh2-0-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-hls-vod.zahs.tv", + "domain":"zh2-4-hls-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-hls-vod.zahs.tv", + "domain":"zh2-3-hls-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-hls-vod.zahs.tv", + "domain":"zh2-2-hls-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-hls-vod.zahs.tv", + "domain":"zh2-1-hls-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-hls-vod.zahs.tv", + "domain":"zh2-0-hls-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-dash-live.zahs.tv", + "domain":"zh2-4-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-dash-live.zahs.tv", + "domain":"zh2-3-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-dash-live.zahs.tv", + "domain":"zh2-2-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-dash-live.zahs.tv", + "domain":"zh2-1-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-dash-live.zahs.tv", + "domain":"zh2-0-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-dash-pvr.zahs.tv", + "domain":"zh2-3-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-dash-pvr.zahs.tv", + "domain":"zh2-2-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-dash-pvr.zahs.tv", + "domain":"zh2-1-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-dash-pvr.zahs.tv", + "domain":"zh2-0-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-dash-vod.zahs.tv", + "domain":"zh2-4-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-dash-vod.zahs.tv", + "domain":"zh2-3-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-dash-vod.zahs.tv", + "domain":"zh2-2-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-dash-vod.zahs.tv", + "domain":"zh2-1-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-dash-vod.zahs.tv", + "domain":"zh2-0-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-hls-pvr.zahs.tv", + "domain":"zh2-0-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-hls-pvr.zahs.tv", + "domain":"zh2-1-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-hls-pvr.zahs.tv", + "domain":"zh2-2-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-hls-pvr.zahs.tv", + "domain":"zh2-3-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-hls-pvr.zahs.tv", + "domain":"zh2-4-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p126.edgesuite.net", + "domain":"c005.p126.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p127.edgesuite.net", + "domain":"c005.p127.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p128.edgesuite.net", + "domain":"c005.p128.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p129.edgesuite.net", + "domain":"c005.p129.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p130.edgesuite.net", + "domain":"c005.p130.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p131.edgesuite.net", + "domain":"c005.p131.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p132.edgesuite.net", + "domain":"c005.p132.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p133.edgesuite.net", + "domain":"c005.p133.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zattoo-hls5-live.akamaized.net", + "domain":"zattoo-hls5-live.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zattoo-hls-live.akamaized.net", + "domain":"zattoo-hls-live.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-hls-pvr.zahs.tv", + "domain":"zh2-5-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-hls-pvr.zahs.tv", + "domain":"zh2-6-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-dash-vod.zahs.tv", + "domain":"zh2-5-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-dash-vod.zahs.tv", + "domain":"zh2-6-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-dash-pvr.zahs.tv", + "domain":"zh2-5-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-dash-live.zahs.tv", + "domain":"zh2-5-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-dash-live.zahs.tv", + "domain":"zh2-6-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-hls-vod.zahs.tv", + "domain":"zh2-5-hls-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-hls-vod.zahs.tv", + "domain":"zh2-6-hls-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-hls-live.zahs.tv", + "domain":"zh2-5-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-hls-live.zahs.tv", + "domain":"zh2-6-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-hds-live.zahs.tv", + "domain":"zh2-5-hds-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-hds-live.zahs.tv", + "domain":"zh2-6-hds-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zattoo-hds-live.akamaized.net", + "domain":"zattoo-hds-live.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-hls5-live.zahs.tv", + "domain":"zh2-5-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-hls5-live.zahs.tv", + "domain":"zh2-6-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-ss-vod.zahs.tv", + "domain":"zh2-6-ss-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-ss-vod.zahs.tv", + "domain":"zh2-5-ss-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-ss-vod.zahs.tv", + "domain":"zh2-4-ss-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-ss-vod.zahs.tv", + "domain":"zh2-3-ss-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-ss-vod.zahs.tv", + "domain":"zh2-2-ss-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-ss-vod.zahs.tv", + "domain":"zh2-1-ss-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-ss-vod.zahs.tv", + "domain":"zh2-0-ss-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-ss-pvr.zahs.tv", + "domain":"zh2-6-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-ss-pvr.zahs.tv", + "domain":"zh2-5-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-ss-pvr.zahs.tv", + "domain":"zh2-4-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-ss-pvr.zahs.tv", + "domain":"zh2-3-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-ss-pvr.zahs.tv", + "domain":"zh2-2-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-ss-pvr.zahs.tv", + "domain":"zh2-1-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-ss-pvr.zahs.tv", + "domain":"zh2-0-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-sspr-pvr.zahs.tv", + "domain":"zh2-0-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-sspr-pvr.zahs.tv", + "domain":"zh2-1-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-sspr-pvr.zahs.tv", + "domain":"zh2-2-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-sspr-pvr.zahs.tv", + "domain":"zh2-3-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-sspr-pvr.zahs.tv", + "domain":"zh2-4-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-sspr-pvr.zahs.tv", + "domain":"zh2-5-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-sspr-pvr.zahs.tv", + "domain":"zh2-6-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-sspr-live.zahs.tv", + "domain":"zh2-0-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-sspr-live.zahs.tv", + "domain":"zh2-1-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-sspr-live.zahs.tv", + "domain":"zh2-2-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-sspr-live.zahs.tv", + "domain":"zh2-3-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-sspr-live.zahs.tv", + "domain":"zh2-4-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-sspr-live.zahs.tv", + "domain":"zh2-5-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-sspr-live.zahs.tv", + "domain":"zh2-6-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-0-sspr-pvr.zahs.tv", + "domain":"zba1-0-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-sspr-pvr.zahs.tv", + "domain":"zba1-1-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-sspr-pvr.zahs.tv", + "domain":"zba1-2-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-3-sspr-pvr.zahs.tv", + "domain":"zba1-3-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-sspr-pvr.zahs.tv", + "domain":"zba2-0-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-sspr-pvr.zahs.tv", + "domain":"zba2-1-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-sspr-pvr.zahs.tv", + "domain":"zba2-2-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-sspr-pvr.zahs.tv", + "domain":"zba2-3-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-0-sspr-live.zahs.tv", + "domain":"zba1-0-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-sspr-live.zahs.tv", + "domain":"zba1-1-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-sspr-live.zahs.tv", + "domain":"zba1-2-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-3-sspr-live.zahs.tv", + "domain":"zba1-3-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-sspr-live.zahs.tv", + "domain":"zba2-0-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-sspr-live.zahs.tv", + "domain":"zba2-1-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-sspr-live.zahs.tv", + "domain":"zba2-2-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-sspr-live.zahs.tv", + "domain":"zba2-3-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-hds-pvr.zahs.tv", + "domain":"zh2-5-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"download.zattoo.com", + "domain":"download.zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"logos.zattic.com", + "domain":"logos.zattic.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"wilmaa.customers.cdn.iptv.ch", + "domain":"wilmaa.customers.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-hls5enc-vod.zahs.tv", + "domain":"zh2-6-hls5enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-hls5enc-vod.zahs.tv", + "domain":"zh2-5-hls5enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-hls5-vod.zahs.tv", + "domain":"zh2-4-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-hls5-vod.zahs.tv", + "domain":"zh2-5-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-hls5-vod.zahs.tv", + "domain":"zh2-6-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-hls5-vod.zahs.tv", + "domain":"zh2-1-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-hls5-vod.zahs.tv", + "domain":"zh2-2-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-hls5-vod.zahs.tv", + "domain":"zh2-3-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-sspr-vod.zahs.tv", + "domain":"zh2-0-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-sspr-vod.zahs.tv", + "domain":"zh2-1-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-sspr-vod.zahs.tv", + "domain":"zh2-2-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-sspr-vod.zahs.tv", + "domain":"zh2-3-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-sspr-vod.zahs.tv", + "domain":"zh2-4-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-sspr-vod.zahs.tv", + "domain":"zh2-5-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-sspr-vod.zahs.tv", + "domain":"zh2-6-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-hls5-vod.zahs.tv", + "domain":"zh2-0-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zattoo.wemfbox.ch", + "domain":"zattoo.wemfbox.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"wilmaatv-144447995.eu-west-1.elb.amazonaws.com", + "domain":"wilmaatv-144447995.eu-west-1.elb.amazonaws.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlsbroker.api.iptv.ch", + "domain":"hlsbroker.api.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"multiscreencache.tvbackbone.com", + "domain":"multiscreencache.tvbackbone.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-hls5-live.zahs.tv", + "domain":"zh2-8-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-hls5-live.zahs.tv", + "domain":"zh2-7-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-hls5-vod.zahs.tv", + "domain":"zh2-7-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-hls5-vod.zahs.tv", + "domain":"zh2-8-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-sspr-vod.zahs.tv", + "domain":"zh2-7-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-sspr-vod.zahs.tv", + "domain":"zh2-8-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-hds-pvr.zahs.tv", + "domain":"zh2-6-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-hds-pvr.zahs.tv", + "domain":"zh2-7-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-hds-pvr.zahs.tv", + "domain":"zh2-8-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-hls-live.zahs.tv", + "domain":"zh2-7-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-hls-live.zahs.tv", + "domain":"zh2-8-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-dash-live.zahs.tv", + "domain":"zh2-7-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-dash-live.zahs.tv", + "domain":"zh2-8-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-hls5-pvr.zahs.tv", + "domain":"zh2-6-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-hls5-pvr.zahs.tv", + "domain":"zh2-7-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-hls5-pvr.zahs.tv", + "domain":"zh2-8-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-ss-pvr.zahs.tv", + "domain":"zba1-2-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-ss-pvr.zahs.tv", + "domain":"zba2-2-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zpush.zattoo.com", + "domain":"zpush.zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-3-ss-pvr.zahs.tv", + "domain":"zba1-3-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-ss-pvr.zahs.tv", + "domain":"zba2-3-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-ss-pvr.zahs.tv", + "domain":"zh2-7-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-ss-pvr.zahs.tv", + "domain":"zh2-8-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-0-sspr-vod.zahs.tv", + "domain":"zba1-0-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-sspr-vod.zahs.tv", + "domain":"zba1-1-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-sspr-vod.zahs.tv", + "domain":"zba1-2-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-sspr-vod.zahs.tv", + "domain":"zba2-0-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-sspr-vod.zahs.tv", + "domain":"zba2-1-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-sspr-vod.zahs.tv", + "domain":"zba2-2-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-hls5enc-vod.zahs.tv", + "domain":"zba1-2-hls5enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-3-hls5enc-vod.zahs.tv", + "domain":"zba1-3-hls5enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-hls5enc-vod.zahs.tv", + "domain":"zba2-2-hls5enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-hls5enc-vod.zahs.tv", + "domain":"zba2-3-hls5enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-ss-live.zahs.tv", + "domain":"zh2-0-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-ss-live.zahs.tv", + "domain":"zh2-1-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-ss-live.zahs.tv", + "domain":"zh2-2-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-ss-live.zahs.tv", + "domain":"zh2-3-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-ss-live.zahs.tv", + "domain":"zh2-4-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-ss-live.zahs.tv", + "domain":"zh2-5-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-ss-live.zahs.tv", + "domain":"zh2-6-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-ss-live.zahs.tv", + "domain":"zh2-7-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-ss-live.zahs.tv", + "domain":"zba1-2-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-3-ss-live.zahs.tv", + "domain":"zba1-3-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-ss-live.zahs.tv", + "domain":"zba2-2-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-ss-live.zahs.tv", + "domain":"zba2-3-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-hls5-pvr.zahs.tv", + "domain":"zba1-2-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-hls5-pvr.zahs.tv", + "domain":"zba2-2-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-dash-pvr.zahs.tv", + "domain":"zh2-6-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-dash-pvr.zahs.tv", + "domain":"zh2-7-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-dash-pvr.zahs.tv", + "domain":"zh2-8-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-ss-live.zahs.tv", + "domain":"zh2-8-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1019-1-137.cdn.iptv.ch", + "domain":"s1019-1-137.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1042-0-136.cdn.iptv.ch", + "domain":"s1042-0-136.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1042-1-137.cdn.iptv.ch", + "domain":"s1042-1-137.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1019-0-136.cdn.iptv.ch", + "domain":"s1019-0-136.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1016-1-137.cdn.iptv.ch", + "domain":"s1016-1-137.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-hls5enc-live.zahs.tv", + "domain":"zba2-0-hls5enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-hls5enc-live.zahs.tv", + "domain":"zba2-1-hls5enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-hls5enc-live.zahs.tv", + "domain":"zba2-2-hls5enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-hls5enc-live.zahs.tv", + "domain":"zba2-3-hls5enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1018-1-137.cdn.iptv.ch", + "domain":"s1018-1-137.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1018-0-136.cdn.iptv.ch", + "domain":"s1018-0-136.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1016-0-136.cdn.iptv.ch", + "domain":"s1016-0-136.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1020-0-136.cdn.iptv.ch", + "domain":"s1020-0-136.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1020-1-137.cdn.iptv.ch", + "domain":"s1020-1-137.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1021-1-137.cdn.iptv.ch", + "domain":"s1021-1-137.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1041-1-137.cdn.iptv.ch", + "domain":"s1041-1-137.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1021-0-136.cdn.iptv.ch", + "domain":"s1021-0-136.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1041-0-136.cdn.iptv.ch", + "domain":"s1041-0-136.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"app.wilmaa.com", + "domain":"app.wilmaa.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"*.wilmaa.com", + "domain":"*.wilmaa.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"*.zahs.tv", + "domain":"*.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"*.zattoo.com", + "domain":"*.zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-dash-live.zahs.tv", + "domain":"fr5-1-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-dash-live.zahs.tv", + "domain":"fr5-2-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-dash-live.zahs.tv", + "domain":"fr5-3-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-dash-live.zahs.tv", + "domain":"fr5-4-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-dash-live.zahs.tv", + "domain":"fr5-5-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"resources.wilmaa.com", + "domain":"resources.wilmaa.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"wilmaa.wemfbox.ch", + "domain":"wilmaa.wemfbox.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1017-1-137.cdn.iptv.ch", + "domain":"s1017-1-137.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1017-0-136.cdn.iptv.ch", + "domain":"s1017-0-136.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-hls5-pvr.zahs.tv", + "domain":"zh2-5-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-dashenc-vod.zahs.tv", + "domain":"zh2-0-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-dashenc-vod.zahs.tv", + "domain":"zh2-1-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-dashenc-vod.zahs.tv", + "domain":"zh2-2-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-dashenc-vod.zahs.tv", + "domain":"zh2-3-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-dashenc-vod.zahs.tv", + "domain":"zh2-4-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-dashenc-vod.zahs.tv", + "domain":"zh2-5-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"media.service.teleboy.ch", + "domain":"media.service.teleboy.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-hls5-live.zahs.tv", + "domain":"fr5-1-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-hls5-live.zahs.tv", + "domain":"fr5-2-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-hls5-live.zahs.tv", + "domain":"fr5-3-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-hls5-live.zahs.tv", + "domain":"fr5-4-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-hls5-live.zahs.tv", + "domain":"fr5-5-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1013-0-136.cdn.iptv.ch", + "domain":"s1013-0-136.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1013-1-137.cdn.iptv.ch", + "domain":"s1013-1-137.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr1-hls5-pvr.zahs.tv", + "domain":"oldpvr1-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr2-hls5-pvr.zahs.tv", + "domain":"oldpvr2-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr3-hls5-pvr.zahs.tv", + "domain":"oldpvr3-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr4-hls5-pvr.zahs.tv", + "domain":"oldpvr4-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr1-dash-pvr.zahs.tv", + "domain":"oldpvr1-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr2-dash-pvr.zahs.tv", + "domain":"oldpvr2-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr3-dash-pvr.zahs.tv", + "domain":"oldpvr3-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr4-dash-pvr.zahs.tv", + "domain":"oldpvr4-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"beta.zattoo.com", + "domain":"beta.zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-0-ss-live.zahs.tv", + "domain":"fra3-0-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-1-ss-live.zahs.tv", + "domain":"fra3-1-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-2-ss-live.zahs.tv", + "domain":"fra3-2-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-dash-live.zahs.tv", + "domain":"zba6-1-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-dash-live.zahs.tv", + "domain":"zba6-2-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-ss-live.zahs.tv", + "domain":"zba6-1-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-ss-live.zahs.tv", + "domain":"zba6-2-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-hls7-pvr.zahs.tv", + "domain":"zh2-5-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-hls7-pvr.zahs.tv", + "domain":"zh2-3-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-hls7-pvr.zahs.tv", + "domain":"zh2-0-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-hls7-pvr.zahs.tv", + "domain":"zh2-1-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-hls7-pvr.zahs.tv", + "domain":"zh2-2-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-hls7-pvr.zahs.tv", + "domain":"zh2-4-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-hls7-pvr.zahs.tv", + "domain":"zh2-6-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-hls7-pvr.zahs.tv", + "domain":"zh2-7-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-hls7-live.zahs.tv", + "domain":"zh2-0-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-hls7-live.zahs.tv", + "domain":"zh2-1-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-hls7-live.zahs.tv", + "domain":"zh2-2-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-hls7-live.zahs.tv", + "domain":"zh2-3-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-hls7-live.zahs.tv", + "domain":"zh2-4-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-hls7-live.zahs.tv", + "domain":"zh2-5-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-hls7-live.zahs.tv", + "domain":"zh2-6-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-hls7-live.zahs.tv", + "domain":"zh2-7-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr1-hls7-pvr.zahs.tv", + "domain":"oldpvr1-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr2-hls7-pvr.zahs.tv", + "domain":"oldpvr2-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr3-hls7-pvr.zahs.tv", + "domain":"oldpvr3-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr4-hls7-pvr.zahs.tv", + "domain":"oldpvr4-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zattoo-dash-live.akamaized.net", + "domain":"zattoo-dash-live.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr1-ss-pvr.zahs.tv", + "domain":"oldpvr1-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr2-ss-pvr.zahs.tv", + "domain":"oldpvr2-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr3-ss-pvr.zahs.tv", + "domain":"oldpvr3-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr4-ss-pvr.zahs.tv", + "domain":"oldpvr4-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tv.api.teleboy.ch", + "domain":"tv.api.teleboy.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zattoo-ss-live.akamaized.net", + "domain":"zattoo-ss-live.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-1-ss-pvr.zahs.tv", + "domain":"fra3-1-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-0-ss-pvr.zahs.tv", + "domain":"fra3-0-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-2-ss-pvr.zahs.tv", + "domain":"fra3-2-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-3-ss-pvr.zahs.tv", + "domain":"fra3-3-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-hls5-live.zahs.tv", + "domain":"zh2-9-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-hls5-pvr.zahs.tv", + "domain":"zh2-9-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-hls5-live.zahs.tv", + "domain":"zba6-0-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-hls5-live.zahs.tv", + "domain":"zba6-1-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-hls5-live.zahs.tv", + "domain":"zba6-2-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-hls5-pvr.zahs.tv", + "domain":"zba6-0-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-hls5-pvr.zahs.tv", + "domain":"zba6-1-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-hls5-pvr.zahs.tv", + "domain":"zba6-2-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-dash-pvr.zahs.tv", + "domain":"zba6-0-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-dash-pvr.zahs.tv", + "domain":"zba6-1-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-dash-pvr.zahs.tv", + "domain":"zba6-2-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-0-dash-pvr.zahs.tv", + "domain":"fra3-0-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-1-dash-pvr.zahs.tv", + "domain":"fra3-1-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-2-dash-pvr.zahs.tv", + "domain":"fra3-2-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-3-dash-pvr.zahs.tv", + "domain":"fra3-3-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-dash-live.zahs.tv", + "domain":"zba6-0-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-0-dash-live.zahs.tv", + "domain":"fra3-0-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-1-dash-live.zahs.tv", + "domain":"fra3-1-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-2-dash-live.zahs.tv", + "domain":"fra3-2-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-3-dash-live.zahs.tv", + "domain":"fra3-3-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-0-dash-live.zahs.tv", + "domain":"zba8-0-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-1-dash-live.zahs.tv", + "domain":"zba8-1-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-2-dash-live.zahs.tv", + "domain":"zba8-2-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-0-dash-pvr.zahs.tv", + "domain":"zba8-0-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-1-dash-pvr.zahs.tv", + "domain":"zba8-1-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-2-dash-pvr.zahs.tv", + "domain":"zba8-2-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-dash-live.zahs.tv", + "domain":"zh2-9-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-dash-pvr.zahs.tv", + "domain":"zh2-9-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-dashenc-vod.zahs.tv", + "domain":"zh2-6-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-dashenc-vod.zahs.tv", + "domain":"zh2-7-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-dashenc-vod.zahs.tv", + "domain":"zh2-8-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-dashenc-vod.zahs.tv", + "domain":"zh2-9-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-dashenc-live.zahs.tv", + "domain":"zh2-6-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-dashenc-live.zahs.tv", + "domain":"zh2-7-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-dashenc-live.zahs.tv", + "domain":"zh2-8-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-dashenc-live.zahs.tv", + "domain":"zh2-1-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-dashenc-live.zahs.tv", + "domain":"zh2-2-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-dashenc-live.zahs.tv", + "domain":"zh2-3-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-dashenc-live.zahs.tv", + "domain":"zh2-4-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-dashenc-live.zahs.tv", + "domain":"zh2-5-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-dashenc-pvr.zahs.tv", + "domain":"zh2-1-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-dashenc-pvr.zahs.tv", + "domain":"zh2-2-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-dashenc-pvr.zahs.tv", + "domain":"zh2-3-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-dashenc-pvr.zahs.tv", + "domain":"zh2-4-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-dashenc-pvr.zahs.tv", + "domain":"zh2-5-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-dashenc-pvr.zahs.tv", + "domain":"zh2-6-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-dashenc-pvr.zahs.tv", + "domain":"zh2-7-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-dashenc-pvr.zahs.tv", + "domain":"zh2-8-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-dashenc-pvr.zahs.tv", + "domain":"zh2-9-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-dashenc-vod.zahs.tv", + "domain":"fr5-1-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-dashenc-vod.zahs.tv", + "domain":"fr5-2-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-dashenc-vod.zahs.tv", + "domain":"fr5-3-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-dashenc-vod.zahs.tv", + "domain":"fr5-4-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-dashenc-vod.zahs.tv", + "domain":"fr5-5-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-dashenc-live.zahs.tv", + "domain":"fr5-1-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-dashenc-live.zahs.tv", + "domain":"fr5-2-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-dashenc-live.zahs.tv", + "domain":"fr5-3-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-dashenc-live.zahs.tv", + "domain":"fr5-4-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-dashenc-live.zahs.tv", + "domain":"fr5-5-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-dashenc-vod.zahs.tv", + "domain":"zba6-0-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-dashenc-vod.zahs.tv", + "domain":"zba6-1-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-dashenc-vod.zahs.tv", + "domain":"zba6-2-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-dashenc-live.zahs.tv", + "domain":"zba6-0-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-dashenc-live.zahs.tv", + "domain":"zba6-1-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-dashenc-live.zahs.tv", + "domain":"zba6-2-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-dashenc-live.zahs.tv", + "domain":"fr5-0-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-dashenc-vod.zahs.tv", + "domain":"fr5-0-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-dashenc-pvr.zahs.tv", + "domain":"zh2-0-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-dashenc-live.zahs.tv", + "domain":"zh2-0-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-0-hls7-live.zahs.tv", + "domain":"fra3-0-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-1-hls7-live.zahs.tv", + "domain":"fra3-1-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-2-hls7-live.zahs.tv", + "domain":"fra3-2-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-3-hls7-live.zahs.tv", + "domain":"fra3-3-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-0-hls7-pvr.zahs.tv", + "domain":"fra3-0-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-1-hls7-pvr.zahs.tv", + "domain":"fra3-1-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-2-hls7-pvr.zahs.tv", + "domain":"fra3-2-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-3-hls7-pvr.zahs.tv", + "domain":"fra3-3-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-0-hls7-vod.zahs.tv", + "domain":"fra3-0-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-1-hls7-vod.zahs.tv", + "domain":"fra3-1-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-2-hls7-vod.zahs.tv", + "domain":"fra3-2-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-3-hls7-vod.zahs.tv", + "domain":"fra3-3-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-0.zahs.tv", + "domain":"fra3-0.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-1.zahs.tv", + "domain":"fra3-1.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-2.zahs.tv", + "domain":"fra3-2.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-3.zahs.tv", + "domain":"fra3-3.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-0.zahs.tv", + "domain":"zba8-0.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-1.zahs.tv", + "domain":"zba8-1.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-2.zahs.tv", + "domain":"zba8-2.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-0-hls7-live.zahs.tv", + "domain":"zba8-0-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-1-hls7-live.zahs.tv", + "domain":"zba8-1-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-2-hls7-live.zahs.tv", + "domain":"zba8-2-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-0-hls7-pvr.zahs.tv", + "domain":"zba8-0-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-1-hls7-pvr.zahs.tv", + "domain":"zba8-1-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-2-hls7-pvr.zahs.tv", + "domain":"zba8-2-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-0-hls7-vod.zahs.tv", + "domain":"zba8-0-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-1-hls7-vod.zahs.tv", + "domain":"zba8-1-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-2-hls7-vod.zahs.tv", + "domain":"zba8-2-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-hls7-live.zahs.tv", + "domain":"zh2-8-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-hls7-live.zahs.tv", + "domain":"zh2-9-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-hls7-pvr.zahs.tv", + "domain":"zh2-8-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-hls7-pvr.zahs.tv", + "domain":"zh2-9-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-hls7-vod.zahs.tv", + "domain":"zh2-8-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-hls7-vod.zahs.tv", + "domain":"zh2-9-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-hls7-live.zahs.tv", + "domain":"zba6-0-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-hls7-live.zahs.tv", + "domain":"zba6-1-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-hls7-live.zahs.tv", + "domain":"zba6-2-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-hls7-pvr.zahs.tv", + "domain":"zba6-0-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-hls7-pvr.zahs.tv", + "domain":"zba6-1-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-hls7-pvr.zahs.tv", + "domain":"zba6-2-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-hls7-vod.zahs.tv", + "domain":"zba6-0-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-hls7-vod.zahs.tv", + "domain":"zba6-1-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-hls7-vod.zahs.tv", + "domain":"zba6-2-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0.zahs.tv", + "domain":"zba6-0.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1.zahs.tv", + "domain":"zba6-1.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2.zahs.tv", + "domain":"zba6-2.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-hls7-live.zahs.tv", + "domain":"fr5-0-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-hls7-live.zahs.tv", + "domain":"fr5-1-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-hls7-live.zahs.tv", + "domain":"fr5-2-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-hls7-live.zahs.tv", + "domain":"fr5-3-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-hls7-live.zahs.tv", + "domain":"fr5-4-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-hls7-live.zahs.tv", + "domain":"fr5-5-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-hls7-pvr.zahs.tv", + "domain":"fr5-0-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-hls7-pvr.zahs.tv", + "domain":"fr5-1-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-hls7-pvr.zahs.tv", + "domain":"fr5-2-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-hls7-pvr.zahs.tv", + "domain":"fr5-3-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-hls7-pvr.zahs.tv", + "domain":"fr5-4-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-hls7-pvr.zahs.tv", + "domain":"fr5-5-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-hls7-vod.zahs.tv", + "domain":"fr5-0-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-hls7-vod.zahs.tv", + "domain":"fr5-1-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-hls7-vod.zahs.tv", + "domain":"fr5-2-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-hls7-vod.zahs.tv", + "domain":"fr5-3-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-hls7-vod.zahs.tv", + "domain":"fr5-4-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-hls7-vod.zahs.tv", + "domain":"fr5-5-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0.zahs.tv", + "domain":"fr5-0.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1.zahs.tv", + "domain":"fr5-1.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2.zahs.tv", + "domain":"fr5-2.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3.zahs.tv", + "domain":"fr5-3.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4.zahs.tv", + "domain":"fr5-4.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5.zahs.tv", + "domain":"fr5-5.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"teleboy-ssl.wemfbox.ch", + "domain":"teleboy-ssl.wemfbox.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-0-hls5-live.zahs.tv", + "domain":"fra3-0-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-1-hls5-live.zahs.tv", + "domain":"fra3-1-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-2-hls5-live.zahs.tv", + "domain":"fra3-2-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-3-hls5-live.zahs.tv", + "domain":"fra3-3-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-0-hls5-pvr.zahs.tv", + "domain":"fra3-0-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-1-hls5-pvr.zahs.tv", + "domain":"fra3-1-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-2-hls5-pvr.zahs.tv", + "domain":"fra3-2-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-3-hls5-pvr.zahs.tv", + "domain":"fra3-3-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-0-hls5-vod.zahs.tv", + "domain":"fra3-0-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-1-hls5-vod.zahs.tv", + "domain":"fra3-1-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-2-hls5-vod.zahs.tv", + "domain":"fra3-2-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-3-hls5-vod.zahs.tv", + "domain":"fra3-3-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-0-hls5-live.zahs.tv", + "domain":"zba8-0-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-1-hls5-live.zahs.tv", + "domain":"zba8-1-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-2-hls5-live.zahs.tv", + "domain":"zba8-2-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-0-hls5-pvr.zahs.tv", + "domain":"zba8-0-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-1-hls5-pvr.zahs.tv", + "domain":"zba8-1-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-2-hls5-pvr.zahs.tv", + "domain":"zba8-2-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-0-hls5-vod.zahs.tv", + "domain":"zba8-0-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-1-hls5-vod.zahs.tv", + "domain":"zba8-1-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-2-hls5-vod.zahs.tv", + "domain":"zba8-2-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-ss-pvr.zahs.tv", + "domain":"zh2-9-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-ss-live.zahs.tv", + "domain":"zh2-9-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-ss-live.zahs.tv", + "domain":"zba6-0-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-ss-pvr.zahs.tv", + "domain":"zba6-0-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-ss-pvr.zahs.tv", + "domain":"zba6-1-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zattoo-hls7-live.akamaized.net", + "domain":"zattoo-hls7-live.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zattoo-ssl.wemfbox.ch", + "domain":"zattoo-ssl.wemfbox.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-hls5-live.zahs.tv", + "domain":"fr5-0-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-hls-live.zahs.tv", + "domain":"zba6-1-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-hls-live.zahs.tv", + "domain":"zba6-0-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-hls-live.zahs.tv", + "domain":"zh2-9-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-ss-live.zahs.tv", + "domain":"fr5-4-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-ss-pvr.zahs.tv", + "domain":"fr5-4-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-ss-live.zahs.tv", + "domain":"fr5-3-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-ss-pvr.zahs.tv", + "domain":"fr5-3-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-ss-live.zahs.tv", + "domain":"fr5-5-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-ss-pvr.zahs.tv", + "domain":"fr5-5-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-hls-live.zahs.tv", + "domain":"fr5-3-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-hls-live.zahs.tv", + "domain":"fr5-4-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-dash-pvr.zahs.tv", + "domain":"fr5-5-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-dash-pvr.zahs.tv", + "domain":"fr5-3-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-hls-live.zahs.tv", + "domain":"fr5-5-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-10-ss-pvr.zahs.tv", + "domain":"zh2-10-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-dash-vod.zahs.tv", + "domain":"zba6-0-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-dash-vod.zahs.tv", + "domain":"zba6-1-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-dash-vod.zahs.tv", + "domain":"zba6-2-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-10-hls-live.zahs.tv", + "domain":"zh2-10-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-10-dash-vod.zahs.tv", + "domain":"zh2-10-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-10-dash-pvr.zahs.tv", + "domain":"zh2-10-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-10-ss-live.zahs.tv", + "domain":"zh2-10-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-hls-live.zahs.tv", + "domain":"zba6-2-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-ss-pvr.zahs.tv", + "domain":"zba6-2-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-11-dash-live.zahs.tv", + "domain":"zh2-11-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-11-ss-pvr.zahs.tv", + "domain":"zh2-11-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-11-ss-live.zahs.tv", + "domain":"zh2-11-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-11-hls-live.zahs.tv", + "domain":"zh2-11-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-11-dash-vod.zahs.tv", + "domain":"zh2-11-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-10-hls5-live.zahs.tv", + "domain":"zh2-10-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-10-dash-live.zahs.tv", + "domain":"zh2-10-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-10-hls7-live.zahs.tv", + "domain":"zh2-10-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-hls-live.zahs.tv", + "domain":"fr5-0-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-hls-live.zahs.tv", + "domain":"fr5-1-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-hls-live.zahs.tv", + "domain":"fr5-2-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-0-hls-live.zahs.tv", + "domain":"fra3-0-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-1-hls-live.zahs.tv", + "domain":"fra3-1-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-2-hls-live.zahs.tv", + "domain":"fra3-2-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-3-hls-live.zahs.tv", + "domain":"fra3-3-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-dash-live.zahs.tv", + "domain":"fr5-0-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-ss-live.zahs.tv", + "domain":"fr5-0-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-ss-live.zahs.tv", + "domain":"fr5-1-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-ss-live.zahs.tv", + "domain":"fr5-2-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-3-ss-live.zahs.tv", + "domain":"fra3-3-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-ss-pvr.zahs.tv", + "domain":"fr5-0-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-ss-pvr.zahs.tv", + "domain":"fr5-1-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-ss-pvr.zahs.tv", + "domain":"fr5-2-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-hls-pvr.zahs.tv", + "domain":"fr5-0-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-hls-pvr.zahs.tv", + "domain":"fr5-1-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-hls-pvr.zahs.tv", + "domain":"fr5-2-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-hls-pvr.zahs.tv", + "domain":"fr5-3-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-hls-pvr.zahs.tv", + "domain":"fr5-4-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-hls-pvr.zahs.tv", + "domain":"fr5-5-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-1-hls-pvr.zahs.tv", + "domain":"fra3-1-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-2-hls-pvr.zahs.tv", + "domain":"fra3-2-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-3-hls-pvr.zahs.tv", + "domain":"fra3-3-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-hls-pvr.zahs.tv", + "domain":"zh2-7-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-hls-pvr.zahs.tv", + "domain":"zh2-8-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-hls-pvr.zahs.tv", + "domain":"zh2-9-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-hls-pvr.zahs.tv", + "domain":"zba6-0-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-hls-pvr.zahs.tv", + "domain":"zba6-1-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-hls-pvr.zahs.tv", + "domain":"zba6-2-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-hls5-pvr.zahs.tv", + "domain":"fr5-0-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-hls5-pvr.zahs.tv", + "domain":"fr5-1-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-hls5-pvr.zahs.tv", + "domain":"fr5-2-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-hls5-pvr.zahs.tv", + "domain":"fr5-3-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-hls5-pvr.zahs.tv", + "domain":"fr5-4-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-hls5-pvr.zahs.tv", + "domain":"fr5-5-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-dash-pvr.zahs.tv", + "domain":"zh2-4-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-dash-pvr.zahs.tv", + "domain":"fr5-0-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-dash-pvr.zahs.tv", + "domain":"fr5-1-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-dash-pvr.zahs.tv", + "domain":"fr5-2-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-dash-pvr.zahs.tv", + "domain":"fr5-4-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"chromecast-receiver.zattoo.com", + "domain":"chromecast-receiver.zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zattoo-tizen.zattoo.com", + "domain":"zattoo-tizen.zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-11-hls7-live.zahs.tv", + "domain":"zh2-11-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-11-hls5-live.zahs.tv", + "domain":"zh2-11-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-11-dash-pvr.zahs.tv", + "domain":"zh2-11-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-11-hls7-pvr.zahs.tv", + "domain":"zh2-11-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"shop0088.zattoo.com", + "domain":"shop0088.zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.sky.ch", + "domain":"www.sky.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sky.ch", + "domain":"sky.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"show.sky.ch", + "domain":"show.sky.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sport.sky.ch", + "domain":"sport.sky.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"store.sky.ch", + "domain":"store.sky.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"services.sg1.etvp01.sctv.ch", + "domain":"services.sg1.etvp01.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0401.sctv.ch", + "domain":"tvoosa-pez0401.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0402.sctv.ch", + "domain":"tvoosa-pez0402.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0403.sctv.ch", + "domain":"tvoosa-pez0403.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0404.sctv.ch", + "domain":"tvoosa-pez0404.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0405.sctv.ch", + "domain":"tvoosa-pez0405.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0406.sctv.ch", + "domain":"tvoosa-pez0406.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0407.sctv.ch", + "domain":"tvoosa-pez0407.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0408.sctv.ch", + "domain":"tvoosa-pez0408.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0409.sctv.ch", + "domain":"tvoosa-pez0409.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0410.sctv.ch", + "domain":"tvoosa-pez0410.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0412.sctv.ch", + "domain":"tvoosa-pez0412.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0413.sctv.ch", + "domain":"tvoosa-pez0413.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez04014sctv.ch", + "domain":"tvoosa-pez04014sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0415.sctv.ch", + "domain":"tvoosa-pez0415.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0416.sctv.ch", + "domain":"tvoosa-pez0416.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0417.sctv.ch", + "domain":"tvoosa-pez0417.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0418.sctv.ch", + "domain":"tvoosa-pez0418.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0419.sctv.ch", + "domain":"tvoosa-pez0419.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0420.sctv.ch", + "domain":"tvoosa-pez0420.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0400.sctv.ch", + "domain":"tvoosa-pez0400.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"test.teleboy.ch", + "domain":"test.teleboy.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-hls7enc-live.zahs.tv", + "domain":"fr5-1-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-hls7enc-live.zahs.tv", + "domain":"fr5-2-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-hls7enc-live.zahs.tv", + "domain":"fr5-3-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-hls7enc-live.zahs.tv", + "domain":"fr5-4-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-hls7enc-live.zahs.tv", + "domain":"fr5-5-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-hls7enc-live.zahs.tv", + "domain":"zh2-1-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-hls7enc-live.zahs.tv", + "domain":"zh2-2-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-hls7enc-live.zahs.tv", + "domain":"zh2-3-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-hls7enc-live.zahs.tv", + "domain":"zh2-4-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-hls7enc-live.zahs.tv", + "domain":"zh2-5-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-hls7enc-live.zahs.tv", + "domain":"zh2-6-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-hls7enc-live.zahs.tv", + "domain":"zh2-7-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-hls7enc-live.zahs.tv", + "domain":"zh2-8-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-hls7enc-live.zahs.tv", + "domain":"zh2-9-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-10-hls7enc-live.zahs.tv", + "domain":"zh2-10-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-11-hls7enc-live.zahs.tv", + "domain":"zh2-11-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-12-hls7enc-live.zahs.tv", + "domain":"zh2-12-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-13-hls7enc-live.zahs.tv", + "domain":"zh2-13-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-hls7enc-live.zahs.tv", + "domain":"zba6-1-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-hls7enc-live.zahs.tv", + "domain":"zba6-2-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-hls7enc-live.zahs.tv", + "domain":"zh2-0-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-hls7enc-live.zahs.tv", + "domain":"zba6-0-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-hls7enc-vod.zahs.tv", + "domain":"fr5-0-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-hls7enc-vod.zahs.tv", + "domain":"fr5-1-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-hls7enc-vod.zahs.tv", + "domain":"fr5-2-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-hls7enc-vod.zahs.tv", + "domain":"fr5-3-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-hls7enc-vod.zahs.tv", + "domain":"fr5-4-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-hls7enc-vod.zahs.tv", + "domain":"fr5-5-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-hls7enc-live.zahs.tv", + "domain":"fr5-0-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-hls7enc-vod.zahs.tv", + "domain":"zh2-0-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-hls7enc-vod.zahs.tv", + "domain":"zh2-1-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-hls7enc-vod.zahs.tv", + "domain":"zh2-2-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-hls7enc-vod.zahs.tv", + "domain":"zh2-3-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-hls7enc-vod.zahs.tv", + "domain":"zh2-4-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-hls7enc-vod.zahs.tv", + "domain":"zh2-5-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-hls7enc-vod.zahs.tv", + "domain":"zh2-6-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-hls7enc-vod.zahs.tv", + "domain":"zh2-7-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-hls7enc-vod.zahs.tv", + "domain":"zh2-8-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-hls7enc-vod.zahs.tv", + "domain":"zh2-9-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-10-hls7enc-vod.zahs.tv", + "domain":"zh2-10-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-11-hls7enc-vod.zahs.tv", + "domain":"zh2-11-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-12-hls7enc-vod.zahs.tv", + "domain":"zh2-12-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-13-hls7enc-vod.zahs.tv", + "domain":"zh2-13-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-sspr-pvr.zahs.tv", + "domain":"zba6-0-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-sspr-pvr.zahs.tv", + "domain":"zba6-1-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-sspr-pvr.zahs.tv", + "domain":"zba6-2-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-sspr-pvr.zahs.tv", + "domain":"fr5-0-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-sspr-pvr.zahs.tv", + "domain":"fr5-1-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-sspr-pvr.zahs.tv", + "domain":"fr5-2-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-sspr-pvr.zahs.tv", + "domain":"fr5-3-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-sspr-pvr.zahs.tv", + "domain":"fr5-4-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-sspr-pvr.zahs.tv", + "domain":"fr5-5-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-dashenc-pvr.zahs.tv", + "domain":"fr5-0-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-dashenc-pvr.zahs.tv", + "domain":"fr5-1-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-dashenc-pvr.zahs.tv", + "domain":"fr5-2-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-dashenc-pvr.zahs.tv", + "domain":"fr5-3-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-dashenc-pvr.zahs.tv", + "domain":"fr5-4-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-dashenc-pvr.zahs.tv", + "domain":"fr5-5-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-dashenc-pvr.zahs.tv", + "domain":"zba6-0-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-dashenc-pvr.zahs.tv", + "domain":"zba6-1-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-dashenc-pvr.zahs.tv", + "domain":"zba6-2-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr1-dashenc-pvr.zahs.tv", + "domain":"oldpvr1-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr2-dashenc-pvr.zahs.tv", + "domain":"oldpvr2-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr3-dashenc-pvr.zahs.tv", + "domain":"oldpvr3-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr4-dashenc-pvr.zahs.tv", + "domain":"oldpvr4-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-10-dashenc-pvr.zahs.tv", + "domain":"zh2-10-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-11-dashenc-pvr.zahs.tv", + "domain":"zh2-11-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-12-dashenc-pvr.zahs.tv", + "domain":"zh2-12-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-13-dashenc-pvr.zahs.tv", + "domain":"zh2-13-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-sspr-live.zahs.tv", + "domain":"zh2-7-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-sspr-live.zahs.tv", + "domain":"zh2-8-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-sspr-live.zahs.tv", + "domain":"zh2-9-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-10-sspr-live.zahs.tv", + "domain":"zh2-10-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-11-sspr-live.zahs.tv", + "domain":"zh2-11-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-12-sspr-live.zahs.tv", + "domain":"zh2-12-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-13-sspr-live.zahs.tv", + "domain":"zh2-13-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-sspr-live.zahs.tv", + "domain":"fr5-0-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-sspr-live.zahs.tv", + "domain":"fr5-1-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-sspr-live.zahs.tv", + "domain":"fr5-2-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-sspr-live.zahs.tv", + "domain":"fr5-3-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-sspr-live.zahs.tv", + "domain":"fr5-4-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-sspr-live.zahs.tv", + "domain":"fr5-5-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-hls7enc-pvr.zahs.tv", + "domain":"fr5-0-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-hls7enc-pvr.zahs.tv", + "domain":"fr5-1-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-hls7enc-pvr.zahs.tv", + "domain":"fr5-2-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-hls7enc-pvr.zahs.tv", + "domain":"fr5-3-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-hls7enc-pvr.zahs.tv", + "domain":"fr5-4-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-hls7enc-pvr.zahs.tv", + "domain":"fr5-5-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-hls7enc-pvr.zahs.tv", + "domain":"zh2-0-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-hls7enc-pvr.zahs.tv", + "domain":"zh2-1-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-hls7enc-pvr.zahs.tv", + "domain":"zh2-2-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-hls7enc-pvr.zahs.tv", + "domain":"zh2-3-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-hls7enc-pvr.zahs.tv", + "domain":"zh2-4-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-hls7enc-pvr.zahs.tv", + "domain":"zh2-5-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-hls7enc-pvr.zahs.tv", + "domain":"zh2-6-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-hls7enc-pvr.zahs.tv", + "domain":"zh2-7-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-hls7enc-pvr.zahs.tv", + "domain":"zh2-8-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-hls7enc-pvr.zahs.tv", + "domain":"zh2-9-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-10-hls7enc-pvr.zahs.tv", + "domain":"zh2-10-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-11-hls7enc-pvr.zahs.tv", + "domain":"zh2-11-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-12-hls7enc-pvr.zahs.tv", + "domain":"zh2-12-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-13-hls7enc-pvr.zahs.tv", + "domain":"zh2-13-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-hls7enc-pvr.zahs.tv", + "domain":"zba6-0-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-hls7enc-pvr.zahs.tv", + "domain":"zba6-1-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-hls7enc-pvr.zahs.tv", + "domain":"zba6-2-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr1-hls7enc-pvr.zahs.tv", + "domain":"oldpvr1-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr2-hls7enc-pvr.zahs.tv", + "domain":"oldpvr2-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr3-hls7enc-pvr.zahs.tv", + "domain":"oldpvr3-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr4-hls7enc-pvr.zahs.tv", + "domain":"oldpvr4-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-sspr-pvr.zahs.tv", + "domain":"zh2-7-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-sspr-pvr.zahs.tv", + "domain":"zh2-8-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-sspr-pvr.zahs.tv", + "domain":"zh2-9-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-10-sspr-pvr.zahs.tv", + "domain":"zh2-10-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-11-sspr-pvr.zahs.tv", + "domain":"zh2-11-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-dashenc-live.zahs.tv", + "domain":"zh2-9-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-10-dashenc-live.zahs.tv", + "domain":"zh2-10-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-11-dashenc-live.zahs.tv", + "domain":"zh2-11-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-sspr-live.zahs.tv", + "domain":"zba6-0-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-sspr-live.zahs.tv", + "domain":"zba6-1-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-sspr-live.zahs.tv", + "domain":"zba6-2-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-sspr-vod.zahs.tv", + "domain":"zba6-0-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-sspr-vod.zahs.tv", + "domain":"zba6-1-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-sspr-vod.zahs.tv", + "domain":"zba6-2-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-dash-vod.zahs.tv", + "domain":"fr5-0-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-dash-vod.zahs.tv", + "domain":"fr5-1-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-dash-vod.zahs.tv", + "domain":"fr5-2-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-dash-vod.zahs.tv", + "domain":"fr5-3-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-dash-vod.zahs.tv", + "domain":"fr5-4-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-dash-vod.zahs.tv", + "domain":"fr5-5-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-sspr-vod.zahs.tv", + "domain":"fr5-0-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-sspr-vod.zahs.tv", + "domain":"fr5-1-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-sspr-vod.zahs.tv", + "domain":"fr5-2-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-sspr-vod.zahs.tv", + "domain":"fr5-3-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-sspr-vod.zahs.tv", + "domain":"fr5-4-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-sspr-vod.zahs.tv", + "domain":"fr5-5-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-13-hls7-pvr.zahs.tv", + "domain":"zh2-13-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-12-hls7-live.zahs.tv", + "domain":"zh2-12-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-13-hls7-live.zahs.tv", + "domain":"zh2-13-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-12-hls7-vod.zahs.tv", + "domain":"zh2-12-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.teleboy.ch", + "domain":"www.teleboy.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"il.srgssr.ch", + "domain":"il.srgssr.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"srgssruni1ch-lh.akamaihd.net", + "domain":"srgssruni1ch-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"srgssruni2ch-lh.akamaihd.net", + "domain":"srgssruni2ch-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"srgssruni3ch-lh.akamaihd.net", + "domain":"srgssruni3ch-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sftv-ssl.wemfbox.ch", + "domain":"sftv-ssl.wemfbox.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.srf.ch", + "domain":"www.srf.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"srfvodhd-vh.akamaihd.net", + "domain":"srfvodhd-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"srgssrrcdvr5ch-lh.akamaihd.net", + "domain":"srgssrrcdvr5ch-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"srgssrgop18a-lh.akamaihd.net", + "domain":"srgssrgop18a-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"srgssruni18ach-lh.akamaihd.net", + "domain":"srgssruni18ach-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"srgssruni6ch-lh.akamaihd.net", + "domain":"srgssruni6ch-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"srgssrrcdvr4ch-lh.akamaihd.net", + "domain":"srgssrrcdvr4ch-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"srgssruni4ch-lh.akamaihd.net", + "domain":"srgssruni4ch-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"srgssrgop18b-lh.akamaihd.net", + "domain":"srgssrgop18b-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"srgssrrcdvr1ch-lh.akamaihd.net", + "domain":"srgssrrcdvr1ch-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"srgssrrcdvr2ch-lh.akamaihd.net", + "domain":"srgssrrcdvr2ch-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"srgssrrcdvr3ch-lh.akamaihd.net", + "domain":"srgssrrcdvr3ch-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"srgssrrcdvr6ch-lh.akamaihd.net", + "domain":"srgssrrcdvr6ch-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ws.srf.ch", + "domain":"ws.srf.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"geo.francetv.fr", + "domain":"geo.francetv.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ftvodhdsecz-f.akamaihd.net", + "domain":"ftvodhdsecz-f.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pluzz.francetv.fr", + "domain":"pluzz.francetv.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"webservices.francetelevisions.fr", + "domain":"webservices.francetelevisions.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pluzz.webservices.francetelevisions.fr", + "domain":"pluzz.webservices.francetelevisions.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"geoftv-a.akamaihd.net", + "domain":"geoftv-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ftveninfo-lh.akamaihd.net", + "domain":"ftveninfo-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live.francetv.fr", + "domain":"live.francetv.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hdfauthftv-a.akamaihd.net", + "domain":"hdfauthftv-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"replayftv-vh.akamaihd.net", + "domain":"replayftv-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"livefrancetv.akamaized.net", + "domain":"livefrancetv.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cloudreplayfrancetv.akamaized.net", + "domain":"cloudreplayfrancetv.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.france.tv", + "domain":"www.france.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cloudingestfrancetv.akamaized.net", + "domain":"cloudingestfrancetv.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ftvingest-vh.akamaihd.net", + "domain":"ftvingest-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"staticftv-a.akamaihd.net", + "domain":"staticftv-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cloudreplay.ftven.fr", + "domain":"cloudreplay.ftven.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"simulcast.ftven.fr", + "domain":"simulcast.ftven.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cloudingest.ftven.fr", + "domain":"cloudingest.ftven.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-olympics.ftven.fr", + "domain":"live-olympics.ftven.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"reco.webservices.francetelevisions.fr", + "domain":"reco.webservices.francetelevisions.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"player.webservices.francetelevisions.fr", + "domain":"player.webservices.francetelevisions.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mobile.france.tv", + "domain":"mobile.france.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hdfauth.ftven.fr", + "domain":"hdfauth.ftven.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"simulcast-p.ftven.fr", + "domain":"simulcast-p.ftven.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"liveventftv.akamaized.net", + "domain":"liveventftv.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.arte.tv", + "domain":"www.arte.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"org-www.arte.tv", + "domain":"org-www.arte.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.arte.tv", + "domain":"api.arte.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"arte.tv", + "domain":"arte.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"artestras.fc.llnwd.net", + "domain":"artestras.fc.llnwd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.skychnl.net", + "domain":"api.skychnl.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"artelive-lh.akamaihd.net", + "domain":"artelive-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"arteptweb-vh.akamaihd.net", + "domain":"arteptweb-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"arteconcert-vh.akamaihd.net", + "domain":"arteconcert-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api-cdn.arte.tv", + "domain":"api-cdn.arte.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"geoloc.arte.tv", + "domain":"geoloc.arte.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sso.arte.tv", + "domain":"sso.arte.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"wp.arte.tv", + "domain":"wp.arte.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"y1.arte.tv", + "domain":"y1.arte.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"static-cdn.arte.tv", + "domain":"static-cdn.arte.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"arteeurope-vh.akamaihd.net", + "domain":"arteeurope-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"artehls-vh.akamaihd.net", + "domain":"artehls-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api-cdn.arte.tv.edgekey.net", + "domain":"api-cdn.arte.tv.edgekey.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"artesimulcast.akamaized.net", + "domain":"artesimulcast.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tf1livhdsstrike-lh.akamaihd.net", + "domain":"tf1livhdsstrike-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s.wat.tv", + "domain":"s.wat.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.wat.tv", + "domain":"www.wat.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tmclivhdsweblive-lh.akamaihd.net", + "domain":"tmclivhdsweblive-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nt1livhdsweb-lh.akamaihd.net", + "domain":"nt1livhdsweb-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hd1livhdsweblive-lh.akamaihd.net", + "domain":"hd1livhdsweblive-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"geoloc.tf1.fr", + "domain":"geoloc.tf1.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"delivery.tf1.fr", + "domain":"delivery.tf1.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"player.tf1.fr", + "domain":"player.tf1.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.tf1.fr", + "domain":"www.tf1.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"das-q1-ssl.tf1.fr", + "domain":"das-q1-ssl.tf1.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn1-live.mlflux.net", + "domain":"cdn1-live.mlflux.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn2-live.mlflux.net", + "domain":"cdn2-live.mlflux.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn3-live.mlflux.net", + "domain":"cdn3-live.mlflux.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"noqs-cnd1-live.mlflux.net", + "domain":"noqs-cnd1-live.mlflux.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn3-live-mlflux-net.akamaized.net", + "domain":"cdn3-live-mlflux-net.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn3-vod-mlflux-net.akamaized.net", + "domain":"cdn3-vod-mlflux-net.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"atv.molotov.tv", + "domain":"atv.molotov.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fusion.molotov.tv", + "domain":"fusion.molotov.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fapi.molotov.tv", + "domain":"fapi.molotov.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"app.molotov.tv", + "domain":"app.molotov.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"desktop-auto-upgrade.molotov.tv", + "domain":"desktop-auto-upgrade.molotov.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"images.molotov.tv", + "domain":"images.molotov.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn3-vod.mlflux.net", + "domain":"cdn3-vod.mlflux.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn2-vod.mlflux.net", + "domain":"cdn2-vod.mlflux.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn1-vod.mlflux.net", + "domain":"cdn1-vod.mlflux.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"wpush.molotov.tv", + "domain":"wpush.molotov.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fp-vs.azureedge.net", + "domain":"fp-vs.azureedge.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.viaplay.no", + "domain":"www.viaplay.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.viaplay.se", + "domain":"www.viaplay.se", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.viaplay.dk", + "domain":"www.viaplay.dk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.viaplay.fi", + "domain":"www.viaplay.fi", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"checkout.viaplay.no", + "domain":"checkout.viaplay.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"checkout.viaplay.se", + "domain":"checkout.viaplay.se", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"checkout.viaplay.dk", + "domain":"checkout.viaplay.dk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"checkout.viaplay.fi", + "domain":"checkout.viaplay.fi", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"play.viaplay.no", + "domain":"play.viaplay.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"play.viaplay.se", + "domain":"play.viaplay.se", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"play.viaplay.dk", + "domain":"play.viaplay.dk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"play.viaplay.fi", + "domain":"play.viaplay.fi", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"account.viaplay.no", + "domain":"account.viaplay.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"account.viaplay.se", + "domain":"account.viaplay.se", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"account.viaplay.dk", + "domain":"account.viaplay.dk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"account.viaplay.fi", + "domain":"account.viaplay.fi", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"appconfig.pdl.viaplay.com", + "domain":"appconfig.pdl.viaplay.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"content.viaplay.se", + "domain":"content.viaplay.se", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"content.viaplay.no", + "domain":"content.viaplay.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"content.viaplay.dk", + "domain":"content.viaplay.dk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"content.viaplay.fi", + "domain":"content.viaplay.fi", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"viaplay.mtg-api.com", + "domain":"viaplay.mtg-api.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tnfailover.viaplay.tv", + "domain":"tnfailover.viaplay.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"login.viaplay.no", + "domain":"login.viaplay.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"login.viaplay.se", + "domain":"login.viaplay.se", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"login.viaplay.dk", + "domain":"login.viaplay.dk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"login.viaplay.fi", + "domain":"login.viaplay.fi", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"scandi-secure-vod.hls.adaptive.level3.net", + "domain":"scandi-secure-vod.hls.adaptive.level3.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"appletv.viaplay.se", + "domain":"appletv.viaplay.se", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"appletv.viaplay.no", + "domain":"appletv.viaplay.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"appletv.viaplay.dk", + "domain":"appletv.viaplay.dk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"appletv.viaplay.fi", + "domain":"appletv.viaplay.fi", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"viaplay.no", + "domain":"viaplay.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"viaplay.se", + "domain":"viaplay.se", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"viaplay.dk", + "domain":"viaplay.dk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"viaplay.fi", + "domain":"viaplay.fi", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"psfil.tv.nrk.no", + "domain":"psfil.tv.nrk.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nordond-f.akamaihd.net", + "domain":"nordond-f.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m.nrk.no", + "domain":"m.nrk.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrk1us-f.akamaihd.net", + "domain":"nrk1us-f.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrk2us-f.akamaihd.net", + "domain":"nrk2us-f.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrk3us-f.akamaihd.net", + "domain":"nrk3us-f.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrksuper-lh.akamaihd.net", + "domain":"nrksuper-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrktegnsprak-lh.akamaihd.net", + "domain":"nrktegnsprak-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"v8-psapi.nrk.no", + "domain":"v8-psapi.nrk.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"v8.psapi.nrk.no", + "domain":"v8.psapi.nrk.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"psapi-ne.nrk.no", + "domain":"psapi-ne.nrk.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"httpcache0-47115-httpcache0.dna.qbrick.com", + "domain":"httpcache0-47115-httpcache0.dna.qbrick.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrk-nrk1.akamaized.net", + "domain":"nrk-nrk1.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrk-nrk2.akamaized.net", + "domain":"nrk-nrk2.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrk-nrk3.akamaized.net", + "domain":"nrk-nrk3.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fastly3.cedexis.fastlylb.net", + "domain":"fastly3.cedexis.fastlylb.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nordond11c-f.akamaihd.net", + "domain":"nordond11c-f.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fastly.cedexis-test.com", + "domain":"fastly.cedexis-test.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrk-od-95.akamaized.net", + "domain":"nrk-od-95.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"httpcache0-47115-cacheod0.dna.qbrick.com", + "domain":"httpcache0-47115-cacheod0.dna.qbrick.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrk-od-no.telenorcdn.net", + "domain":"nrk-od-no.telenorcdn.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"psapi-we.nrk.no", + "domain":"psapi-we.nrk.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"innlogging.nrk.no", + "domain":"innlogging.nrk.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrktv-ios-version-check.nrk.no", + "domain":"nrktv-ios-version-check.nrk.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod37-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod37-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod04-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod04-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod01-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod01-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod02-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod02-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod03-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod03-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod05-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod05-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod06-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod06-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod07-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod07-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod08-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod08-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod09-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod09-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod10-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod10-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod11-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod11-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod12-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod12-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod13-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod13-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod14-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod14-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod15-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod15-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod16-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod16-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod17-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod17-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod18-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod18-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod19-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod19-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod20-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod20-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod21-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod21-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod22-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod22-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod23-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod23-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod24-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod24-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod25-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod25-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod26-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod26-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod27-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod27-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod28-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod28-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod29-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod29-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod30-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod30-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod31-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod31-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod32-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod32-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod33-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod33-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod34-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod34-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod35-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod35-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod36-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod36-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod38-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod38-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod39-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod39-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod40-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod40-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod41-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod41-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod42-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod42-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod43-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod43-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod44-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod44-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod45-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod45-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod46-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod46-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod47-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod47-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod48-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod48-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod49-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod49-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod50-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod50-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod51-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod51-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod52-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod52-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod53-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod53-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod54-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod54-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod55-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod55-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod56-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod56-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod57-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod57-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod58-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod58-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod59-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod59-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod60-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod60-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod61-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod61-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod62-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod62-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod63-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod63-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod64-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod64-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod65-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod65-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod66-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod66-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod67-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod67-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod68-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod68-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod69-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod69-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod70-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod70-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod71-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod71-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod72-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod72-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod73-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod73-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod74-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod74-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod75-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod75-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod76-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod76-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod77-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod77-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod78-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod78-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod79-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod79-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod80-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod80-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod81-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod81-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod82-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod82-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod83-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod83-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod84-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod84-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod85-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod85-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod86-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod86-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod87-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod87-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod88-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod88-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod89-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod89-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod90-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod90-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod91-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod91-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod92-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod92-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod93-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod93-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod94-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod94-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod95-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod95-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod96-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod96-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod97-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod97-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod98-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod98-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod99-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod99-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.nrk.no", + "domain":"www.nrk.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ssl-nrk.tns-cs.net", + "domain":"ssl-nrk.tns-cs.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkstream.tns-cs.net", + "domain":"nrkstream.tns-cs.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"undertekst.nrk.no", + "domain":"undertekst.nrk.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dr01-lh.akamaihd.net", + "domain":"dr01-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dr02-lh.akamaihd.net", + "domain":"dr02-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dr03-lh.akamaihd.net", + "domain":"dr03-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dr04-lh.akamaihd.net", + "domain":"dr04-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dr05-lh.akamaihd.net", + "domain":"dr05-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dr06-lh.akamaihd.net", + "domain":"dr06-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"drod-vh.akamaihd.net", + "domain":"drod-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.dr.dk", + "domain":"www.dr.dk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.dr-massive.com", + "domain":"www.dr-massive.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"drlowlat.akamaized.net", + "domain":"drlowlat.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ssl-drtv-appletv.tns-gallup.dk", + "domain":"ssl-drtv-appletv.tns-gallup.dk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"drlive01hls.akamaized.net", + "domain":"drlive01hls.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"drlive02hls.akamaized.net", + "domain":"drlive02hls.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"drlive03hls.akamaized.net", + "domain":"drlive03hls.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"downol.dr.dk", + "domain":"downol.dr.dk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"drod24t.akamaized.net", + "domain":"drod24t.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"iview.abc.net.au", + "domain":"iview.abc.net.au", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn.iview.abc.net.au", + "domain":"cdn.iview.abc.net.au", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.abc.net.au", + "domain":"www.abc.net.au", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"iviewmetered-vh.akamaihd.net", + "domain":"iviewmetered-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"iviewhls-i.akamaihd.net", + "domain":"iviewhls-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"a888.avodsl-s.akamaihd.net", + "domain":"a888.avodsl-s.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"abcsecurehttp-a.akamaihd.net", + "domain":"abcsecurehttp-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"iphonestreaming.abc.net.au", + "domain":"iphonestreaming.abc.net.au", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"abctvlivehds-lh.akamaihd.net", + "domain":"abctvlivehds-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cp81899.live.edgefcs.net", + "domain":"cp81899.live.edgefcs.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"abcnews24livehds-lh.akamaihd.net", + "domain":"abcnews24livehds-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"abctvlivehls-lh.akamaihd.net", + "domain":"abctvlivehls-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"abcnews24hls-lh.akamaihd.net", + "domain":"abcnews24hls-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"iview-vod.akamaized.net", + "domain":"iview-vod.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.iview.abc.net.au", + "domain":"api.iview.abc.net.au", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"abc-iview-mediapackagestreams-1.akamaized.net", + "domain":"abc-iview-mediapackagestreams-1.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"abc-iview-mediapackagestreams-2.akamaized.net", + "domain":"abc-iview-mediapackagestreams-2.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"iviewhlsvod-vh.akamaihd.net", + "domain":"iviewhlsvod-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"foxsportshds-vh.akamaihd.net", + "domain":"foxsportshds-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"foxsportshdhls-lh.akamaihd.net", + "domain":"foxsportshdhls-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"foxsportshls-vh.akamaihd.net", + "domain":"foxsportshls-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"foxsportseplhds-vh.akamaihd.net", + "domain":"foxsportseplhds-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fseplhdhds-lh.akamaihd.net", + "domain":"fseplhdhds-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"foxsportshlsg01-lh.akamaihd.net", + "domain":"foxsportshlsg01-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.lightbox.co.nz", + "domain":"www.lightbox.co.nz", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tdvott-a.akamaihd.net", + "domain":"tdvott-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"appgrid-api.cloud.accedo.tv", + "domain":"appgrid-api.cloud.accedo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vpc-lightbox-api-production.cloud.xstream.dk", + "domain":"vpc-lightbox-api-production.cloud.xstream.dk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.devices.lightbox.co.nz", + "domain":"www.devices.lightbox.co.nz", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vpc-lightbox-apigw-production.cloud.xstream.dk", + "domain":"vpc-lightbox-apigw-production.cloud.xstream.dk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.lightbox.co.nz", + "domain":"api.lightbox.co.nz", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"lbdash.akamaized.net", + "domain":"lbdash.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"lbsmooth.akamaized.net", + "domain":"lbsmooth.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"lbhls.akamaized.net", + "domain":"lbhls.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"staragvod1-vh.akamaihd.net", + "domain":"staragvod1-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"staragvod-vh.akamaihd.net", + "domain":"staragvod-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"staragvod2-vh.akamaihd.net", + "domain":"staragvod2-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ipl2061-i.akamaihd.net", + "domain":"ipl2061-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"star.drm.edgesuite.net", + "domain":"star.drm.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1re-s.akamaihd.net", + "domain":"t1re-s.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"service.hotstar.com", + "domain":"service.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"beacon.hotstar.com", + "domain":"beacon.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"getcdn.hotstar.com", + "domain":"getcdn.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"staragatv.akamaized.net", + "domain":"staragatv.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"media1-starag.startv.in", + "domain":"media1-starag.startv.in", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"media0-starag.startv.in", + "domain":"media0-starag.startv.in", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"search.hotstar.com", + "domain":"search.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hshls2-i.akamaihd.net", + "domain":"hshls2-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"staragvod3-vh.akamaihd.net", + "domain":"staragvod3-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"staragvod4-vh.akamaihd.net", + "domain":"staragvod4-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"account.hotstar.com", + "domain":"account.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.hotstar.com", + "domain":"www.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"segment.hotstar.com", + "domain":"segment.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"services.hotstar.com", + "domain":"services.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"media-starag.startv.in", + "domain":"media-starag.startv.in", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hotstar-sin.gravityrd-services.com", + "domain":"hotstar-sin.gravityrd-services.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hstennislive2-lh.akamaihd.net", + "domain":"hstennislive2-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"secure-getcdn.hotstar.com", + "domain":"secure-getcdn.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"secure-media1.hotstar.com", + "domain":"secure-media1.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hotstar.worldgravity.com", + "domain":"hotstar.worldgravity.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"umsp.hotstar.com", + "domain":"umsp.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ca.hotstar.com", + "domain":"ca.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"secure-media0.hotstar.com", + "domain":"secure-media0.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"secure-media2.hotstar.com", + "domain":"secure-media2.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"secure-media.hotstar.com", + "domain":"secure-media.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"drm.hotstar.com", + "domain":"drm.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cws-usw2.conviva.com", + "domain":"cws-usw2.conviva.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hssportsprepack.akamaized.net", + "domain":"hssportsprepack.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hssports33-i.akamaihd.net", + "domain":"hssports33-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.hotstar.com", + "domain":"api.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"staragdash.akamaized.net", + "domain":"staragdash.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"staragdash.edgesuite.net", + "domain":"staragdash.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn.meta.ndmdhs.com", + "domain":"cdn.meta.ndmdhs.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"gcache.hotstar.com", + "domain":"gcache.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hsdesinova.akamaized.net", + "domain":"hsdesinova.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sshd2livetv-i.akamaihd.net", + "domain":"sshd2livetv-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"starplushd-i.akamaihd.net", + "domain":"starplushd-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sshd1livetv-i.akamaihd.net", + "domain":"sshd1livetv-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"starbharat-i.akamaihd.net", + "domain":"starbharat-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"starsuvarna-i.akamaihd.net", + "domain":"starsuvarna-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"starutsav-i.akamaihd.net", + "domain":"starutsav-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"maagold-i.akamaihd.net", + "domain":"maagold-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"asianethd-i.akamaihd.net", + "domain":"asianethd-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"asianetplus-i.akamaihd.net", + "domain":"asianetplus-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"channelv-i.akamaihd.net", + "domain":"channelv-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sshindi-i.akamaihd.net", + "domain":"sshindi-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"starvijay-i.akamaihd.net", + "domain":"starvijay-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ssselecthd1-i.akamaihd.net", + "domain":"ssselecthd1-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"maatv-i.akamaihd.net", + "domain":"maatv-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ssselecthd2-i.akamaihd.net", + "domain":"ssselecthd2-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hsdashbundesliga1.akamaized.net", + "domain":"hsdashbundesliga1.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hsdashbundesliga2.akamaized.net", + "domain":"hsdashbundesliga2.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hsdashbundesliga3.akamaized.net", + "domain":"hsdashbundesliga3.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hsdashbundesliga4.akamaized.net", + "domain":"hsdashbundesliga4.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hsdashbundesliga5.akamaized.net", + "domain":"hsdashbundesliga5.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hsdashbundesliga6.akamaized.net", + "domain":"hsdashbundesliga6.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hsprepack.akamaized.net", + "domain":"hsprepack.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hsdash30.akamaized.net", + "domain":"hsdash30.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hses.akamaized.net", + "domain":"hses.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live01.akt.hotstar-cdn.net", + "domain":"live01.akt.hotstar-cdn.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"bifrost-api.hotstar.com", + "domain":"bifrost-api.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live12.akt.hotstar-cdn.net", + "domain":"live12.akt.hotstar-cdn.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"us.hotstar.com", + "domain":"us.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live11.hotstar.com", + "domain":"live11.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live12.hotstar.com", + "domain":"live12.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live13.hotstar.com", + "domain":"live13.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live14.hotstar.com", + "domain":"live14.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live15.hotstar.com", + "domain":"live15.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"secure-media1.hotstarext.com", + "domain":"secure-media1.hotstarext.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live15p.hotstar.com", + "domain":"live15p.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live11p.hotstar.com", + "domain":"live11p.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live12p.hotstar.com", + "domain":"live12p.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live13p.hotstar.com", + "domain":"live13p.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live14p.hotstar.com", + "domain":"live14p.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"persona.hotstar.com", + "domain":"persona.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live09.akt.hotstar-cdn.net", + "domain":"live09.akt.hotstar-cdn.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live02.akt.hotstar-cdn.net", + "domain":"live02.akt.hotstar-cdn.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live03.akt.hotstar-cdn.net", + "domain":"live03.akt.hotstar-cdn.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live05.akt.hotstar-cdn.net", + "domain":"live05.akt.hotstar-cdn.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live06.akt.hotstar-cdn.net", + "domain":"live06.akt.hotstar-cdn.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live07.akt.hotstar-cdn.net", + "domain":"live07.akt.hotstar-cdn.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live08.akt.hotstar-cdn.net", + "domain":"live08.akt.hotstar-cdn.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"img1.hotstarext.com", + "domain":"img1.hotstarext.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"logs.hotstar.com", + "domain":"logs.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sub-media.hotstar.com", + "domain":"sub-media.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"bifrost.hotstar.com", + "domain":"bifrost.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hotstar.com", + "domain":"hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"img1.hotstar.com", + "domain":"img1.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hooq-vod.akamaized.net", + "domain":"hooq-vod.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hq-clr.akamaized.net", + "domain":"hq-clr.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cf-images.ap-southeast-1.prod.boltdns.net", + "domain":"cf-images.ap-southeast-1.prod.boltdns.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hses.hotstar.com", + "domain":"hses.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hshlsnews14-i.akamaihd.net", + "domain":"hshlsnews14-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hsnewsprepack.akamaized.net", + "domain":"hsnewsprepack.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live01p.hotstar.com", + "domain":"live01p.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live02p.hotstar.com", + "domain":"live02p.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live03p.hotstar.com", + "domain":"live03p.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live04p.hotstar.com", + "domain":"live04p.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live05p.hotstar.com", + "domain":"live05p.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live06p.hotstar.com", + "domain":"live06p.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live07p.hotstar.com", + "domain":"live07p.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live08p.hotstar.com", + "domain":"live08p.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live09p.hotstar.com", + "domain":"live09p.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live10p.hotstar.com", + "domain":"live10p.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tv.hotstar.com", + "domain":"tv.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"webos.hotstar.com", + "domain":"webos.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"secure-media.hotstarext.com", + "domain":"secure-media.hotstarext.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vod01.akt.hotstar-cdn.net", + "domain":"vod01.akt.hotstar-cdn.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tailor.akt.hotstar-cdn.net", + "domain":"tailor.akt.hotstar-cdn.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live12p.akt.hotstar-cdn.net", + "domain":"live12p.akt.hotstar-cdn.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live11p.akt.hotstar-cdn.net", + "domain":"live11p.akt.hotstar-cdn.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tizen.hotstar.com", + "domain":"tizen.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"check.dns4me.net", + "domain":"check.dns4me.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"placeholder.de", + "domain":"placeholder.de", + "protocols": ["http", "https"], + "dnat": true + } + ] + } +} diff --git a/proxies/proxies-us.json b/proxies/proxies-us.json index a67f2b0..e0276a7 100644 --- a/proxies/proxies-us.json +++ b/proxies/proxies-us.json @@ -1,861 +1,18371 @@ { - "netflix": { + "domains": { "proxies": [ { - "alias":"netflix-signup", - "domain":"signup.netflix.com", + "alias":"api.roku.com", + "domain":"api.roku.com", "protocols": ["http", "https"], "dnat": true }, { - "alias":"netflix-www", - "domain":"www.netflix.com", + "alias":"api.rokutime.com", + "domain":"api.rokutime.com", "protocols": ["http", "https"], "dnat": true }, { - "alias":"netflix-appboot", - "domain":"appboot.netflix.com", + "alias":"www-roku.mgo.com", + "domain":"www-roku.mgo.com", "protocols": ["http", "https"], "dnat": true }, { - "alias":"netflix-cbp-us", - "domain":"cbp-us.nccp.netflix.com", + "alias":"api.mobile.roku.com", + "domain":"api.mobile.roku.com", "protocols": ["http", "https"], "dnat": true }, { - "alias":"netflix-akamai", - "domain":"a248.e.akamai.net", + "alias":"api.sr.roku.com", + "domain":"api.sr.roku.com", "protocols": ["http", "https"], "dnat": true }, { - "alias":"netflix-api-global", - "domain":"api-global.netflix.com", + "alias":"cigars.roku.com", + "domain":"cigars.roku.com", "protocols": ["http", "https"], "dnat": true }, { - "alias":"netflix-movies", - "domain":"movies.netflix.com", + "alias":"cloudservices.roku.com", + "domain":"cloudservices.roku.com", "protocols": ["http", "https"], "dnat": true }, { - "alias":"netflix-movies1", - "domain":"movies1.netflix.com", + "alias":"api2.sr.roku.com", + "domain":"api2.sr.roku.com", "protocols": ["http", "https"], "dnat": true }, { - "alias":"netflix-secure", - "domain":"secure.netflix.com", + "alias":"aphrodite.web.roku.com", + "domain":"aphrodite.web.roku.com", "protocols": ["http", "https"], "dnat": true }, { - "alias":"netflix-moviecontrol", - "domain":"moviecontrol.netflix.com", + "alias":"order.rhapsody.com", + "domain":"order.rhapsody.com", "protocols": ["http", "https"], "dnat": true }, { - "alias":"netflix-api", - "domain":"api.netflix.com", + "alias":"www.pandora.com", + "domain":"www.pandora.com", "protocols": ["http", "https"], "dnat": true }, { - "alias":"netflix-api-us", - "domain":"api-us.netflix.com", + "alias":"tuner.pandora.com", + "domain":"tuner.pandora.com", "protocols": ["http", "https"], "dnat": true }, { - "alias":"netflix-uiboot", - "domain":"uiboot.netflix.com", + "alias":"device-tuner.pandora.com", + "domain":"device-tuner.pandora.com", "protocols": ["http", "https"], "dnat": true }, { - "alias":"netflix-cbp", - "domain":"cbp.nccp.netflix.com", + "alias":"tv.pandora.com", + "domain":"tv.pandora.com", "protocols": ["http", "https"], "dnat": true }, { - "alias":"netflix-ios", - "domain":"ios.nccp.netflix.com", + "alias":"bivl.pandora.com", + "domain":"bivl.pandora.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"netflix-xbox", - "domain":"xbox.nccp.netflix.com", + "alias":"ios-tuner.pandora.com", + "domain":"ios-tuner.pandora.com", "protocols": ["http", "https"], "dnat": true }, { - "alias":"netflix-nrdp-31", - "domain":"nccp-nrdp-31.cloud.netflix.net", + "alias":"mediaserver-cont-sv5-1-v4v6.pandora.com", + "domain":"mediaserver-cont-sv5-1-v4v6.pandora.com", "protocols": ["http", "https"], "dnat": true }, { - "alias":"netflix-nintendo", - "domain":"nintendo.nccp.netflix.com", + "alias":"mediaserver-cont-sv5-2-v4v6.pandora.com", + "domain":"mediaserver-cont-sv5-2-v4v6.pandora.com", "protocols": ["http", "https"], "dnat": true }, { - "alias":"netflix-playstation", - "domain":"playstation.nccp.netflix.com", + "alias":"mediaserver-cont-ch1-1-v4v6.pandora.com", + "domain":"mediaserver-cont-ch1-1-v4v6.pandora.com", "protocols": ["http", "https"], "dnat": true }, { - "alias":"netflix-nrdp", - "domain":"nrdp.nccp.netflix.com", + "alias":"mediaserver-cont-dc6-2-v4v6.pandora.com", + "domain":"mediaserver-cont-dc6-2-v4v6.pandora.com", "protocols": ["http", "https"], "dnat": true }, { - "alias":"netflix-android", - "domain":"android.nccp.netflix.com", + "alias":"mediaserver-cont-dc6-1-v4v6.pandora.com", + "domain":"mediaserver-cont-dc6-1-v4v6.pandora.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"netflix-playstation-net", - "domain":"video.dl.playstation.net", + "alias":"pindorama.amazon.com", + "domain":"pindorama.amazon.com", "protocols": ["http", "https"], "dnat": true }, { - "alias":"netflix-ssm", - "domain":"ssm.internet.sony.tv", + "alias":"ssm1.internet.sony.tv", + "domain":"ssm1.internet.sony.tv", "protocols": ["http", "https"], "dnat": true }, { - "alias":"netflix-ssm1", - "domain":"ssm1.internet.sony.tv", + "alias":"ssm.internet.sony.tv", + "domain":"ssm.internet.sony.tv", "protocols": ["http", "https"], "dnat": true }, { - "alias":"netflix-ssm2", - "domain":"ssm2.internet.sony.tv", + "alias":"portal.store.sonyentertainmentnetwork.com", + "domain":"portal.store.sonyentertainmentnetwork.com", "protocols": ["http", "https"], "dnat": true }, { - "alias":"netflix-ssm3", - "domain":"ssm3.internet.sony.tv", + "alias":"api.erabu.sonymobile.com", + "domain":"api.erabu.sonymobile.com", "protocols": ["http", "https"], "dnat": true }, { - "alias":"netflix-treb", - "domain":"treb.internet.sony.tv", + "alias":"content.erabu.sonymobile.com", + "domain":"content.erabu.sonymobile.com", "protocols": ["http", "https"], "dnat": true }, { - "alias":"netflix-wdtv", - "domain":"www.wdtvlive.com", - "protocols": ["http"], + "alias":"bivl.np.ac.playstation.net", + "domain":"bivl.np.ac.playstation.net", + "protocols": ["http", "https"], "dnat": true }, { - "alias":"bivl-netflix-com", - "domain":"bivl.netflix.com", - "protocols": ["https"], + "alias":"kairos.dl.playstation.net", + "domain":"kairos.dl.playstation.net", + "protocols": ["http", "https"], "dnat": true - } - ] - }, - "hulu": { - "proxies": [ + }, { - "alias":"hulu-secure", - "domain":"s.hulu.com", + "alias":"kairos-ssl.dl.playstation.net", + "domain":"kairos-ssl.dl.playstation.net", "protocols": ["http", "https"], "dnat": true }, { - "alias":"hulu-play", - "domain":"play.hulu.com", + "alias":"store.playstation.com", + "domain":"store.playstation.com", "protocols": ["http", "https"], "dnat": true - } - ] - }, - "pandora": { - "proxies": [ + }, { - "alias":"pandora-www", - "domain":"www.pandora.com", + "alias":"call.me.sel.sony.com", + "domain":"call.me.sel.sony.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"pandora-tuner", - "domain":"tuner.pandora.com", + "alias":"static.internet.sony.tv", + "domain":"static.internet.sony.tv", "protocols": ["http", "https"], "dnat": true }, { - "alias":"pandora-mediaserver", - "domain":"mediaserver-sv5-rt-1.pandora.com", - "protocols": ["http"], - "dnat": false + "alias":"update.biv.sony.tv", + "domain":"update.biv.sony.tv", + "protocols": ["http", "https"], + "dnat": true }, { - "alias":"bivl-pandora-com", - "domain":"bivl.pandora.com", - "protocols": ["http"], + "alias":"blu-ray.update.sony.net", + "domain":"blu-ray.update.sony.net", + "protocols": ["http", "https"], "dnat": true - } - ] - }, - "crackle": { - "proxies": [ + }, { - "alias":"crackle-www", - "domain":"www.crackle.com", + "alias":"reg.biv.sony.tv", + "domain":"reg.biv.sony.tv", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"crackle-api", - "domain":"api.crackle.com", + "alias":"service.biv.sony.tv", + "domain":"service.biv.sony.tv", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"crackle-ios", - "domain":"ios-api.crackle.com", + "alias":"applicast.ga.sony.net", + "domain":"applicast.ga.sony.net", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"crackle-ios-us", - "domain":"ios-api-us.crackle.com", + "alias":"atv-ps.amazon.com", + "domain":"atv-ps.amazon.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"crackle-appletv", - "domain":"appletv.crackle.com", + "alias":"fals.atv-ps.amazon.com", + "domain":"fals.atv-ps.amazon.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"crackle-android", - "domain":"android-api-us.crackle.com", + "alias":"atv-ext.amazon.com", + "domain":"atv-ext.amazon.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"crackle-xboxone", - "domain":"xboxone-api-us.crackle.com", + "alias":"fls-eu.amazon.com", + "domain":"fls-eu.amazon.com", "protocols": ["http", "https"], "dnat": true }, { - "alias":"crackle-ps3", - "domain":"ps3-api-us.crackle.com", + "alias":"fls-eu.amazon.co.uk", + "domain":"fls-eu.amazon.co.uk", "protocols": ["http", "https"], "dnat": true }, { - "alias":"crackle-roku", - "domain":"roku-api.crackle.com", + "alias":"atv-ps-eu.amazon.com", + "domain":"atv-ps-eu.amazon.com", "protocols": ["http", "https"], "dnat": true }, { - "alias":"crackle-uplynk", - "domain":"content.uplynk.com", + "alias":"fls-eu.amazon.de", + "domain":"fls-eu.amazon.de", "protocols": ["http", "https"], "dnat": true - } - ] - }, - "hbogo": { - "proxies": [ + }, { - "alias":"hbogo.com", - "domain":"hbogo.com", + "alias":"atv-eu.amazon.com", + "domain":"atv-eu.amazon.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"www.hbogo.com", - "domain":"www.hbogo.com", + "alias":"fls-na.amazon.com", + "domain":"fls-na.amazon.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"devicecast.hbogo.com", - "domain":"devicecast.hbogo.com", + "alias":"aiv-clients-apps.amazon.com", + "domain":"aiv-clients-apps.amazon.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"catalog.lv3.hbogo.com", - "domain":"catalog.lv3.hbogo.com", + "alias":"atv-ext-eu.amazon.com", + "domain":"atv-ext-eu.amazon.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"profile.hbogo.com", - "domain":"profile.hbogo.com", + "alias":"api.amazon.de", + "domain":"api.amazon.de", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"pro.hbogo.com", - "domain":"pro.hbogo.com", + "alias":"api.amazon.com", + "domain":"api.amazon.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"hls.hbo.lv3.hbogo.com", - "domain":"hls.hbo.lv3.hbogo.com", + "alias":"fls-fe.amazon.co.jp", + "domain":"fls-fe.amazon.co.jp", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"i.hbo.lv3.hbogo.com", - "domain":"i.hbo.lv3.hbogo.com", + "alias":"fls-fe.amazon.com", + "domain":"fls-fe.amazon.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"pdl.misc.lv3.hbogo.com", - "domain":"pdl.misc.lv3.hbogo.com", + "alias":"atv-ps-fe.amazon.com", + "domain":"atv-ps-fe.amazon.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"smooth.misc.lv3.hbogo.com", - "domain":"smooth.misc.lv3.hbogo.com", + "alias":"atv-ext-fe.amazon.com", + "domain":"atv-ext-fe.amazon.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"smooth.pro17.lv3.hbogo.com", - "domain":"smooth.pro17.lv3.hbogo.com", + "alias":"api.amazon.co.jp", + "domain":"api.amazon.co.jp", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"reporting.hbogo.com", - "domain":"reporting.hbogo.com", + "alias":"api.amazon.co.uk", + "domain":"api.amazon.co.uk", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"register.hbogo.com", - "domain":"register.hbogo.com", + "alias":"dcape-na.amazon.com", + "domain":"dcape-na.amazon.com", "protocols": ["http", "https"], - "dnat": false - } - ] - }, - "hbo": { - "proxies": [ + "dnat": true + }, { - "alias":"hbo.com", - "domain":"hbo.com", + "alias":"arcus-uswest.amazon.com", + "domain":"arcus-uswest.amazon.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"www.hbo.com", - "domain":"www.hbo.com", + "alias":"atv-ps-eu.amazon.co.uk", + "domain":"atv-ps-eu.amazon.co.uk", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"store.hbo.com", - "domain":"store.hbo.com", + "alias":"dp-gw-na.amazon.com", + "domain":"dp-gw-na.amazon.com", "protocols": ["http", "https"], - "dnat": false - } - ] - }, - "abc": { - "proxies": [ + "dnat": true + }, { - "alias":"abc-go", - "domain":"abc.go.com", + "alias":"www.amazon.com.au", + "domain":"www.amazon.com.au", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"abc-disney", - "domain":"api.watchdisneyxd.go.com", + "alias":"unagi-na.amazon.com", + "domain":"unagi-na.amazon.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"abc-watchabc", - "domain":"api.watchabc.go.com", + "alias":"api.amazonalexa.com", + "domain":"api.amazonalexa.com", "protocols": ["http", "https"], - "dnat": false - } - ] - }, - "yahoo": { - "proxies": [ + "dnat": true + }, { - "alias":"yahoo-screen", - "domain":"screen.yahoo.com", + "alias":"avs-alexa-1-na.amazon.com", + "domain":"avs-alexa-1-na.amazon.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"yahoo-geo", - "domain":"geo.yahoo.com", + "alias":"avs-alexa-2-na.amazon.com", + "domain":"avs-alexa-2-na.amazon.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"yahoo-geo-query", - "domain":"geo.query.yahoo.com", + "alias":"avs-alexa-3-na.amazon.com", + "domain":"avs-alexa-3-na.amazon.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"yahoo-hls", - "domain":"hls.video.query.yahoo.com", + "alias":"avs-alexa-4-na.amazon.com", + "domain":"avs-alexa-4-na.amazon.com", "protocols": ["http", "https"], - "dnat": false - } - ] - }, - "thewb": { - "proxies": [ + "dnat": true + }, { - "alias":"thewb-www", - "domain":"www.thewb.com", - "protocols": ["http"], - "dnat": false + "alias":"avs-alexa-5-na.amazon.com", + "domain":"avs-alexa-5-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true }, { - "alias":"thewb-cwtv", - "domain":"www.cwtv.com", + "alias":"avs-alexa-6-na.amazon.com", + "domain":"avs-alexa-6-na.amazon.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"thewb-cwtv-media", - "domain":"media.cwtv.com", - "protocols": ["http"], - "dnat": false + "alias":"avs-alexa-7-na.amazon.com", + "domain":"avs-alexa-7-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true }, { - "alias":"thewb-pdl", - "domain":"pdl.warnerbros.com", - "protocols": ["http"], - "dnat": false + "alias":"avs-alexa-8-na.amazon.com", + "domain":"avs-alexa-8-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true }, { - "alias":"thewb-cdn", - "domain":"cdn.wwtv.warnerbros.com", - "protocols": ["http"], - "dnat": false + "alias":"avs-alexa-9-na.amazon.com", + "domain":"avs-alexa-9-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true }, { - "alias":"hlsioscwtv-warnerbros-com", - "domain":"hlsioscwtv.warnerbros.com", - "protocols": ["http"], + "alias":"avs-alexa-10-na.amazon.com", + "domain":"avs-alexa-10-na.amazon.com", + "protocols": ["http", "https"], "dnat": true - } - ] - }, - "vevo": { - "proxies": [ + }, { - "alias":"vevo-www", - "domain":"www.vevo.com", + "alias":"avs-alexa-11-na.amazon.com", + "domain":"avs-alexa-11-na.amazon.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"vevo-sb", - "domain":"sb.vevo.com", + "alias":"avs-alexa-12-na.amazon.com", + "domain":"avs-alexa-12-na.amazon.com", "protocols": ["http", "https"], - "dnat": false - } - ] - }, - "mtv": { - "proxies": [ + "dnat": true + }, { - "alias":"mtv-www", - "domain":"www.mtv.com", + "alias":"avs-alexa-13-na.amazon.com", + "domain":"avs-alexa-13-na.amazon.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"mtv-udat", - "domain":"udat.mtvnservices.com", + "alias":"avs-alexa-14-na.amazon.com", + "domain":"avs-alexa-14-na.amazon.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"mtv-media", - "domain":"media.mtvnservices.com", + "alias":"avs-alexa-15-na.amazon.com", + "domain":"avs-alexa-15-na.amazon.com", "protocols": ["http", "https"], - "dnat": false - } - ] - }, - "sony": { - "proxies": [ + "dnat": true + }, { - "alias":"www-sony-net", - "domain":"www.sony.net", + "alias":"avs-alexa-16-na.amazon.com", + "domain":"avs-alexa-16-na.amazon.com", "protocols": ["http", "https"], "dnat": true }, { - "alias":"internet-sony-tv", - "domain":"internet.sony.tv", + "alias":"avs-alexa-17-na.amazon.com", + "domain":"avs-alexa-17-na.amazon.com", "protocols": ["http", "https"], "dnat": true }, { - "alias":"applicast-ga-sony-net", - "domain":"applicast.ga.sony.net", + "alias":"avs-alexa-18-na.amazon.com", + "domain":"avs-alexa-18-na.amazon.com", "protocols": ["http", "https"], "dnat": true }, { - "alias":"bravia-dl-playstation-net", - "domain":"bravia.dl.playstation.net", + "alias":"avs-alexa-19-na.amazon.com", + "domain":"avs-alexa-19-na.amazon.com", "protocols": ["http", "https"], "dnat": true }, { - "alias":"bravia-e-dl-playstation-net", - "domain":"bravia-e.dl.playstation.net", + "alias":"avs-alexa-20-na.amazon.com", + "domain":"avs-alexa-20-na.amazon.com", "protocols": ["http", "https"], "dnat": true }, { - "alias":"sentv-user-auth-totsuko-tv", - "domain":"sentv-user-auth.totsuko.tv", + "alias":"ia.media-imdb.com", + "domain":"ia.media-imdb.com", "protocols": ["http", "https"], "dnat": true - } - ] - }, - "crunchyroll": { - "proxies": [ + }, { - "alias":"crunchyroll-www", - "domain":"www.crunchyroll.com", + "alias":"imdbtv-backend-na.amazon.com", + "domain":"imdbtv-backend-na.amazon.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"crunchyroll-api", - "domain":"api.crunchyroll.com", + "alias":"sessions.watchtower.imdbtv.amazon.dev", + "domain":"sessions.watchtower.imdbtv.amazon.dev", "protocols": ["http", "https"], - "dnat": false - } - ] - }, - "lastfm": { - "proxies": [ + "dnat": true + }, { - "alias":"lastfm-www", - "domain":"www.last.fm", + "alias":"www.spotify.com", + "domain":"www.spotify.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"lastfm-audioscrobbler", - "domain":"ws.audioscrobbler.com", + "alias":"play.spotify.com", + "domain":"play.spotify.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"lastfm-ext", - "domain":"ext.last.fm", + "alias":"api.spotify.com", + "domain":"api.spotify.com", "protocols": ["http", "https"], - "dnat": false - } - ] - }, - "nbc": { - "proxies": [ + "dnat": true + }, { - "alias":"nbc-uni", - "domain":"video.nbcuni.com", + "alias":"api-partner.spotify.com", + "domain":"api-partner.spotify.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"nbc-nbc", - "domain":"video.nbc.com", + "alias":"www.iheart.com", + "domain":"www.iheart.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"nbc-syfy", - "domain":"video.syfy.com", + "alias":"www.slacker.com", + "domain":"www.slacker.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"nbc-akamai-ipad", - "domain":"tve_nbc-vh.akamaihd.net", + "alias":"gspe19-ssl.ls.apple.com", + "domain":"gspe19-ssl.ls.apple.com", "protocols": ["http", "https"], - "dnat": false - } - ] - }, - "logotv": { - "proxies": [ + "dnat": true + }, { - "alias":"logotv-www", - "domain":"www.logotv.com", + "alias":"api.config.watchabc.go.com", + "domain":"api.config.watchabc.go.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"logotv-flux", - "domain":"activity.flux.com", + "alias":"api.contents.watchabc.go.com", + "domain":"api.contents.watchabc.go.com", "protocols": ["http", "https"], - "dnat": false - } - ] - }, - "showtime": { - "proxies": [ + "dnat": true + }, { - "alias":"showtimeanytime.com", - "domain":"showtimeanytime.com", + "alias":"api.abc.com", + "domain":"api.abc.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"www.showtimeanytime.com", - "domain":"www.showtimeanytime.com", + "alias":"radiko.jp", + "domain":"radiko.jp", "protocols": ["http", "https"], - "dnat": false - } - ] - }, - "dramafever": { - "proxies": [ + "dnat": true + }, { - "alias":"dramafever-www", - "domain":"www.dramafever.com", + "alias":"www.crackle.com", + "domain":"www.crackle.com", "protocols": ["http", "https"], - "dnat": false - } - ] - }, - "smithsonians": { - "proxies": [ + "dnat": true + }, { - "alias":"smithsonian-www", - "domain":"www.smithsonianchannel.com", + "alias":"omn.crackle.com", + "domain":"omn.crackle.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"smithsonian-unicorn", - "domain":"once.unicornmedia.com", + "alias":"ios-api-us.crackle.com", + "domain":"ios-api-us.crackle.com", "protocols": ["http", "https"], - "dnat": false - } - ] - }, - "cbs": { - "proxies": [ + "dnat": true + }, { - "alias":"cbs", - "domain":"release.theplatform.com", + "alias":"ios-api.crackle.com", + "domain":"ios-api.crackle.com", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias":"cbs-akamai-ipad", - "domain":"ipad-streaming.cbs.com", + "alias":"android-api-us.crackle.com", + "domain":"android-api-us.crackle.com", "protocols": ["http", "https"], - "dnat": false - } - ] - }, - "humblebundle": { - "proxies": [ + "dnat": true + }, { - "alias":"humble-bundle", - "domain":"www.humblebundle.com", + "alias":"xboxone-api-us.crackle.com", + "domain":"xboxone-api-us.crackle.com", "protocols": ["http", "https"], "dnat": true - } - ] - }, - "mylifetime": { - "proxies": [ + }, { - "alias":"mylifetime", - "domain":"c.brightcove.com", - "protocols": ["http"], - "dnat": false - } - ] - }, - "discovery": { - "proxies": [ + "alias":"ps3-api-us.crackle.com", + "domain":"ps3-api-us.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, { - "alias":"discovery", - "domain":"static.discoverymedia.com", + "alias":"roku-api.crackle.com", + "domain":"roku-api.crackle.com", "protocols": ["http", "https"], - "dnat": false - } - ] - }, - "fox": { - "proxies": [ + "dnat": true + }, { - "alias":"fox", - "domain":"link.theplatform.com", + "alias":"amazon-api-us.crackle.com", + "domain":"amazon-api-us.crackle.com", "protocols": ["http", "https"], - "dnat": false - } - ] - }, - "iheart": { - "proxies": [ + "dnat": true + }, { - "alias":"iheart", - "domain":"www.iheart.com", + "alias":"api.crackle.com", + "domain":"api.crackle.com", "protocols": ["http", "https"], - "dnat": false - } - ] - }, - "maxmind": { - "proxies": [ + "dnat": true + }, { - "alias":"maxmind", - "domain":"j.maxmind.com", + "alias":"m.crackle.com", + "domain":"m.crackle.com", "protocols": ["http", "https"], - "dnat": false - } - ] - }, - "mog": { - "proxies": [ + "dnat": true + }, { - "alias":"mog", - "domain":"mog.com", + "alias":"content-xuse1.uplynk.com", + "domain":"content-xuse1.uplynk.com", "protocols": ["http", "https"], - "dnat": false - } - ] - }, - "pbs": { - "proxies": [ + "dnat": true + }, { - "alias":"pbs", - "domain":"urs.pbs.org", - "protocols": ["http"], + "alias":"appletv.crackle.com", + "domain":"appletv.crackle.com", + "protocols": ["http", "https"], "dnat": true - } - ] - }, - "spike": { - "proxies": [ + }, { - "alias":"spike-www", - "domain":"www.spike.com", + "alias":"appletv-api-us.crackle.com", + "domain":"appletv-api-us.crackle.com", "protocols": ["http", "https"], - "dnat": false - } - ] - }, - "vh1": { - "proxies": [ + "dnat": true + }, + { + "alias":"androidtv-api-us.crackle.com", + "domain":"androidtv-api-us.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"geo.aspen.turner.com", + "domain":"geo.aspen.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"token.aspen.vgtf.net", + "domain":"token.aspen.vgtf.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"i.cdn.tbs.com", + "domain":"i.cdn.tbs.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"geo.ngtv.io", + "domain":"geo.ngtv.io", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"token.ngtv.io", + "domain":"token.ngtv.io", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"highlander-prod.tbsdlabs.com", + "domain":"highlander-prod.tbsdlabs.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"blackout.ngtv.io", + "domain":"blackout.ngtv.io", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aspen.ngtv.io", + "domain":"aspen.ngtv.io", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"atlas.ngtv.io", + "domain":"atlas.ngtv.io", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"highlander.tbs.com", + "domain":"highlander.tbs.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sbp.ngtv.io", + "domain":"sbp.ngtv.io", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"i.hbo.lv3.hbogo.com", + "domain":"i.hbo.lv3.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hls.hbo.lv3.hbogo.com", + "domain":"hls.hbo.lv3.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"atv.api.lv3.cdn.hbo.com", + "domain":"atv.api.lv3.cdn.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"artist.api.lv3.cdn.hbo.com", + "domain":"artist.api.lv3.cdn.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"artist.api.lv3.cdn.hbo.com.c.footprint.net", + "domain":"artist.api.lv3.cdn.hbo.com.c.footprint.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"comet.api.hbo.com", + "domain":"comet.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"login.api.hbo.com", + "domain":"login.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"telegraph.api.hbo.com", + "domain":"telegraph.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"markers.api.hbo.com", + "domain":"markers.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.hbonow.com", + "domain":"www.hbonow.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"play.hbonow.com", + "domain":"play.hbonow.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"prod-v2.reporting.hbogo.com", + "domain":"prod-v2.reporting.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"commerce-experience.api.hbo.com", + "domain":"commerce-experience.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"activate.hbomax.com", + "domain":"activate.hbomax.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"commerce.api.hbo.com", + "domain":"commerce.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.hbomax.com", + "domain":"www.hbomax.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sessions.api.hbo.com", + "domain":"sessions.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oauth.api.hbo.com", + "domain":"oauth.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oauth-us.api.hbo.com", + "domain":"oauth-us.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"manifests.api.hbo.com", + "domain":"manifests.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"commerce-latam.api.hbo.com", + "domain":"commerce-latam.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"gateway-latam.api.hbo.com", + "domain":"gateway-latam.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sessions-latam.api.hbo.com", + "domain":"sessions-latam.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oauth-latam.api.hbo.com", + "domain":"oauth-latam.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"comet-latam.api.hbo.com", + "domain":"comet-latam.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"comet-emea.api.hbo.com", + "domain":"comet-emea.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"manifests.v2.api.hbo.com", + "domain":"manifests.v2.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"gateway-emea.api.hbo.com", + "domain":"gateway-emea.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"xbox.mtvnservices.com", + "domain":"xbox.mtvnservices.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"apimtv-a.akamaihd.net", + "domain":"apimtv-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mediaresolver-a.akamaihd.net", + "domain":"mediaresolver-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"musicjsonpath-a.akamaihd.net", + "domain":"musicjsonpath-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"auth.mtvnservices.com", + "domain":"auth.mtvnservices.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mb.mtvnservices.com", + "domain":"mb.mtvnservices.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ssc.cc.com", + "domain":"ssc.cc.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"apicache.vudu.com", + "domain":"apicache.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.vudu.com", + "domain":"api.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup.vudu.com", + "domain":"startup.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"my.vudu.com", + "domain":"my.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cs1.vudu.com", + "domain":"cs1.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cs2.vudu.com", + "domain":"cs2.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cs3.vudu.com", + "domain":"cs3.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cs4.vudu.com", + "domain":"cs4.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cs5.vudu.com", + "domain":"cs5.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cs6.vudu.com", + "domain":"cs6.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vudu.d1.sc.omtrdc.net", + "domain":"vudu.d1.sc.omtrdc.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup.vvond.net", + "domain":"startup.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-aus.vvond.net", + "domain":"startup-aus.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-nzl.vvond.net", + "domain":"startup-nzl.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-abw.vvond.net", + "domain":"startup-abw.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-afg.vvond.net", + "domain":"startup-afg.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ago.vvond.net", + "domain":"startup-ago.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-aia.vvond.net", + "domain":"startup-aia.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ala.vvond.net", + "domain":"startup-ala.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-alb.vvond.net", + "domain":"startup-alb.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-and.vvond.net", + "domain":"startup-and.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-are.vvond.net", + "domain":"startup-are.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-arg.vvond.net", + "domain":"startup-arg.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-arm.vvond.net", + "domain":"startup-arm.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-asm.vvond.net", + "domain":"startup-asm.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ata.vvond.net", + "domain":"startup-ata.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-atf.vvond.net", + "domain":"startup-atf.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-atg.vvond.net", + "domain":"startup-atg.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-aut.vvond.net", + "domain":"startup-aut.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-aze.vvond.net", + "domain":"startup-aze.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-bdi.vvond.net", + "domain":"startup-bdi.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-bel.vvond.net", + "domain":"startup-bel.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ben.vvond.net", + "domain":"startup-ben.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-bes.vvond.net", + "domain":"startup-bes.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-bfa.vvond.net", + "domain":"startup-bfa.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-bgd.vvond.net", + "domain":"startup-bgd.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-bgr.vvond.net", + "domain":"startup-bgr.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-bhr.vvond.net", + "domain":"startup-bhr.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-bhs.vvond.net", + "domain":"startup-bhs.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-bih.vvond.net", + "domain":"startup-bih.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-blm.vvond.net", + "domain":"startup-blm.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-blr.vvond.net", + "domain":"startup-blr.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-blz.vvond.net", + "domain":"startup-blz.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-bmu.vvond.net", + "domain":"startup-bmu.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-bol.vvond.net", + "domain":"startup-bol.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-bra.vvond.net", + "domain":"startup-bra.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-brb.vvond.net", + "domain":"startup-brb.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-brn.vvond.net", + "domain":"startup-brn.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-btn.vvond.net", + "domain":"startup-btn.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-bvt.vvond.net", + "domain":"startup-bvt.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-bwa.vvond.net", + "domain":"startup-bwa.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-caf.vvond.net", + "domain":"startup-caf.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-can.vvond.net", + "domain":"startup-can.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-cck.vvond.net", + "domain":"startup-cck.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-che.vvond.net", + "domain":"startup-che.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-chl.vvond.net", + "domain":"startup-chl.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-chn.vvond.net", + "domain":"startup-chn.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-civ.vvond.net", + "domain":"startup-civ.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-cmr.vvond.net", + "domain":"startup-cmr.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-cod.vvond.net", + "domain":"startup-cod.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-cog.vvond.net", + "domain":"startup-cog.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-cok.vvond.net", + "domain":"startup-cok.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-col.vvond.net", + "domain":"startup-col.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-com.vvond.net", + "domain":"startup-com.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-cpv.vvond.net", + "domain":"startup-cpv.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-cri.vvond.net", + "domain":"startup-cri.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-cub.vvond.net", + "domain":"startup-cub.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-cuw.vvond.net", + "domain":"startup-cuw.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-cxr.vvond.net", + "domain":"startup-cxr.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-cym.vvond.net", + "domain":"startup-cym.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-cyp.vvond.net", + "domain":"startup-cyp.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-cze.vvond.net", + "domain":"startup-cze.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-deu.vvond.net", + "domain":"startup-deu.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-dji.vvond.net", + "domain":"startup-dji.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-dma.vvond.net", + "domain":"startup-dma.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-dnk.vvond.net", + "domain":"startup-dnk.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-dom.vvond.net", + "domain":"startup-dom.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-dza.vvond.net", + "domain":"startup-dza.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ecu.vvond.net", + "domain":"startup-ecu.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-egy.vvond.net", + "domain":"startup-egy.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-eri.vvond.net", + "domain":"startup-eri.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-esh.vvond.net", + "domain":"startup-esh.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-esp.vvond.net", + "domain":"startup-esp.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-est.vvond.net", + "domain":"startup-est.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-eth.vvond.net", + "domain":"startup-eth.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-fin.vvond.net", + "domain":"startup-fin.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-fji.vvond.net", + "domain":"startup-fji.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-flk.vvond.net", + "domain":"startup-flk.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-fra.vvond.net", + "domain":"startup-fra.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-fro.vvond.net", + "domain":"startup-fro.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-fsm.vvond.net", + "domain":"startup-fsm.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-gab.vvond.net", + "domain":"startup-gab.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-gbr.vvond.net", + "domain":"startup-gbr.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-geo.vvond.net", + "domain":"startup-geo.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ggy.vvond.net", + "domain":"startup-ggy.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-gha.vvond.net", + "domain":"startup-gha.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-gib.vvond.net", + "domain":"startup-gib.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-gin.vvond.net", + "domain":"startup-gin.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-glp.vvond.net", + "domain":"startup-glp.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-gmb.vvond.net", + "domain":"startup-gmb.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-gnb.vvond.net", + "domain":"startup-gnb.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-gnq.vvond.net", + "domain":"startup-gnq.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-grc.vvond.net", + "domain":"startup-grc.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-grd.vvond.net", + "domain":"startup-grd.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-grl.vvond.net", + "domain":"startup-grl.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-gtm.vvond.net", + "domain":"startup-gtm.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-guf.vvond.net", + "domain":"startup-guf.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-gum.vvond.net", + "domain":"startup-gum.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-guy.vvond.net", + "domain":"startup-guy.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-hkg.vvond.net", + "domain":"startup-hkg.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-hmd.vvond.net", + "domain":"startup-hmd.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-hnd.vvond.net", + "domain":"startup-hnd.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-hrv.vvond.net", + "domain":"startup-hrv.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-hti.vvond.net", + "domain":"startup-hti.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-hun.vvond.net", + "domain":"startup-hun.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-idn.vvond.net", + "domain":"startup-idn.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-imn.vvond.net", + "domain":"startup-imn.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ind.vvond.net", + "domain":"startup-ind.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-iot.vvond.net", + "domain":"startup-iot.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-irl.vvond.net", + "domain":"startup-irl.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-irn.vvond.net", + "domain":"startup-irn.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-irq.vvond.net", + "domain":"startup-irq.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-isl.vvond.net", + "domain":"startup-isl.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-isr.vvond.net", + "domain":"startup-isr.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ita.vvond.net", + "domain":"startup-ita.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-jam.vvond.net", + "domain":"startup-jam.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-jey.vvond.net", + "domain":"startup-jey.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-jor.vvond.net", + "domain":"startup-jor.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-jpn.vvond.net", + "domain":"startup-jpn.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-kaz.vvond.net", + "domain":"startup-kaz.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ken.vvond.net", + "domain":"startup-ken.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-kgz.vvond.net", + "domain":"startup-kgz.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-khm.vvond.net", + "domain":"startup-khm.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-kir.vvond.net", + "domain":"startup-kir.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-kna.vvond.net", + "domain":"startup-kna.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-kor.vvond.net", + "domain":"startup-kor.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-kwt.vvond.net", + "domain":"startup-kwt.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-lao.vvond.net", + "domain":"startup-lao.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-lbn.vvond.net", + "domain":"startup-lbn.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-lbr.vvond.net", + "domain":"startup-lbr.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-lby.vvond.net", + "domain":"startup-lby.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-lca.vvond.net", + "domain":"startup-lca.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-lie.vvond.net", + "domain":"startup-lie.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-lka.vvond.net", + "domain":"startup-lka.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-lso.vvond.net", + "domain":"startup-lso.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ltu.vvond.net", + "domain":"startup-ltu.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-lux.vvond.net", + "domain":"startup-lux.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-lva.vvond.net", + "domain":"startup-lva.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mac.vvond.net", + "domain":"startup-mac.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-maf.vvond.net", + "domain":"startup-maf.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mar.vvond.net", + "domain":"startup-mar.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mco.vvond.net", + "domain":"startup-mco.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mda.vvond.net", + "domain":"startup-mda.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mdg.vvond.net", + "domain":"startup-mdg.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mdv.vvond.net", + "domain":"startup-mdv.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mex.vvond.net", + "domain":"startup-mex.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mhl.vvond.net", + "domain":"startup-mhl.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mkd.vvond.net", + "domain":"startup-mkd.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mli.vvond.net", + "domain":"startup-mli.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mlt.vvond.net", + "domain":"startup-mlt.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mmr.vvond.net", + "domain":"startup-mmr.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mne.vvond.net", + "domain":"startup-mne.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mng.vvond.net", + "domain":"startup-mng.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mnp.vvond.net", + "domain":"startup-mnp.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-moz.vvond.net", + "domain":"startup-moz.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mrt.vvond.net", + "domain":"startup-mrt.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mtq.vvond.net", + "domain":"startup-mtq.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mus.vvond.net", + "domain":"startup-mus.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mwi.vvond.net", + "domain":"startup-mwi.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-mys.vvond.net", + "domain":"startup-mys.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-myt.vvond.net", + "domain":"startup-myt.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-nam.vvond.net", + "domain":"startup-nam.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ncl.vvond.net", + "domain":"startup-ncl.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ner.vvond.net", + "domain":"startup-ner.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-nfk.vvond.net", + "domain":"startup-nfk.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-nga.vvond.net", + "domain":"startup-nga.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-nic.vvond.net", + "domain":"startup-nic.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-niu.vvond.net", + "domain":"startup-niu.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-nld.vvond.net", + "domain":"startup-nld.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-nor.vvond.net", + "domain":"startup-nor.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-npl.vvond.net", + "domain":"startup-npl.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-nru.vvond.net", + "domain":"startup-nru.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-omn.vvond.net", + "domain":"startup-omn.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-pak.vvond.net", + "domain":"startup-pak.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-pan.vvond.net", + "domain":"startup-pan.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-pcn.vvond.net", + "domain":"startup-pcn.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-per.vvond.net", + "domain":"startup-per.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-phl.vvond.net", + "domain":"startup-phl.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-plw.vvond.net", + "domain":"startup-plw.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-png.vvond.net", + "domain":"startup-png.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-pol.vvond.net", + "domain":"startup-pol.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-pri.vvond.net", + "domain":"startup-pri.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-prk.vvond.net", + "domain":"startup-prk.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-prt.vvond.net", + "domain":"startup-prt.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-pry.vvond.net", + "domain":"startup-pry.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-pse.vvond.net", + "domain":"startup-pse.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-pyf.vvond.net", + "domain":"startup-pyf.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-qat.vvond.net", + "domain":"startup-qat.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-reu.vvond.net", + "domain":"startup-reu.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-rou.vvond.net", + "domain":"startup-rou.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-rus.vvond.net", + "domain":"startup-rus.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-rwa.vvond.net", + "domain":"startup-rwa.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-sau.vvond.net", + "domain":"startup-sau.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-sdn.vvond.net", + "domain":"startup-sdn.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-sen.vvond.net", + "domain":"startup-sen.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-sgp.vvond.net", + "domain":"startup-sgp.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-sgs.vvond.net", + "domain":"startup-sgs.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-shn.vvond.net", + "domain":"startup-shn.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-sjm.vvond.net", + "domain":"startup-sjm.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-slb.vvond.net", + "domain":"startup-slb.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-sle.vvond.net", + "domain":"startup-sle.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-slv.vvond.net", + "domain":"startup-slv.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-smr.vvond.net", + "domain":"startup-smr.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-som.vvond.net", + "domain":"startup-som.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-spm.vvond.net", + "domain":"startup-spm.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-srb.vvond.net", + "domain":"startup-srb.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ssd.vvond.net", + "domain":"startup-ssd.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-stp.vvond.net", + "domain":"startup-stp.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-sur.vvond.net", + "domain":"startup-sur.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-svk.vvond.net", + "domain":"startup-svk.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-svn.vvond.net", + "domain":"startup-svn.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-swe.vvond.net", + "domain":"startup-swe.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-swz.vvond.net", + "domain":"startup-swz.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-sxm.vvond.net", + "domain":"startup-sxm.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-syc.vvond.net", + "domain":"startup-syc.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-syr.vvond.net", + "domain":"startup-syr.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-tca.vvond.net", + "domain":"startup-tca.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-tcd.vvond.net", + "domain":"startup-tcd.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-tgo.vvond.net", + "domain":"startup-tgo.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-tha.vvond.net", + "domain":"startup-tha.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-tjk.vvond.net", + "domain":"startup-tjk.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-tkl.vvond.net", + "domain":"startup-tkl.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-tkm.vvond.net", + "domain":"startup-tkm.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-tls.vvond.net", + "domain":"startup-tls.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ton.vvond.net", + "domain":"startup-ton.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-tto.vvond.net", + "domain":"startup-tto.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-tun.vvond.net", + "domain":"startup-tun.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-tur.vvond.net", + "domain":"startup-tur.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-tuv.vvond.net", + "domain":"startup-tuv.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-twn.vvond.net", + "domain":"startup-twn.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-tza.vvond.net", + "domain":"startup-tza.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-uga.vvond.net", + "domain":"startup-uga.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ukr.vvond.net", + "domain":"startup-ukr.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-umi.vvond.net", + "domain":"startup-umi.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ury.vvond.net", + "domain":"startup-ury.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-usa.vvond.net", + "domain":"startup-usa.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-uzb.vvond.net", + "domain":"startup-uzb.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-vat.vvond.net", + "domain":"startup-vat.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-vct.vvond.net", + "domain":"startup-vct.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-ven.vvond.net", + "domain":"startup-ven.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-vgb.vvond.net", + "domain":"startup-vgb.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-vir.vvond.net", + "domain":"startup-vir.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-vnm.vvond.net", + "domain":"startup-vnm.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-vut.vvond.net", + "domain":"startup-vut.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-wlf.vvond.net", + "domain":"startup-wlf.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-wsm.vvond.net", + "domain":"startup-wsm.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-yem.vvond.net", + "domain":"startup-yem.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-zaf.vvond.net", + "domain":"startup-zaf.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-zmb.vvond.net", + "domain":"startup-zmb.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-zwe.vvond.net", + "domain":"startup-zwe.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vudu-api.hs.llnwd.net", + "domain":"vudu-api.hs.llnwd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-auto.vvond.net", + "domain":"startup-auto.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vudu-2.vo.llnwd.net", + "domain":"vudu-2.vo.llnwd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"images2.vudu.com", + "domain":"images2.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"images.vudu.com", + "domain":"images.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cs7.vudu.com", + "domain":"cs7.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cs8.vudu.com", + "domain":"cs8.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cs9.vudu.com", + "domain":"cs9.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cs11.vudu.com", + "domain":"cs11.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cs12.vudu.com", + "domain":"cs12.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cs13.vudu.com", + "domain":"cs13.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cs14.vudu.com", + "domain":"cs14.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cs10.vudu.com", + "domain":"cs10.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"websocket-cs.vudu.com", + "domain":"websocket-cs.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startup-msr.vvond.net", + "domain":"startup-msr.vvond.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"httppolling-cs.vudu.com", + "domain":"httppolling-cs.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ws.media.net.wwe.com", + "domain":"ws.media.net.wwe.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"secure.net.wwe.com", + "domain":"secure.net.wwe.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.wwe.com", + "domain":"www.wwe.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api-app.espn.com", + "domain":"api-app.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.espn.com", + "domain":"api.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"broadband.espn.com", + "domain":"broadband.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.espn.go.com", + "domain":"www.espn.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"espn.go.com", + "domain":"espn.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.espn.com", + "domain":"www.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"affiliate.api.espn.com", + "domain":"affiliate.api.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fan.api.espn.com", + "domain":"fan.api.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"w88.espn.com", + "domain":"w88.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"artwork.api.espn.com", + "domain":"artwork.api.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tredir.espn.com", + "domain":"tredir.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"watchproductapi.prod.geo.espn.com", + "domain":"watchproductapi.prod.geo.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"watch.product.api.espn.com", + "domain":"watch.product.api.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"secure.espncdn.com", + "domain":"secure.espncdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"plus.espn.com", + "domain":"plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"secure.web.plus.espn.com", + "domain":"secure.web.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"search-api.svcs.plus.espn.com", + "domain":"search-api.svcs.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"edge.bamgrid.com", + "domain":"edge.bamgrid.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn.unid.go.com", + "domain":"cdn.unid.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sportscenter.fan.api.espn.com", + "domain":"sportscenter.fan.api.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sportscenter.api.espn.com", + "domain":"sportscenter.api.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"appconfigs.web.plus.espn.com", + "domain":"appconfigs.web.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"playback.svcs.plus.espn.com", + "domain":"playback.svcs.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"a.espncdn.com", + "domain":"a.espncdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"bam-sdk-configs.bamgrid.com", + "domain":"bam-sdk-configs.bamgrid.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"bam.nr-data.net", + "domain":"bam.nr-data.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"watch.api.espn.com", + "domain":"watch.api.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"watch.auth.api.espn.go.com", + "domain":"watch.auth.api.espn.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"site.web.api.espn.com", + "domain":"site.web.api.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"secure.espn.com", + "domain":"secure.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"r.espn.com", + "domain":"r.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s.secure.espncdn.com", + "domain":"s.secure.espncdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"onefeed.fan.api.espn.com", + "domain":"onefeed.fan.api.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"watch.auth.api.espn.com", + "domain":"watch.auth.api.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"watch.graph.api.espn.com", + "domain":"watch.graph.api.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sw88.go.com", + "domain":"sw88.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sw88.espn.com", + "domain":"sw88.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.artwork.espncdn.com", + "domain":"www.artwork.espncdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nhlinteractivecybere.tt.omtrdc.net", + "domain":"nhlinteractivecybere.tt.omtrdc.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.usopen.org", + "domain":"www.usopen.org", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"usgageo.edgesuite.net", + "domain":"usgageo.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"usopen2011-f.akamaihd.net", + "domain":"usopen2011-f.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.apptentive.com", + "domain":"api.apptentive.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"video.pbs.org", + "domain":"video.pbs.org", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.pbs.org", + "domain":"www.pbs.org", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"urs.pbs.org", + "domain":"urs.pbs.org", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"localization.services.pbs.org", + "domain":"localization.services.pbs.org", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"player.pbs.org", + "domain":"player.pbs.org", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.spiritclips.com", + "domain":"api.spiritclips.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"player.ooyala.com", + "domain":"player.ooyala.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"d0.tubitv.com", + "domain":"d0.tubitv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"amolio.fubo.tv", + "domain":"amolio.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.viki.io", + "domain":"api.viki.io", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"collector.viki.io", + "domain":"collector.viki.io", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.viki.com", + "domain":"www.viki.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.willow.tv", + "domain":"www.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"appletv.willow.tv", + "domain":"appletv.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mdallas1.willow.tv", + "domain":"mdallas1.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"eventlog.willow.tv", + "domain":"eventlog.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.knowledge.ca", + "domain":"www.knowledge.ca", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"esi.ctv.ca", + "domain":"esi.ctv.ca", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"capi.9c9media.com", + "domain":"capi.9c9media.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"new.livestream.com", + "domain":"new.livestream.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.new.livestream.com", + "domain":"api.new.livestream.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"livestream.com", + "domain":"livestream.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn.livestream.com", + "domain":"cdn.livestream.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"player-api.new.livestream.com", + "domain":"player-api.new.livestream.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"access.video.qq.com", + "domain":"access.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cache.video.iqiyi.com", + "domain":"cache.video.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t7z.cupid.iqiyi.com", + "domain":"t7z.cupid.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"data.video.iqiyi.com", + "domain":"data.video.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"control-i.iqiyi.com", + "domain":"control-i.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pcw-api.iqiyi.com", + "domain":"pcw-api.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"qiqu.iqiyi.com", + "domain":"qiqu.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"msg.qy.net", + "domain":"msg.qy.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.channel4.com", + "domain":"api.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.channel4.com", + "domain":"www.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"amazonfire-p06.channel4.com", + "domain":"amazonfire-p06.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ios.channel4.com", + "domain":"ios.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"goan.sky.com", + "domain":"goan.sky.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.sky.com", + "domain":"www.sky.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"goio.sky.com", + "domain":"goio.sky.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sgw.skyanywhere.com", + "domain":"sgw.skyanywhere.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"uapi.staging.simplestream.com", + "domain":"uapi.staging.simplestream.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"epg.cdn.vision.bt.com", + "domain":"epg.cdn.vision.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t.appsflyer.com", + "domain":"t.appsflyer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"eu-west-1-api.svcs.eurosportplayer.com", + "domain":"eu-west-1-api.svcs.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"global-api.svcs.eurosportplayer.com", + "domain":"global-api.svcs.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"secure.web.eurosportplayer.com", + "domain":"secure.web.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"frontend-gateway.svcs.eurosportplayer.com", + "domain":"frontend-gateway.svcs.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"subscription.svcs.eurosportplayer.com", + "domain":"subscription.svcs.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"proxyservices.svcs.eurosportplayer.com", + "domain":"proxyservices.svcs.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"eu3-prod-direct.eurosportplayer.com", + "domain":"eu3-prod-direct.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.eurosport.com", + "domain":"www.eurosport.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"auth.eurosport.co.uk", + "domain":"auth.eurosport.co.uk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"admin.brightcove.com", + "domain":"admin.brightcove.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c.brightcove.com", + "domain":"c.brightcove.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"geo.wilmaa.com", + "domain":"geo.wilmaa.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"teleboy.customers.cdn.iptv.ch", + "domain":"teleboy.customers.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"wilmaa-jitp.customers.cdn.iptv.ch", + "domain":"wilmaa-jitp.customers.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"streams.wilmaa.com", + "domain":"streams.wilmaa.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t.teleboy.ch", + "domain":"t.teleboy.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.wilmaa.com", + "domain":"api.wilmaa.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"xml.fullepg.wilmaa.com", + "domain":"xml.fullepg.wilmaa.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"srg.live.ott.irdeto.com", + "domain":"srg.live.ott.irdeto.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"prod-player.tf1.fr", + "domain":"prod-player.tf1.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mediainfo.tf1.fr", + "domain":"mediainfo.tf1.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tv.nrk.no", + "domain":"tv.nrk.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvapi.nrk.no", + "domain":"tvapi.nrk.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"atv.nrk.no", + "domain":"atv.nrk.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"psapi.nrk.no", + "domain":"psapi.nrk.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrk-live-no.telenorcdn.net", + "domain":"nrk-live-no.telenorcdn.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fargerik-psapi.nrk.no", + "domain":"fargerik-psapi.nrk.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"isl.dr-massive.com", + "domain":"isl.dr-massive.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"static.dr-massive.com", + "domain":"static.dr-massive.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"deliver.oztam.com.au", + "domain":"deliver.oztam.com.au", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sportzsdk.hotstar.com", + "domain":"sportzsdk.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"geoip.hotstar.com", + "domain":"geoip.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hses1.akamaized.net", + "domain":"hses1.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hses2.akamaized.net", + "domain":"hses2.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zattoo.com", + "domain":"zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zapi.zattoo.com", + "domain":"zapi.zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zapi0001.zattoo.com", + "domain":"zapi0001.zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zapi0215.zattoo.com", + "domain":"zapi0215.zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zapi0088.zattoo.com", + "domain":"zapi0088.zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zapi0016.zattoo.com", + "domain":"zapi0016.zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zapi0106.zattoo.com", + "domain":"zapi0106.zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zapi0087.zattoo.com", + "domain":"zapi0087.zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live07.hotstar.com", + "domain":"live07.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live01.hotstar.com", + "domain":"live01.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live02.hotstar.com", + "domain":"live02.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live03.hotstar.com", + "domain":"live03.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live04.hotstar.com", + "domain":"live04.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live05.hotstar.com", + "domain":"live05.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live06.hotstar.com", + "domain":"live06.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live08.hotstar.com", + "domain":"live08.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live09.hotstar.com", + "domain":"live09.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live10.hotstar.com", + "domain":"live10.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hses4.akamaized.net", + "domain":"hses4.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hses3.akamaized.net", + "domain":"hses3.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hses4.hotstar.com", + "domain":"hses4.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hses3.hotstar.com", + "domain":"hses3.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hses2.hotstar.com", + "domain":"hses2.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hses1.hotstar.com", + "domain":"hses1.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hses5.hotstar.com", + "domain":"hses5.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"owner.roku.com", + "domain":"owner.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"channels.roku.com", + "domain":"channels.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"search.roku.com", + "domain":"search.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.roku.com", + "domain":"www.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"channelstore.roku.com", + "domain":"channelstore.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"plugins.roku.com", + "domain":"plugins.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"plugins.qa.roku.com", + "domain":"plugins.qa.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"amoeba.web.roku.com", + "domain":"amoeba.web.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"austin.sw.roku.com", + "domain":"austin.sw.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"austin.sb.roku.com", + "domain":"austin.sb.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"captive.roku.com", + "domain":"captive.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"configsvc.cs.roku.com", + "domain":"configsvc.cs.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"edge.roku-vod.top.comcast.net", + "domain":"edge.roku-vod.top.comcast.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"my.roku.com", + "domain":"my.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"roku.globaltivi.com", + "domain":"roku.globaltivi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"therokuchannel.roku.com", + "domain":"therokuchannel.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vidmark-mdc.akamaized.net", + "domain":"vidmark-mdc.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"track.sr.roku.com", + "domain":"track.sr.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"content.sr.roku.com", + "domain":"content.sr.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c-ls.mgo-images.com", + "domain":"c-ls.mgo-images.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c-catalog.mgo-images.com", + "domain":"c-catalog.mgo-images.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ls.cti.roku.com", + "domain":"ls.cti.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"lat-services.api.data.roku.com", + "domain":"lat-services.api.data.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"scribe.logs.roku.com", + "domain":"scribe.logs.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"rights-manager.sr.roku.com", + "domain":"rights-manager.sr.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"gilbert.sb.roku.com", + "domain":"gilbert.sb.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ravm.tv", + "domain":"ravm.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"os.fandango.com", + "domain":"os.fandango.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"authentication.mgo.com", + "domain":"authentication.mgo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"apiweb.roku.com", + "domain":"apiweb.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vod.delivery.roku.com", + "domain":"vod.delivery.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"prod.mobile.roku.com", + "domain":"prod.mobile.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"prd-geolookup.mgo.com", + "domain":"prd-geolookup.mgo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"amoeba-plus.web.roku.com", + "domain":"amoeba-plus.web.roku.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.mgo.com", + "domain":"www.mgo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"servicesfacade.mgo.com", + "domain":"servicesfacade.mgo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"prd-smoothstreaming.mgo.com", + "domain":"prd-smoothstreaming.mgo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"devicemedia.mgo.com", + "domain":"devicemedia.mgo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.wdtvlive.com", + "domain":"www.wdtvlive.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"res.boxee.tv", + "domain":"res.boxee.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"app.boxee.tv", + "domain":"app.boxee.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dir.boxee.tv", + "domain":"dir.boxee.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"0.ping.boxee.tv", + "domain":"0.ping.boxee.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"1.ping.boxee.tv", + "domain":"1.ping.boxee.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"2.ping.boxee.tv", + "domain":"2.ping.boxee.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"3.ping.boxee.tv", + "domain":"3.ping.boxee.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"4.ping.boxee.tv", + "domain":"4.ping.boxee.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"5.ping.boxee.tv", + "domain":"5.ping.boxee.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"6.ping.boxee.tv", + "domain":"6.ping.boxee.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"7.ping.boxee.tv", + "domain":"7.ping.boxee.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"8.ping.boxee.tv", + "domain":"8.ping.boxee.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"9.ping.boxee.tv", + "domain":"9.ping.boxee.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.logitech.com", + "domain":"www.logitech.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mysqueezebox.com", + "domain":"mysqueezebox.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.mysqueezebox.com", + "domain":"www.mysqueezebox.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mediaserver-sv5-rt-1.pandora.com", + "domain":"mediaserver-sv5-rt-1.pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mediaserver-sv5-rt-1-v4v6.pandora.com", + "domain":"mediaserver-sv5-rt-1-v4v6.pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ce.pandora.com", + "domain":"ce.pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mediaserver-cont-ch1-2-v4v6.pandora.com", + "domain":"mediaserver-cont-ch1-2-v4v6.pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mediaserver-cont-sv5-3-v4v6.pandora.com", + "domain":"mediaserver-cont-sv5-3-v4v6.pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"internal-tuner.pandora.com", + "domain":"internal-tuner.pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cont-1.p-cdn.com", + "domain":"cont-1.p-cdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cont-2.p-cdn.com", + "domain":"cont-2.p-cdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"avs-alexa-na.amazon.com", + "domain":"avs-alexa-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"android-tuner.pandora.com", + "domain":"android-tuner.pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pandora.com", + "domain":"pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pandoramedia-mkt-prod1-t.campaign.adobe.com", + "domain":"pandoramedia-mkt-prod1-t.campaign.adobe.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mediaserver-cont-usc-mp1-1-v4v6.pandora.com", + "domain":"mediaserver-cont-usc-mp1-1-v4v6.pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"web-cdn.pandora.com", + "domain":"web-cdn.pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s.hoplon.pandora.com", + "domain":"s.hoplon.pandora.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"metadata.erabu.sony.tv", + "domain":"metadata.erabu.sony.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.erabu.sony.tv", + "domain":"api.erabu.sony.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.sony.net", + "domain":"www.sony.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.amazon.com", + "domain":"www.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.amazon.de", + "domain":"www.amazon.de", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.amazon.co.uk", + "domain":"www.amazon.co.uk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.amazon.co.jp", + "domain":"www.amazon.co.jp", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"na.api.amazonvideo.com", + "domain":"na.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"eu.api.amazonvideo.com", + "domain":"eu.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"andr-785f3ec7eb-cbc62794911ff31b-a93c5fcf2ef7a8b7c6-950312.na.api.amazonvideo.com", + "domain":"andr-785f3ec7eb-cbc62794911ff31b-a93c5fcf2ef7a8b7c6-950312.na.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"andr-785f3ec7eb-cbc62794911ff31b-a93c5fcf2ef7a8b7c6-950312.fe.api.amazonvideo.com", + "domain":"andr-785f3ec7eb-cbc62794911ff31b-a93c5fcf2ef7a8b7c6-950312.fe.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.amazon.in", + "domain":"www.amazon.in", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"primevideo.com", + "domain":"primevideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.primevideo.com", + "domain":"www.primevideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"atv-ps-eu.amazon.de", + "domain":"atv-ps-eu.amazon.de", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"prime.amazon.com", + "domain":"prime.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"andr-785f3ec7eb-cbc62794911ff31b-a93c5fcf2ef7a8b7c6-970805.eu.api.amazonvideo.com", + "domain":"andr-785f3ec7eb-cbc62794911ff31b-a93c5fcf2ef7a8b7c6-970805.eu.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"xbox-one-du-10-0-15063-3054-3-3-34-6.api.amazonvideo.com", + "domain":"xbox-one-du-10-0-15063-3054-3-3-34-6.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aviary.amazon.de", + "domain":"aviary.amazon.de", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"prod.amazoncrl.com", + "domain":"prod.amazoncrl.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"atv-ps-fe.amazon.co.jp", + "domain":"atv-ps-fe.amazon.co.jp", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mas-sdk-eu.amazon.com", + "domain":"mas-sdk-eu.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aax-eu.amazon-adsystem.com", + "domain":"aax-eu.amazon-adsystem.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.us-east-1.aiv-delivery.net", + "domain":"api.us-east-1.aiv-delivery.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ign-a2ehf10z0yhpek-1d0d2d6-1d0d2d6.api.amazonvideo.com", + "domain":"ign-a2ehf10z0yhpek-1d0d2d6-1d0d2d6.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ags-ext.amazon.com", + "domain":"ags-ext.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"na.account.amazon.com", + "domain":"na.account.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"andr-22-AFTB-600612710.api.amazonvideo.com", + "domain":"andr-22-AFTB-600612710.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mas-ssr.amazon.com", + "domain":"mas-ssr.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aviary.amazon.com", + "domain":"aviary.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ktpx.amazon.com", + "domain":"ktpx.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mas-ext.amazon.com", + "domain":"mas-ext.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dp-discovery-na-ext.amazon.com", + "domain":"dp-discovery-na-ext.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"msh.amazon.com", + "domain":"msh.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pitangui.amazon.com", + "domain":"pitangui.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"primenow.amazon.com", + "domain":"primenow.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"services.amazon.com", + "domain":"services.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"kdp.amazon.com", + "domain":"kdp.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"coin.amazonpay.com", + "domain":"coin.amazonpay.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"unagi-eu.amazon.com", + "domain":"unagi-eu.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"atv-ps-fe.primevideo.com", + "domain":"atv-ps-fe.primevideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"amazonmmdeu-ic-7bf39f00-08f65a-pr.s.loris.llnwd.net", + "domain":"amazonmmdeu-ic-7bf39f00-08f65a-pr.s.loris.llnwd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"amazonmmd-eu-pr.hs.llnwd.net", + "domain":"amazonmmd-eu-pr.hs.llnwd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"det-ta-g7g.amazon.com", + "domain":"det-ta-g7g.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pinpoint.us-east-1.amazonaws.com", + "domain":"pinpoint.us-east-1.amazonaws.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"app.primevideo.com", + "domain":"app.primevideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fls-eu.amazon.in", + "domain":"fls-eu.amazon.in", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"eu.api.amazonvideo.in", + "domain":"eu.api.amazonvideo.in", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"frank-comp-na.amazon.com", + "domain":"frank-comp-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ftvr-na.amazon.com", + "domain":"ftvr-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"appstore-tv-prod-na.amazon.com", + "domain":"appstore-tv-prod-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"primevideo-dp-na.imdb.com", + "domain":"primevideo-dp-na.imdb.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.imdb.com", + "domain":"www.imdb.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m.imdb.com", + "domain":"m.imdb.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m.media-amazon.com", + "domain":"m.media-amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.us-west-2.aiv-delivery.net", + "domain":"api.us-west-2.aiv-delivery.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"andr.na.ec.api.amazonvideo.com", + "domain":"andr.na.ec.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dna.amazon.com", + "domain":"dna.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"msh.amazon.co.uk", + "domain":"msh.amazon.co.uk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cognito-identity.us-east-1.amazonaws.com", + "domain":"cognito-identity.us-east-1.amazonaws.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ktpx-uk.amazon.com", + "domain":"ktpx-uk.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"a3jtvzs340-53cb997a-a047f305-e4f99133-13908f40.na.ec.api.amazonvideo.com", + "domain":"a3jtvzs340-53cb997a-a047f305-e4f99133-13908f40.na.ec.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"watch.amazon.com", + "domain":"watch.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"andr-22-aftt-0.api.amazonvideo.com", + "domain":"andr-22-aftt-0.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"antv-26-nvidia-shieldandroidtv-412000500.api.amazonvideo.com", + "domain":"antv-26-nvidia-shieldandroidtv-412000500.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"andr-22-afts-0.api.amazonvideo.com", + "domain":"andr-22-afts-0.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"prime.amazon.eu", + "domain":"prime.amazon.eu", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"msh.amazon.co.jp", + "domain":"msh.amazon.co.jp", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.amazon.ca", + "domain":"www.amazon.ca", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fls-na.amazon.ca", + "domain":"fls-na.amazon.ca", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"wl.amazon-dss.com", + "domain":"wl.amazon-dss.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"andr.fe.ec.api.amazonvideo.com", + "domain":"andr.fe.ec.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"q419aw9zfb4fa0.api.amazonvideo.com", + "domain":"q419aw9zfb4fa0.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.imdbws.com", + "domain":"api.imdbws.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ios-app-config.media-imdb.com", + "domain":"ios-app-config.media-imdb.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"firebat.api.amazonvideo.com", + "domain":"firebat.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"unagi.amazon.ca", + "domain":"unagi.amazon.ca", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"unagi-fe.amazon.com", + "domain":"unagi-fe.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"unagi.amazon.com", + "domain":"unagi.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"unagi.amazon.de", + "domain":"unagi.amazon.de", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ipv6.unagi-na.amazon.com", + "domain":"ipv6.unagi-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"remoteconfig-na.amazon.com", + "domain":"remoteconfig-na.amazon.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.amazon.es", + "domain":"www.amazon.es", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"unagi.amazon.es", + "domain":"unagi.amazon.es", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"global.backend.imdbtv-services.amazon.dev", + "domain":"global.backend.imdbtv-services.amazon.dev", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"avpk-a3vn4e5f7bbc7s-1.na.api.amazonvideo.com", + "domain":"avpk-a3vn4e5f7bbc7s-1.na.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"avpk-a3vn4e5f7bbc7s-1.api.amazonvideo.com", + "domain":"avpk-a3vn4e5f7bbc7s-1.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"avpk-a3vn4e5f7bbc7s-1.fe.api.amazonvideo.com", + "domain":"avpk-a3vn4e5f7bbc7s-1.fe.api.amazonvideo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.amazon.fr", + "domain":"www.amazon.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fls-eu.amazon.fr", + "domain":"fls-eu.amazon.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"unagi.amazon.fr", + "domain":"unagi.amazon.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"unagi.amazon.co.jp", + "domain":"unagi.amazon.co.jp", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fls-fe.amazon.com.au", + "domain":"fls-fe.amazon.com.au", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"unagi.amazon.com.au", + "domain":"unagi.amazon.com.au", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"open.spotify.com", + "domain":"open.spotify.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"spclient.wg.spotify.com", + "domain":"spclient.wg.spotify.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"apresolve.spotify.com", + "domain":"apresolve.spotify.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mobile-ap.spotify.com", + "domain":"mobile-ap.spotify.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api2.iheart.com", + "domain":"api2.iheart.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"us.api.iheart.com", + "domain":"us.api.iheart.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"au.api.iheart.com", + "domain":"au.api.iheart.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nz.api.iheart.com", + "domain":"nz.api.iheart.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"global.api.iheart.com", + "domain":"global.api.iheart.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"play.itunes.apple.com", + "domain":"play.itunes.apple.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"play-edge.itunes.apple.com", + "domain":"play-edge.itunes.apple.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tv.applemusic.com", + "domain":"tv.applemusic.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear.tv.apple.com", + "domain":"linear.tv.apple.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"captive.apple.com", + "domain":"captive.apple.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"upp.itunes.apple.com", + "domain":"upp.itunes.apple.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mediaservices.cdn-apple.com", + "domain":"mediaservices.cdn-apple.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pd.itunes.apple.com", + "domain":"pd.itunes.apple.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"apptrailers.itunes.apple.com", + "domain":"apptrailers.itunes.apple.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"playerservices.streamtheworld.com", + "domain":"playerservices.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mobileroadie.com", + "domain":"mobileroadie.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"14653.live.streamtheworld.com", + "domain":"14653.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"9313.live.streamtheworld.com", + "domain":"9313.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"14773.live.streamtheworld.com", + "domain":"14773.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"9513.live.streamtheworld.com", + "domain":"9513.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"14633.live.streamtheworld.com", + "domain":"14633.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"10433.live.streamtheworld.com", + "domain":"10433.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"9303.live.streamtheworld.com", + "domain":"9303.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"1351.live.streamtheworld.com", + "domain":"1351.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"8343.live.streamtheworld.com", + "domain":"8343.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"9453.live.streamtheworld.com", + "domain":"9453.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"13993.live.streamtheworld.com", + "domain":"13993.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"14013.live.streamtheworld.com", + "domain":"14013.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"14093.live.streamtheworld.com", + "domain":"14093.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"14623.live.streamtheworld.com", + "domain":"14623.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"15123.live.streamtheworld.com", + "domain":"15123.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"15213.live.streamtheworld.com", + "domain":"15213.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"15233.live.streamtheworld.com", + "domain":"15233.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"15273.live.streamtheworld.com", + "domain":"15273.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"13743.live.streamtheworld.com", + "domain":"13743.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"14023.live.streamtheworld.com", + "domain":"14023.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"14083.live.streamtheworld.com", + "domain":"14083.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"15363.live.streamtheworld.com", + "domain":"15363.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"17793.live.streamtheworld.com", + "domain":"17793.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"14103.live.streamtheworld.com", + "domain":"14103.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"13693.live.streamtheworld.com", + "domain":"13693.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"18443.live.streamtheworld.com", + "domain":"18443.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"17523.live.streamtheworld.com", + "domain":"17523.live.streamtheworld.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tidalhifi.com", + "domain":"tidalhifi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"getlossless.com", + "domain":"getlossless.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"go.tidalhifi.com", + "domain":"go.tidalhifi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"listen.tidalhifi.com", + "domain":"listen.tidalhifi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tidal.com", + "domain":"tidal.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"appletv.abcfamily.go.com", + "domain":"appletv.abcfamily.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.mobile.aws.abcf.seabc.go.com", + "domain":"api.mobile.aws.abcf.seabc.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.watchabc.go.com", + "domain":"api.watchabc.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.entitlement.watchabc.go.com", + "domain":"api.entitlement.watchabc.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"abc.go.com", + "domain":"abc.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.utils.watchabc.go.com", + "domain":"api.utils.watchabc.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"appletv.abc.go.com", + "domain":"appletv.abc.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.profile.abc.go.com", + "domain":"api.profile.abc.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"prod.gatekeeper.us-abc.symphony.edgedatg.go.com", + "domain":"prod.gatekeeper.us-abc.symphony.edgedatg.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.telemetry.watchabc.go.com", + "domain":"api.telemetry.watchabc.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.pluto.watchabc.go.com", + "domain":"api.pluto.watchabc.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sw88.go.com", + "domain":"sw88.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"prod.gatekeeper.us-abc.symphony.edgedatg.com", + "domain":"prod.gatekeeper.us-abc.symphony.edgedatg.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"unid.go.com", + "domain":"unid.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"w88.go.com", + "domain":"w88.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.eu-west-1.aiv-delivery.net", + "domain":"api.eu-west-1.aiv-delivery.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"streams.adobeprimetime.com", + "domain":"streams.adobeprimetime.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn.video.abc.com", + "domain":"cdn.video.abc.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ios.unid.go.com", + "domain":"ios.unid.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"itsliveradio.apple.com", + "domain":"itsliveradio.apple.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"itsliveradiobackup.apple.com", + "domain":"itsliveradiobackup.apple.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"music.163.com", + "domain":"music.163.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m10.music.126.net", + "domain":"m10.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ipservice.163.com", + "domain":"ipservice.163.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m2.music.126.net", + "domain":"m2.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1.music.126.net", + "domain":"s1.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"p1.music.126.net", + "domain":"p1.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"p2.music.126.net", + "domain":"p2.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"p3.music.126.net", + "domain":"p3.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"p4.music.126.net", + "domain":"p4.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"p5.music.126.net", + "domain":"p5.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"p6.music.126.net", + "domain":"p6.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"p7.music.126.net", + "domain":"p7.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"p8.music.126.net", + "domain":"p8.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"p9.music.126.net", + "domain":"p9.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m1.music.126.net", + "domain":"m1.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m3.music.126.net", + "domain":"m3.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m4.music.126.net", + "domain":"m4.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m5.music.126.net", + "domain":"m5.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m6.music.126.net", + "domain":"m6.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m7.music.126.net", + "domain":"m7.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m8.music.126.net", + "domain":"m8.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m9.music.126.net", + "domain":"m9.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"wanproxy.127.net", + "domain":"wanproxy.127.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"music.httpdns.c.163.com", + "domain":"music.httpdns.c.163.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dongfeng.alicdn.com", + "domain":"dongfeng.alicdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"wanproxy-hz.127.net", + "domain":"wanproxy-hz.127.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"wanproxy-bj.127.net", + "domain":"wanproxy-bj.127.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"wanproxy-oversea.127.net", + "domain":"wanproxy-oversea.127.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nstool.netease.com", + "domain":"nstool.netease.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"gslb.live.126.net", + "domain":"gslb.live.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"interface.music.163.com", + "domain":"interface.music.163.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"web.push.126.net", + "domain":"web.push.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"iadmat.nosdn.127.net", + "domain":"iadmat.nosdn.127.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"163music.azurewebsites.net", + "domain":"163music.azurewebsites.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sitemap.163.com", + "domain":"sitemap.163.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ac.dun.163yun.com", + "domain":"ac.dun.163yun.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"help.163.com", + "domain":"help.163.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"crash.163.com", + "domain":"crash.163.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"clientlog.music.163.com", + "domain":"clientlog.music.163.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"only-770054-47-94-87-143.nstool.netease.com", + "domain":"only-770054-47-94-87-143.nstool.netease.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mr.da.netease.com", + "domain":"mr.da.netease.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mam.netease.com", + "domain":"mam.netease.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"rec.g.163.com", + "domain":"rec.g.163.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"iad.g.163.com", + "domain":"iad.g.163.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"wr.da.netease.com", + "domain":"wr.da.netease.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s3.music.126.net", + "domain":"s3.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s4.music.126.net", + "domain":"s4.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s2.music.126.net", + "domain":"s2.music.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"acstatic-dun.126.net", + "domain":"acstatic-dun.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"img3.126.net", + "domain":"img3.126.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sp0.baidu.com", + "domain":"sp0.baidu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"only-634895-47-94-87-143.nstool.netease.com", + "domain":"only-634895-47-94-87-143.nstool.netease.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"web-api-us.crackle.com", + "domain":"web-api-us.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"roku-api-us.crackle.com", + "domain":"roku-api-us.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"legacyweb-us.crackle.com", + "domain":"legacyweb-us.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"content-ause3.uplynk.com", + "domain":"content-ause3.uplynk.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"images-us-az.crackle.com", + "domain":"images-us-az.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"content-ause4.uplynk.com", + "domain":"content-ause4.uplynk.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"android-fire-tv-api-us.crackle.com", + "domain":"android-fire-tv-api-us.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"android-tv-api-us.crackle.com", + "domain":"android-tv-api-us.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api-v1-us.crackle.com", + "domain":"api-v1-us.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sonytv-api-us.crackle.com", + "domain":"sonytv-api-us.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ipad-api-us.crackle.com", + "domain":"ipad-api-us.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.sonycrackle.com", + "domain":"www.sonycrackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m.sonycrackle.com", + "domain":"m.sonycrackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"roku-v2-api-us.crackle.com", + "domain":"roku-v2-api-us.crackle.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"crackleott.s3.amazonaws.com", + "domain":"crackleott.s3.amazonaws.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.xiami.com", + "domain":"www.xiami.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"spark.api.xiami.com", + "domain":"spark.api.xiami.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"music.xiami.com", + "domain":"music.xiami.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"play.baidu.com", + "domain":"play.baidu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"music.baidu.com", + "domain":"music.baidu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tingapi.ting.baidu.com", + "domain":"tingapi.ting.baidu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.kkbox.com", + "domain":"www.kkbox.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ssl.kkbox.com", + "domain":"ssl.kkbox.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api-login.kkbox.com.tw", + "domain":"api-login.kkbox.com.tw", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.tbs.com", + "domain":"www.tbs.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.tntdrama.com", + "domain":"www.tntdrama.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"phds-live.cdn.turner.com", + "domain":"phds-live.cdn.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aspen.turner.com", + "domain":"aspen.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"token.vgtf.net", + "domain":"token.vgtf.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"data.tbs.com", + "domain":"data.tbs.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tve-vod.cdn.turner.com", + "domain":"tve-vod.cdn.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tnteast-i.akamaihd.net", + "domain":"tnteast-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tntwest-i.akamaihd.net", + "domain":"tntwest-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tbseast-i.akamaihd.net", + "domain":"tbseast-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tbswest-i.akamaihd.net", + "domain":"tbswest-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"apple-secure.cdn.turner.com", + "domain":"apple-secure.cdn.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tve.cdn.turner.com", + "domain":"tve.cdn.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"i.cdn.tntdrama.com", + "domain":"i.cdn.tntdrama.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cvp1.cdn.turner.com", + "domain":"cvp1.cdn.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tbseastlive-i.akamaihd.net", + "domain":"tbseastlive-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tbswestlive-i.akamaihd.net", + "domain":"tbswestlive-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tnteastlive-i.akamaihd.net", + "domain":"tnteastlive-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tntwestlive-i.akamaihd.net", + "domain":"tntwestlive-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"turnerlive.akamaized.net", + "domain":"turnerlive.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"z.cdn.turner.com", + "domain":"z.cdn.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tve-vod-preview.cdn.turner.com", + "domain":"tve-vod-preview.cdn.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tbs-vh.akamaihd.net", + "domain":"tbs-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tbs.com", + "domain":"tbs.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tve-live-ctl.warnermediacdn.com", + "domain":"tve-live-ctl.warnermediacdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tve-live-aka.warnermediacdn.com", + "domain":"tve-live-aka.warnermediacdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tve-vod-ctl.warnermediacdn.com", + "domain":"tve-vod-ctl.warnermediacdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tve-vod-aka.warnermediacdn.com", + "domain":"tve-vod-aka.warnermediacdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"adultswim-vodlive.cdn.turner.com", + "domain":"adultswim-vodlive.cdn.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.adultswim.com", + "domain":"api.adultswim.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"identity.api.wmcdp.io", + "domain":"identity.api.wmcdp.io", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tve-ssai-aka.warnermediacdn.com", + "domain":"tve-ssai-aka.warnermediacdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvem.cdn.turner.com", + "domain":"tvem.cdn.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.tcm.com", + "domain":"www.tcm.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.hbogo.com", + "domain":"www.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pdl.misc.lv3.hbogo.com", + "domain":"pdl.misc.lv3.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"smooth.pro17.lv3.hbogo.com", + "domain":"smooth.pro17.lv3.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hds.pro12.lv3.hbogo.com", + "domain":"hds.pro12.lv3.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"smooth.misc.lv3.hbogo.com", + "domain":"smooth.misc.lv3.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"atv.lv3.hbogo.com", + "domain":"atv.lv3.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hbogo.com", + "domain":"hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"play.hbogo.com", + "domain":"play.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"secure.hbogo.com", + "domain":"secure.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"snowball.api.hbo.com", + "domain":"snowball.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"concierge.api.hbo.com", + "domain":"concierge.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"activate.hbogo.com", + "domain":"activate.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"smooth.misc.akm.hbogo.com", + "domain":"smooth.misc.akm.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"shop.hbo.com", + "domain":"shop.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.hbostore.co.uk", + "domain":"www.hbostore.co.uk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aracahq.com", + "domain":"aracahq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pdl.misc.akm.hbogo.com", + "domain":"pdl.misc.akm.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"livepassdl.conviva.com", + "domain":"livepassdl.conviva.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"watch.hbo.com", + "domain":"watch.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"order.hbonow.com", + "domain":"order.hbonow.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"smetrics.hbonow.com", + "domain":"smetrics.hbonow.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hbobroadband.sc.omtrdc.net", + "domain":"hbobroadband.sc.omtrdc.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"devicecast.hbogo.com", + "domain":"devicecast.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"activate.hbonow.com", + "domain":"activate.hbonow.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"device.hbonow.com", + "domain":"device.hbonow.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"appletv-api.lv3.cdn.hbo.com", + "domain":"appletv-api.lv3.cdn.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"appletv.api.hbo.com", + "domain":"appletv.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"subscribe.hbonow.com", + "domain":"subscribe.hbonow.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hbogeo.cust.footprint.net", + "domain":"hbogeo.cust.footprint.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"geo.hbo.com", + "domain":"geo.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"smooth.pro17.cf.cdn.hbogo.com", + "domain":"smooth.pro17.cf.cdn.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"smooth.pro17.lln.cdn.hbogo.com", + "domain":"smooth.pro17.lln.cdn.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"affiliatelogos.fly.cdn.hbogo.com", + "domain":"affiliatelogos.fly.cdn.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"media.fly.cdn.hbomax.com", + "domain":"media.fly.cdn.hbomax.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hbomax.com", + "domain":"hbomax.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"help.hbonow.com", + "domain":"help.hbonow.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"play.hbomax.com", + "domain":"play.hbomax.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"help.hbomax.com", + "domain":"help.hbomax.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"trickplay.pro42.fly.cdn.hbogo.com", + "domain":"trickplay.pro42.fly.cdn.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dash.pro42.lln.cdn.hbogo.com", + "domain":"dash.pro42.lln.cdn.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"device.hbomax.com", + "domain":"device.hbomax.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"artist.api.cdn.hbo.com", + "domain":"artist.api.cdn.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hbo.map.fastly.net", + "domain":"hbo.map.fastly.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"chromecast.cdn.hbogo.com", + "domain":"chromecast.cdn.hbogo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"atv.api.akm.cdn.hbo.com", + "domain":"atv.api.akm.cdn.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"gateway.api.hbo.com", + "domain":"gateway.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dynamic-content-frontdoor.api.hbo.com", + "domain":"dynamic-content-frontdoor.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sessions-us.api.hbo.com", + "domain":"sessions-us.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"commerce-experience-latam.api.hbo.com", + "domain":"commerce-experience-latam.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"markers-latam.api.hbo.com", + "domain":"markers-latam.api.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dualstack.hbo.map.fastly.net", + "domain":"dualstack.hbo.map.fastly.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"herald.caps.hbo.com", + "domain":"herald.caps.hbo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dgoauth.discovery.com", + "domain":"dgoauth.discovery.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.discoverygo.com", + "domain":"www.discoverygo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.discovery.com", + "domain":"api.discovery.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"login.discovery.com", + "domain":"login.discovery.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dscusvod-vh.akamaihd.net", + "domain":"dscusvod-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"uslivediscovery-lh.akamaihd.net", + "domain":"uslivediscovery-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"usliveapl-lh.akamaihd.net", + "domain":"usliveapl-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"uslivetlc-lh.akamaihd.net", + "domain":"uslivetlc-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"usliveid-lh.akamaihd.net", + "domain":"usliveid-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"uslivescience-lh.akamaihd.net", + "domain":"uslivescience-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"uslivevel-lh.akamaihd.net", + "domain":"uslivevel-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"usliveahc-lh.akamaihd.net", + "domain":"usliveahc-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"uslivedam-lh.akamaihd.net", + "domain":"uslivedam-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"usliveaplhls-i.akamaihd.net", + "domain":"usliveaplhls-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"uslivedschls-i.akamaihd.net", + "domain":"uslivedschls-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"uslivetlchls-i.akamaihd.net", + "domain":"uslivetlchls-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"usliveidshls-i.akamaihd.net", + "domain":"usliveidshls-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.discovery.com", + "domain":"www.discovery.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"go.discovery.com", + "domain":"go.discovery.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"media.mtvnservices.com", + "domain":"media.mtvnservices.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.spike.com", + "domain":"www.spike.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"intl.esperanto.mtvi.com", + "domain":"intl.esperanto.mtvi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.cc.com", + "domain":"www.cc.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mediautilsmrs-a.akamaihd.net", + "domain":"mediautilsmrs-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"southpark.cc.com", + "domain":"southpark.cc.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"media-utils.mtvnservices.com", + "domain":"media-utils.mtvnservices.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.comedycentral.com", + "domain":"api.comedycentral.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.cc.com", + "domain":"api.cc.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"relaunch.api.mtv.com", + "domain":"relaunch.api.mtv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mediamtvnserv-a.akamaihd.net", + "domain":"mediamtvnserv-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"btg.mtvnservices.com", + "domain":"btg.mtvnservices.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mtvi.com", + "domain":"mtvi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.mtvunderthethumb.com", + "domain":"www.mtvunderthethumb.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mediautilssvcs-a.akamaihd.net", + "domain":"mediautilssvcs-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nick.com", + "domain":"nick.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nickjr.com", + "domain":"nickjr.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.nick.com", + "domain":"www.nick.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.nickjr.com", + "domain":"www.nickjr.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.playplex.viacom.com", + "domain":"api.playplex.viacom.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mediautilslive-a.akamaihd.net", + "domain":"mediautilslive-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"neutron-api.viacom.tech", + "domain":"neutron-api.viacom.tech", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.vh1.com", + "domain":"www.vh1.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.logotv.com", + "domain":"www.logotv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"topaz.viacomcbs.digital", + "domain":"topaz.viacomcbs.digital", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vidtech.cbsinteractive.com", + "domain":"vidtech.cbsinteractive.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"paramount-network.orchestrator.viacomcbs-tech.com", + "domain":"paramount-network.orchestrator.viacomcbs-tech.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"topaz.dai.viacomcbs.digital", + "domain":"topaz.dai.viacomcbs.digital", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cc.orchestrator.viacomcbs-tech.com", + "domain":"cc.orchestrator.viacomcbs-tech.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tveauth.viacom.com", + "domain":"tveauth.viacom.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"neutron-api.viacbs.tech", + "domain":"neutron-api.viacbs.tech", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"viafree-content.mtg-api.com", + "domain":"viafree-content.mtg-api.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sparrow.intl.paramountplus.com", + "domain":"sparrow.intl.paramountplus.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.paramountnetwork.com", + "domain":"www.paramountnetwork.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"neutron-api.paramount.tech", + "domain":"neutron-api.paramount.tech", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.cartoonnetwork.com", + "domain":"www.cartoonnetwork.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ht2.cdn.turner.com", + "domain":"ht2.cdn.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"token.vgtf.net", + "domain":"token.vgtf.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pmd.cdn.turner.com", + "domain":"pmd.cdn.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"phds-vod.cdn.turner.com", + "domain":"phds-vod.cdn.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"config.outturner.com", + "domain":"config.outturner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"phls-live.cdn.turner.com", + "domain":"phls-live.cdn.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"z.cdn.turner.com", + "domain":"z.cdn.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cnnios-f.akamaihd.net", + "domain":"cnnios-f.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"phls-vod.cdn.turner.com", + "domain":"phls-vod.cdn.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cnngo-i.akamaihd.net", + "domain":"cnngo-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"trueast-i.akamaihd.net", + "domain":"trueast-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"truwest-i.akamaihd.net", + "domain":"truwest-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"video-api.cartoonnetwork.com", + "domain":"video-api.cartoonnetwork.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"d2c-vod.cdn.turner.com", + "domain":"d2c-vod.cdn.turner.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.trutv.com", + "domain":"www.trutv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"z.static.cdn.trutv.com", + "domain":"z.static.cdn.trutv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"i.static.cdn.trutv.com", + "domain":"i.static.cdn.trutv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.platform.cnn.com", + "domain":"api.platform.cnn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"token.ngtv.io", + "domain":"token.ngtv.io", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.cnn.com", + "domain":"www.cnn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.filmstruck.com", + "domain":"www.filmstruck.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"devgeo.ngtv.io", + "domain":"devgeo.ngtv.io", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ensighten.filmstruck.com", + "domain":"ensighten.filmstruck.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"prod-iris.filmstruck.com", + "domain":"prod-iris.filmstruck.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.trutv.com", + "domain":"api.trutv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cerebro.api.cnn.io", + "domain":"cerebro.api.cnn.io", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.boomerang.com", + "domain":"www.boomerang.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"turnerlive.warnermediacdn.com", + "domain":"turnerlive.warnermediacdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"top.warnermediacdn.com", + "domain":"top.warnermediacdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"plus.cnn.com", + "domain":"plus.cnn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-media-ctl.warnermediacdn.com", + "domain":"live-media-ctl.warnermediacdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-media-aka.warnermediacdn.com", + "domain":"live-media-aka.warnermediacdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-media-lln.warnermediacdn.com", + "domain":"live-media-lln.warnermediacdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vod-media-lln.warnermediacdn.com", + "domain":"vod-media-lln.warnermediacdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vod-media-aka.warnermediacdn.com", + "domain":"vod-media-aka.warnermediacdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vod-media-ctl.warnermediacdn.com", + "domain":"vod-media-ctl.warnermediacdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.starzplay.com", + "domain":"www.starzplay.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"starz.122.2o7.net", + "domain":"starz.122.2o7.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.dmlib.com", + "domain":"api.dmlib.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"playauthcontent.starz.com", + "domain":"playauthcontent.starz.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"playdata.starz.com", + "domain":"playdata.starz.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.starz.com", + "domain":"www.starz.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tpr372228livesec-lh.akamaihd.net", + "domain":"tpr372228livesec-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"video01-us.starz.com", + "domain":"video01-us.starz.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"auth-prod.starzaws.com", + "domain":"auth-prod.starzaws.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"auth.starz.com", + "domain":"auth.starz.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"starz.penthera.com", + "domain":"starz.penthera.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.vudu.com", + "domain":"www.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"origin.www.vudu.com", + "domain":"origin.www.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"llavodhls.vudu.com", + "domain":"llavodhls.vudu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"espni.go.com", + "domain":"espni.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tredir.go.com", + "domain":"tredir.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"broadband.espn.go.com", + "domain":"broadband.espn.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"media.video-cdn.espn.com", + "domain":"media.video-cdn.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"services.prd1.contentdirect.tv", + "domain":"services.prd1.contentdirect.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"espn.go.com", + "domain":"espn.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"espn.com", + "domain":"espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"players.brightcove.net", + "domain":"players.brightcove.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"proxy.espn.com", + "domain":"proxy.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s.espncdn.com", + "domain":"s.espncdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pkg.video-cdn.espn.com", + "domain":"pkg.video-cdn.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sportscenterfanapi.prod.geo.espn.com", + "domain":"sportscenterfanapi.prod.geo.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn.registerdisney.go.com", + "domain":"cdn.registerdisney.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlsvod-l3c-clt1.media.plus.espn.com", + "domain":"hlsvod-l3c-clt1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlslive-akc-clt2.media.plus.espn.com", + "domain":"hlslive-akc-clt2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlslive-l3c-clt2.media.plus.espn.com", + "domain":"hlslive-l3c-clt2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlsvod-akc-clt1.media.plus.espn.com", + "domain":"hlsvod-akc-clt1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlslive-akc-clt1.media.plus.espn.com", + "domain":"hlslive-akc-clt1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlslive-l3c-clt1.media.plus.espn.com", + "domain":"hlslive-l3c-clt1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlslive-l3c-med2.media.plus.espn.com", + "domain":"hlslive-l3c-med2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlslive-l3c-med1.media.plus.espn.com", + "domain":"hlslive-l3c-med1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlslive-akc-med2.media.plus.espn.com", + "domain":"hlslive-akc-med2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlslive-akc-med1.media.plus.espn.com", + "domain":"hlslive-akc-med1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"registerdisney.go.com", + "domain":"registerdisney.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"static.web.plus.espn.com", + "domain":"static.web.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"qa-static.web.plus.espn.com", + "domain":"qa-static.web.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn.espn.com", + "domain":"cdn.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlslive-llc-clt2.media.plus.espn.com", + "domain":"hlslive-llc-clt2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aeng.svcs.plus.espn.com", + "domain":"aeng.svcs.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aserv-akc-us-east-1.media.plus.espn.com", + "domain":"aserv-akc-us-east-1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"prod-freewheel.espn.go.com", + "domain":"prod-freewheel.espn.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aserv-l3c-us-east-1.media.plus.espn.com", + "domain":"aserv-l3c-us-east-1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlslive-l3c-oma2.media.plus.espn.com", + "domain":"hlslive-l3c-oma2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.broadband.espn.com", + "domain":"www.broadband.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlslive-akc-oma2.media.plus.espn.com", + "domain":"hlslive-akc-oma2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ak-hls-brs-espn1.espn.go.com", + "domain":"ak-hls-brs-espn1.espn.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ak-hls-brs-espn2.espn.go.com", + "domain":"ak-hls-brs-espn2.espn.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ak-hls-brs-espn3.espn.go.com", + "domain":"ak-hls-brs-espn3.espn.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ak-hls-brs-espnu.espn.go.com", + "domain":"ak-hls-brs-espnu.espn.go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"artwork.espncdn.com", + "domain":"artwork.espncdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vod-l3c-na.media.plus.espn.com", + "domain":"vod-l3c-na.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vod-llc-na.media.plus.espn.com", + "domain":"vod-llc-na.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vod-akc-na.media.plus.espn.com", + "domain":"vod-akc-na.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"a2.espncdn.com", + "domain":"a2.espncdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"a1.espncdn.com", + "domain":"a1.espncdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"a3.espncdn.com", + "domain":"a3.espncdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"a4.espncdn.com", + "domain":"a4.espncdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"us.edge.bamgrid.com", + "domain":"us.edge.bamgrid.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"watchespn.com", + "domain":"watchespn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlslive-llc-oma2.media.plus.espn.com", + "domain":"hlslive-llc-oma2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"watch-cdn.product.api.espn.com", + "domain":"watch-cdn.product.api.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"espnapp.geo.hosted.espn.com", + "domain":"espnapp.geo.hosted.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"affiliate.api.geo.hosted.espn.com", + "domain":"affiliate.api.geo.hosted.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlslive-ftc-clt2.media.plus.espn.com", + "domain":"hlslive-ftc-clt2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"watch.graph.api.geo.hosted.espn.com", + "domain":"watch.graph.api.geo.hosted.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"espn.api.edge.bamgrid.com", + "domain":"espn.api.edge.bamgrid.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-ftc-na-east-2.media.plus.espn.com", + "domain":"live-ftc-na-east-2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-ftc-na-central-1.media.plus.espn.com", + "domain":"live-ftc-na-central-1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-ftc-na-central-2.media.plus.espn.com", + "domain":"live-ftc-na-central-2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-ftc-na-west-1.media.plus.espn.com", + "domain":"live-ftc-na-west-1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-ftc-na-west-2.media.plus.espn.com", + "domain":"live-ftc-na-west-2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-ftc-na-east-1.media.plus.espn.com", + "domain":"live-ftc-na-east-1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-akc-na-central-1.media.plus.espn.com", + "domain":"live-akc-na-central-1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-akc-na-west-1.media.plus.espn.com", + "domain":"live-akc-na-west-1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-akc-na-east-1.media.plus.espn.com", + "domain":"live-akc-na-east-1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-akc-na-west-2.media.plus.espn.com", + "domain":"live-akc-na-west-2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-akc-na-east-2.media.plus.espn.com", + "domain":"live-akc-na-east-2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-akc-na-central-2.media.plus.espn.com", + "domain":"live-akc-na-central-2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-l3c-na-east-1.media.plus.espn.com", + "domain":"live-l3c-na-east-1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-l3c-na-west-1.media.plus.espn.com", + "domain":"live-l3c-na-west-1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-l3c-na-central-1.media.plus.espn.com", + "domain":"live-l3c-na-central-1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-l3c-na-east-2.media.plus.espn.com", + "domain":"live-l3c-na-east-2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-l3c-na-west-2.media.plus.espn.com", + "domain":"live-l3c-na-west-2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-l3c-na-central-2.media.plus.espn.com", + "domain":"live-l3c-na-central-2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aserv-akc-us-west-2.media.plus.espn.com", + "domain":"aserv-akc-us-west-2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlslive-ftc-oma2.media.plus.espn.com", + "domain":"hlslive-ftc-oma2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dualstack.dss-espn.map.fastly.net", + "domain":"dualstack.dss-espn.map.fastly.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn1.espn.net", + "domain":"cdn1.espn.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pinpoint.espn.com", + "domain":"pinpoint.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aserv-ftc-us-east-1.media.plus.espn.com", + "domain":"aserv-ftc-us-east-1.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aserv-ftc-us-west-2.media.plus.espn.com", + "domain":"aserv-ftc-us-west-2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aserv-l3c-us-west-2.media.plus.espn.com", + "domain":"aserv-l3c-us-west-2.media.plus.espn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"gamecenter.nhl.com", + "domain":"gamecenter.nhl.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.nhl.com", + "domain":"www.nhl.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nhl.com", + "domain":"nhl.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"secure.nhl.com", + "domain":"secure.nhl.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"activation-rogers.svc.nhl.com", + "domain":"activation-rogers.svc.nhl.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cd.web.nhl.com", + "domain":"cd.web.nhl.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"user.svc.nhl.com", + "domain":"user.svc.nhl.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mf.svc.nhl.com", + "domain":"mf.svc.nhl.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nhl.bamcontent.com", + "domain":"nhl.bamcontent.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"account.nhl.com", + "domain":"account.nhl.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"statsapi.web.nhl.com", + "domain":"statsapi.web.nhl.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"gateway.web.nhl.com", + "domain":"gateway.web.nhl.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"activation-nhl.svc.nhl.com", + "domain":"activation-nhl.svc.nhl.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"secure.web.nhl.com", + "domain":"secure.web.nhl.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hermes-tokenservice.svc.nhl.com", + "domain":"hermes-tokenservice.svc.nhl.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aeng.svc.nhl.com", + "domain":"aeng.svc.nhl.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ch181.hls.att.com.edgesuite.net", + "domain":"ch181.hls.att.com.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn01.uverse.com", + "domain":"cdn01.uverse.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn02.uverse.com", + "domain":"cdn02.uverse.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn03.uverse.com", + "domain":"cdn03.uverse.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn04.uverse.com", + "domain":"cdn04.uverse.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn05.uverse.com", + "domain":"cdn05.uverse.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"uverse.com", + "domain":"uverse.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m.uverse.com", + "domain":"m.uverse.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cprodx.att.net", + "domain":"cprodx.att.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cprodx.uverse.com", + "domain":"cprodx.uverse.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tdata-offers.att.com", + "domain":"tdata-offers.att.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"uverse.quickplay.com", + "domain":"uverse.quickplay.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"uverse-image.quickplay.com", + "domain":"uverse-image.quickplay.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"labs.fyitelevision.com", + "domain":"labs.fyitelevision.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.crunchyroll.com", + "domain":"www.crunchyroll.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.crunchyroll.com", + "domain":"api.crunchyroll.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"beta-api.crunchyroll.com", + "domain":"beta-api.crunchyroll.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"beta.crunchyroll.com", + "domain":"beta.crunchyroll.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-cdn.pbskids.org", + "domain":"live-cdn.pbskids.org", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"jaws.pbs.org", + "domain":"jaws.pbs.org", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"localization.digi-prod.pbs.org", + "domain":"localization.digi-prod.pbs.org", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"wptddt.lls.cdn.pbs.org", + "domain":"wptddt.lls.cdn.pbs.org", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"station.services.pbs.org", + "domain":"station.services.pbs.org", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"jaws-prod.cdn.pbs.org", + "domain":"jaws-prod.cdn.pbs.org", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"content.services.pbs.org", + "domain":"content.services.pbs.org", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn.wwtv.warnerbros.com", + "domain":"cdn.wwtv.warnerbros.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"media.cwtv.com", + "domain":"media.cwtv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlsioscwtv.warnerbros.com", + "domain":"hlsioscwtv.warnerbros.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cwtv-vod.mdialog.com", + "domain":"cwtv-vod.mdialog.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cwtv-origin.mdialog.com", + "domain":"cwtv-origin.mdialog.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cwtv-ad-akamai.cwtv.com", + "domain":"cwtv-ad-akamai.cwtv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cwtv-hls-akamai.cwtv.com", + "domain":"cwtv-hls-akamai.cwtv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cwtv-mrss-akamai.cwtv.com", + "domain":"cwtv-mrss-akamai.cwtv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cwsmooth-vod.hss.adaptive.level3.net", + "domain":"cwsmooth-vod.hss.adaptive.level3.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.cwtv.com", + "domain":"www.cwtv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cwtv-apple-vod.adaptive.level3.net", + "domain":"cwtv-apple-vod.adaptive.level3.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"images.cwtv.com", + "domain":"images.cwtv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"secure.footprint.net", + "domain":"secure.footprint.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"stream-hls.cwtv.com", + "domain":"stream-hls.cwtv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cwtv-amd-akamai.akamaized.net", + "domain":"cwtv-amd-akamai.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"edge.cwtv-vod-ext.top.comcast.net", + "domain":"edge.cwtv-vod-ext.top.comcast.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"edge.cwtv-egress.top.comcast.net", + "domain":"edge.cwtv-egress.top.comcast.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.cwseed.com", + "domain":"www.cwseed.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m.cwtv.com", + "domain":"m.cwtv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"6ab03b26.customer.core.one.accedo.tv", + "domain":"6ab03b26.customer.core.one.accedo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"6ab03b26.bootstrap.core.one.accedo.tv", + "domain":"6ab03b26.bootstrap.core.one.accedo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"6ab03b26.customer.static.core.one.accedo.tv", + "domain":"6ab03b26.customer.static.core.one.accedo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.skychnl.net", + "domain":"api.skychnl.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.feeln.com", + "domain":"www.feeln.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"crowntrans-vh.akamaihd.net", + "domain":"crowntrans-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"crownmediaingest.akamaized.net", + "domain":"crownmediaingest.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.hallmarkchanneleverywhere.com", + "domain":"www.hallmarkchanneleverywhere.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hallmarkcom.hb.omtrdc.net", + "domain":"hallmarkcom.hb.omtrdc.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hallmarkchannel.sc.omtrdc.net", + "domain":"hallmarkchannel.sc.omtrdc.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"crownstreaming.akamaized.net", + "domain":"crownstreaming.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"authcrowntrans-vh.akamaihd.net", + "domain":"authcrowntrans-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api2.hmnow.com", + "domain":"api2.hmnow.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.hmnow.com", + "domain":"www.hmnow.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"playback.brightcovecdn.com", + "domain":"playback.brightcovecdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"devices.carnivalmobile.com", + "domain":"devices.carnivalmobile.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"097d0e9f.customer.core.one.accedo.tv", + "domain":"097d0e9f.customer.core.one.accedo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.foxsoccer2go.com", + "domain":"www.foxsoccer2go.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.foxsoccer-iphone.premiumtv.co.uk", + "domain":"www.foxsoccer-iphone.premiumtv.co.uk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.foxsoccermatchpass.com", + "domain":"www.foxsoccermatchpass.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dvr-i-uefa-video-foxmp.akamaized.net", + "domain":"dvr-i-uefa-video-foxmp.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dvr-i-video-foxmp.akamaized.net", + "domain":"dvr-i-video-foxmp.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"foxmp-prd.akamaized.net", + "domain":"foxmp-prd.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"livemain-i-video-foxmp.akamaized.net", + "domain":"livemain-i-video-foxmp.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"livemain-i-uefa-video-foxmp.akamaized.net", + "domain":"livemain-i-uefa-video-foxmp.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"foxus-dev-frontend.azurewebsites.net", + "domain":"foxus-dev-frontend.azurewebsites.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tubitv.com", + "domain":"tubitv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn.adrise.tv", + "domain":"cdn.adrise.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cms.adrise.com", + "domain":"cms.adrise.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"i.adrise.tv", + "domain":"i.adrise.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"uapi.adrise.tv", + "domain":"uapi.adrise.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ott-firetv.tubitv.com", + "domain":"ott-firetv.tubitv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"titan.adrise.tv", + "domain":"titan.adrise.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.tubitv.com", + "domain":"www.tubitv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ads.adrise.tv", + "domain":"ads.adrise.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s.adrise.tv", + "domain":"s.adrise.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ott-androidtv.tubitv.com", + "domain":"ott-androidtv.tubitv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ott-xboxone.tubitv.com", + "domain":"ott-xboxone.tubitv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ott-sony.tubitv.com", + "domain":"ott-sony.tubitv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"gdpr.tubi.tv", + "domain":"gdpr.tubi.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ott-samsung.tubitv.com", + "domain":"ott-samsung.tubitv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"canvas-bridge.tubitv.com", + "domain":"canvas-bridge.tubitv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"canvas-bridge02.tubitv.com", + "domain":"canvas-bridge02.tubitv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ott-firetv-hyb.tubitv.com", + "domain":"ott-firetv-hyb.tubitv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"lb4.production-public.tubi.io", + "domain":"lb4.production-public.tubi.io", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tensor.production-public.tubi.io", + "domain":"tensor.production-public.tubi.io", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vod.fubotv.com.global.prod.fastly.net", + "domain":"vod.fubotv.com.global.prod.fastly.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.fubo.tv", + "domain":"api.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ak-cred-bein-us-en-stream.fubo.tv", + "domain":"ak-cred-bein-us-en-stream.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fubotv_live1-i.akamaihd.net", + "domain":"fubotv_live1-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ak-cred-bein-us-es-stream.fubo.tv", + "domain":"ak-cred-bein-us-es-stream.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ak-cred-goltv-us-en-stream.fubo.tv", + "domain":"ak-cred-goltv-us-en-stream.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ak-cred-fubotv-us-en-stream.fubo.tv", + "domain":"ak-cred-fubotv-us-en-stream.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fubotvuslive1-i.akamaihd.net", + "domain":"fubotvuslive1-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fuboptstream.global.ssl.fastly.net", + "domain":"fuboptstream.global.ssl.fastly.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fubotv.imgix.net", + "domain":"fubotv.imgix.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"securehls.fubo.tv", + "domain":"securehls.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fubo.auth0.com", + "domain":"fubo.auth0.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"playlist.fubo.tv", + "domain":"playlist.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"gcs-streams-prod.fubo.tv", + "domain":"gcs-streams-prod.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"player-config-prod.fubo.tv", + "domain":"player-config-prod.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"blue-midas.fubo.tv", + "domain":"blue-midas.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dvr.fubo.tv", + "domain":"dvr.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"playlist-nonlive.fubo.tv", + "domain":"playlist-nonlive.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"licensing.bitmovin.com", + "domain":"licensing.bitmovin.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.fubo.tv", + "domain":"www.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ws.peer5.com", + "domain":"ws.peer5.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"uhd-streams.fubo.tv", + "domain":"uhd-streams.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"force-upgrade.fubo.tv", + "domain":"force-upgrade.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"playlist-central.fubo.tv", + "domain":"playlist-central.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"blob-service-fastly-west.fubo.tv", + "domain":"blob-service-fastly-west.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"prod.fubo-tv.map.fastly.net", + "domain":"prod.fubo-tv.map.fastly.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"showtime-bmvn.fubo.tv", + "domain":"showtime-bmvn.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pr-keyos.licensekeyserver.com", + "domain":"pr-keyos.licensekeyserver.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"4k-streams-prod.fubo.tv", + "domain":"4k-streams-prod.fubo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.foodnetwork.com", + "domain":"www.foodnetwork.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sni-vh.akamaihd.net", + "domain":"sni-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sni-i.akamaihd.net", + "domain":"sni-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"foodnetwork-i.akamaihd.net", + "domain":"foodnetwork-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"snihlsvod.scripps.com.edgesuite.net", + "domain":"snihlsvod.scripps.com.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"web.api.video.snidigital.com", + "domain":"web.api.video.snidigital.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"watch.foodnetwork.com", + "domain":"watch.foodnetwork.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"j.sni.global.fastly.net", + "domain":"j.sni.global.fastly.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"us1-prod.disco-api.com", + "domain":"us1-prod.disco-api.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"auth.watch.foodnetwork.com", + "domain":"auth.watch.foodnetwork.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"subber.viki.com", + "domain":"subber.viki.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"skydvn-sn-cdhls-prod.skydvn.com", + "domain":"skydvn-sn-cdhls-prod.skydvn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"poc-content.mobile-tv.sky.com", + "domain":"poc-content.mobile-tv.sky.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"skynewsamericas-sn-cdhls.ak-cdn.skydvn.com", + "domain":"skynewsamericas-sn-cdhls.ak-cdn.skydvn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"skynews-sn-cdhls.ak-cdn.skydvn.com", + "domain":"skynews-sn-cdhls.ak-cdn.skydvn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"skydvn-sn-mobile-prod.skydvn.com", + "domain":"skydvn-sn-mobile-prod.skydvn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"news.sky.com", + "domain":"news.sky.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"d301yv2uyy17su.cloudfront.net", + "domain":"d301yv2uyy17su.cloudfront.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear101-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear101-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear102-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear102-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear103-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear103-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear104-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear104-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear105-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear105-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear106-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear106-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear107-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear107-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear108-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear108-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear109-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear109-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear110-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear110-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear111-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear111-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear112-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear112-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear113-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear113-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear114-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear114-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear115-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear115-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear116-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear116-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear117-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear117-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear118-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear118-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear119-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear119-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear120-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear120-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear100-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear100-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear001-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear001-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear002-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear002-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear003-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear003-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear004-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear004-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear005-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear005-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear006-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear006-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear007-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear007-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear008-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear008-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear009-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear009-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear010-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear010-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear011-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear011-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear012-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear012-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear013-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear013-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear014-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear014-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear015-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear015-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear016-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear016-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear017-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear017-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear018-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear018-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear019-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear019-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear020-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear020-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear021-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear021-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear022-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear022-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear023-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear023-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear024-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear024-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear025-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear025-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear026-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear026-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear027-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear027-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear028-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear028-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear029-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear029-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear030-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear030-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear031-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear031-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear032-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear032-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear033-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear033-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear034-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear034-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear035-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear035-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear036-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear036-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear037-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear037-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear038-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear038-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear039-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear039-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear040-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear040-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear041-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear041-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear042-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear042-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear043-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear043-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear044-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear044-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear045-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear045-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear046-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear046-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear047-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear047-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear048-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear048-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear049-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear049-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear050-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear050-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear051-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear051-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear052-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear052-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear053-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear053-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear054-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear054-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear055-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear055-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear056-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear056-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear057-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear057-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear058-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear058-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear059-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear059-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear060-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear060-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear061-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear061-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear062-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear062-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear063-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear063-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear064-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear064-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear065-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear065-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear066-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear066-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear067-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear067-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear068-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear068-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear069-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear069-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear070-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear070-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear071-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear071-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear072-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear072-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear073-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear073-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear074-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear074-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear075-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear075-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear076-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear076-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear077-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear077-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear078-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear078-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear079-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear079-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear080-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear080-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear081-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear081-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear082-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear082-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear083-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear083-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear084-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear084-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear085-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear085-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear086-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear086-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear087-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear087-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear088-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear088-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear089-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear089-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear090-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear090-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear091-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear091-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear092-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear092-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear093-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear093-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear094-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear094-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear095-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear095-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear096-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear096-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear097-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear097-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear098-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear098-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"linear099-gb-hls1-prd-ak.cdn.skycdp.com", + "domain":"linear099-gb-hls1-prd-ak.cdn.skycdp.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"d1bj4v5rjwvoka.cloudfront.net", + "domain":"d1bj4v5rjwvoka.cloudfront.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"willow.tv", + "domain":"willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"willowfeedsv2.willow.tv", + "domain":"willowfeedsv2.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"akamaifeed1.willow.tv", + "domain":"akamaifeed1.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"akamaifeed2.willow.tv", + "domain":"akamaifeed2.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"akamaifeed3.willow.tv", + "domain":"akamaifeed3.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"akamaifeed4.willow.tv", + "domain":"akamaifeed4.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"akamaifeed5.willow.tv", + "domain":"akamaifeed5.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"akamaifeed6.willow.tv", + "domain":"akamaifeed6.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"akamaifeed7.willow.tv", + "domain":"akamaifeed7.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"akamaifeed8.willow.tv", + "domain":"akamaifeed8.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"atvapp.willow.tv", + "domain":"atvapp.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"atvappv2.willow.tv", + "domain":"atvappv2.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ws.willow.tv", + "domain":"ws.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"wlfeed2-lh.akamaihd.net", + "domain":"wlfeed2-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m.willow.tv", + "domain":"m.willow.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"akvod160ws-vh.akamaihd.net", + "domain":"akvod160ws-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"akvod177w-vh.akamaihd.net", + "domain":"akvod177w-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"willowlive-i.akamaihd.net", + "domain":"willowlive-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"willowlive1-i.akamaihd.net", + "domain":"willowlive1-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"willowlive.akamaized.net", + "domain":"willowlive.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"willowtv-tavod160w.pc.cdn.bitgravity.com", + "domain":"willowtv-tavod160w.pc.cdn.bitgravity.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"willowtv-tavod177w.pc.cdn.bitgravity.com", + "domain":"willowtv-tavod177w.pc.cdn.bitgravity.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"er.knowledge.ca", + "domain":"er.knowledge.ca", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.knowledgekids.ca", + "domain":"www.knowledgekids.ca", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.eonline.com", + "domain":"www.eonline.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.pptv.com", + "domain":"www.pptv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tools.aplusapi.pptv.com", + "domain":"tools.aplusapi.pptv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"web-play.pptv.com", + "domain":"web-play.pptv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"web-play.pplive.cn", + "domain":"web-play.pplive.cn", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"epg.api.pptv.com", + "domain":"epg.api.pptv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"play.api.pptv.com", + "domain":"play.api.pptv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live.tv.sohu.com", + "domain":"live.tv.sohu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pad.tv.sohu.com", + "domain":"pad.tv.sohu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"my.tv.sohu.com", + "domain":"my.tv.sohu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"access.tv.sohu.com", + "domain":"access.tv.sohu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.tv.sohu.com", + "domain":"api.tv.sohu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m.tv.sohu.com", + "domain":"m.tv.sohu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tv.sohu.com", + "domain":"tv.sohu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"changyan.sohu.com", + "domain":"changyan.sohu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hui.sohu.com", + "domain":"hui.sohu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pv.sohu.com", + "domain":"pv.sohu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m.aty.sohu.com", + "domain":"m.aty.sohu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"img.m.tv.sohu.com", + "domain":"img.m.tv.sohu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hot.vrs.sohu.com", + "domain":"hot.vrs.sohu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"film.sohu.com", + "domain":"film.sohu.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"css.tv.itc.cn", + "domain":"css.tv.itc.cn", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"js.tv.itc.cn", + "domain":"js.tv.itc.cn", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.letv.com", + "domain":"api.letv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hot.vrs.letv.com", + "domain":"hot.vrs.letv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live.gslb.letv.com", + "domain":"live.gslb.letv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"static.itv.letv.com", + "domain":"static.itv.letv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m.letv.com", + "domain":"m.letv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dynamic.app.m.letv.com", + "domain":"dynamic.app.m.letv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dynamic.meizi.app.m.letv.com", + "domain":"dynamic.meizi.app.m.letv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dynamic.search.app.m.letv.com", + "domain":"dynamic.search.app.m.letv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dynamic.live.app.m.letv.com", + "domain":"dynamic.live.app.m.letv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dynamic.meizi.app.m.letvapp.net", + "domain":"dynamic.meizi.app.m.letvapp.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.mob.app.letv.com", + "domain":"api.mob.app.letv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.letv.com", + "domain":"www.letv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.leletv.net", + "domain":"api.leletv.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.mod.app.leletv.net", + "domain":"api.mod.app.leletv.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.mob.app.letv.net", + "domain":"api.mob.app.letv.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"swebp2p.leletv.net", + "domain":"swebp2p.leletv.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dcvipall.leletv.net", + "domain":"dcvipall.leletv.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ark.letv.com", + "domain":"ark.letv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dynamic.user.app.m.letv.com", + "domain":"dynamic.user.app.m.letv.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.lesports.com", + "domain":"api.lesports.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"u.api.lesports.com", + "domain":"u.api.lesports.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s.plcloud.music.qq.com", + "domain":"s.plcloud.music.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"i.y.qq.com", + "domain":"i.y.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vv.video.qq.com", + "domain":"vv.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tt.video.qq.com", + "domain":"tt.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ice.video.qq.com", + "domain":"ice.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tjsa.video.qq.com", + "domain":"tjsa.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"a10.video.qq.com", + "domain":"a10.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"xyy.video.qq.com", + "domain":"xyy.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vcq.video.qq.com", + "domain":"vcq.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vsh.video.qq.com", + "domain":"vsh.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vbj.video.qq.com", + "domain":"vbj.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"bobo.video.qq.com", + "domain":"bobo.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"flvs.video.qq.com", + "domain":"flvs.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"bkvv.video.qq.com", + "domain":"bkvv.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"info.zb.qq.com", + "domain":"info.zb.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zb.s.qq.com", + "domain":"zb.s.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aid.video.qq.com", + "domain":"aid.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"aidbak.video.qq.com", + "domain":"aidbak.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pay.video.qq.com", + "domain":"pay.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"paybak.video.qq.com", + "domain":"paybak.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"3g.music.qq.com", + "domain":"3g.music.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mqqplayer.3g.qq.com", + "domain":"mqqplayer.3g.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"proxy.music.qq.com", + "domain":"proxy.music.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"proxymc.qq.com", + "domain":"proxymc.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sns.video.qq.com", + "domain":"sns.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"film.qq.com", + "domain":"film.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"y.qq.com", + "domain":"y.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"music.qq.com", + "domain":"music.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"music.tc.qq.com", + "domain":"music.tc.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"music.tcdn.qq.com", + "domain":"music.tcdn.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ssd.tc.qq.com", + "domain":"ssd.tc.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"node.video.qq.com", + "domain":"node.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tunnel.video.qq.com", + "domain":"tunnel.video.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vd.l.qq.com", + "domain":"vd.l.qq.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"data.video.qiyi.com", + "domain":"data.video.qiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cache.video.qiyi.com", + "domain":"cache.video.qiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cache.vip.qiyi.com", + "domain":"cache.vip.qiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cache.m.iqiyi.com", + "domain":"cache.m.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"iplocation.geo.qiyi.com", + "domain":"iplocation.geo.qiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"imo.iqiyi.com", + "domain":"imo.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"qosp.iqiyi.com", + "domain":"qosp.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cook.ptqy.gitv.tv", + "domain":"cook.ptqy.gitv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"bi.ptqy.gitv.tv", + "domain":"bi.ptqy.gitv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"itv.video.ptqy.gitv.tv", + "domain":"itv.video.ptqy.gitv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pb.bi.gitv.tv", + "domain":"pb.bi.gitv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"flux.hcdn.ptqy.gitv.tv", + "domain":"flux.hcdn.ptqy.gitv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"act.vip.ptqy.gitv.tv", + "domain":"act.vip.ptqy.gitv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"policy.video.ptqy.gitv.tv", + "domain":"policy.video.ptqy.gitv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t7z.cupid.ptqy.gitv.tv", + "domain":"t7z.cupid.ptqy.gitv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cache.video.ptqy.gitv.tv", + "domain":"cache.video.ptqy.gitv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"kepler.ptqy.gitv.tv", + "domain":"kepler.ptqy.gitv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"puma-api.ptqy.gitv.tv", + "domain":"puma-api.ptqy.gitv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m.iqiyi.com", + "domain":"m.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m.iqiyipic.com", + "domain":"m.iqiyipic.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"static.iqiyi.com", + "domain":"static.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"security.iqiyi.com", + "domain":"security.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pub.m.iqiyi.com", + "domain":"pub.m.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cook.iqiyi.com", + "domain":"cook.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.vip.iqiyi.com", + "domain":"api.vip.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cmts.iqiyi.com", + "domain":"cmts.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"serv.vip.iqiyi.com", + "domain":"serv.vip.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"iqiyi.irs01.com", + "domain":"iqiyi.irs01.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nl-rcd.iqiyi.com", + "domain":"nl-rcd.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tracker-sns.iqiyi.com", + "domain":"tracker-sns.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"paopao.iqiyi.com", + "domain":"paopao.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"search.video.iqiyi.com", + "domain":"search.video.iqiyi.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"msgv6.qy.net", + "domain":"msgv6.qy.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"geo.js.kankan.xunlei.com", + "domain":"geo.js.kankan.xunlei.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ip.kankan.xunlei.com", + "domain":"ip.kankan.xunlei.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"flwww.b-ch.com", + "domain":"flwww.b-ch.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"bchvod-f.akamaihd.net", + "domain":"bchvod-f.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"bngnwww.b-ch.com", + "domain":"bngnwww.b-ch.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ais.channel4.com", + "domain":"ais.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"freesat.channel4.com", + "domain":"freesat.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"service.maxymiser.net", + "domain":"service.maxymiser.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn.appdynamics.com", + "domain":"cdn.appdynamics.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"col.eum-appdynamics.com", + "domain":"col.eum-appdynamics.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ak.live.hds.c4assets.com", + "domain":"ak.live.hds.c4assets.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"csm-e.cds1.yospace.com", + "domain":"csm-e.cds1.yospace.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ic.c4assets.com", + "domain":"ic.c4assets.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"webstat.channel4.com", + "domain":"webstat.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"4id.channel4.com", + "domain":"4id.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"apps.channel4.com", + "domain":"apps.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pandr.my.channel4.com", + "domain":"pandr.my.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"4od.my.channel4.com", + "domain":"4od.my.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fonts.channel4.com", + "domain":"fonts.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn.http.anno.channel4.com", + "domain":"cdn.http.anno.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cf.http.anno.channel4.com", + "domain":"cf.http.anno.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"monitor.channel4.com", + "domain":"monitor.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"channel4.com", + "domain":"channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"roku-p06.channel4.com", + "domain":"roku-p06.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"samsung.channel4.com", + "domain":"samsung.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c4appletv.2cnt.net", + "domain":"c4appletv.2cnt.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn.live.hls.c4assets.com", + "domain":"cdn.live.hls.c4assets.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cast-p06.channel4.com", + "domain":"cast-p06.channel4.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"go.sky.com", + "domain":"go.sky.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pc-wmv-skygo.vod.sky.com", + "domain":"pc-wmv-skygo.vod.sky.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"assets.mobile-tv.sky.com", + "domain":"assets.mobile-tv.sky.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"io-skygo.vod.sky.com", + "domain":"io-skygo.vod.sky.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live.skyanywhere.com", + "domain":"live.skyanywhere.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"skydvn-go-mobile-prod.skydvn.com", + "domain":"skydvn-go-mobile-prod.skydvn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"p.sky.com", + "domain":"p.sky.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"init.sky.com", + "domain":"init.sky.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"content.ott.sky.com", + "domain":"content.ott.sky.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sgwl.skyanywhere.com", + "domain":"sgwl.skyanywhere.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"epgservices.sky.com", + "domain":"epgservices.sky.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sky.com", + "domain":"sky.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"epgstatic.sky.com", + "domain":"epgstatic.sky.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"skyandroid.2cnt.net", + "domain":"skyandroid.2cnt.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"skysports4-go-hls.l3-cdn.skydvn.com", + "domain":"skysports4-go-hls.l3-cdn.skydvn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.skystore.com", + "domain":"www.skystore.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.tvplayer.com", + "domain":"www.tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvplayer.com", + "domain":"tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"lapi.cdn.tvplayer.com", + "domain":"lapi.cdn.tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"lapi.cdn.uk.tvplayer.com", + "domain":"lapi.cdn.uk.tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sapi.tvplayer.com", + "domain":"sapi.tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.prd.uk.tvplayer.com", + "domain":"api.prd.uk.tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ssapi.tvplayer.com", + "domain":"ssapi.tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.tvplayer.com", + "domain":"api.tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live.plus.tvplayer.com", + "domain":"live.plus.tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvos.tvplayer.com", + "domain":"tvos.tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"assets.tvplayer.com", + "domain":"assets.tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"assets.storage.uk.tvplayer.com", + "domain":"assets.storage.uk.tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"assets.storage.uk.tvplayer.com.s3.amazonaws.com", + "domain":"assets.storage.uk.tvplayer.com.s3.amazonaws.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"checkip.amazonaws.com", + "domain":"checkip.amazonaws.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"license.theoplayer.com", + "domain":"license.theoplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"essential.tvplayer.com", + "domain":"essential.tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pro.ip-api.com", + "domain":"pro.ip-api.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"plus-secondary.tvplayer.com", + "domain":"plus-secondary.tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vod.hds.plus.tvplayer.com", + "domain":"vod.hds.plus.tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"backend.dna-delivery.com", + "domain":"backend.dna-delivery.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live.tvplayer.com", + "domain":"live.tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live.tvpvideo.net", + "domain":"live.tvpvideo.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"simplestream.tvplayer.com", + "domain":"simplestream.tvplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"startups.ss7.tv.s3.amazonaws.com", + "domain":"startups.ss7.tv.s3.amazonaws.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"v1-metadata.tvplayer-cdn.com", + "domain":"v1-metadata.tvplayer-cdn.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sport.bt.com", + "domain":"sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"be.avs.bt.com", + "domain":"be.avs.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1-btsport-live-hls-prod.akamaized.net", + "domain":"t1-btsport-live-hls-prod.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t2-btsport-live-hls-prod.akamaized.net", + "domain":"t2-btsport-live-hls-prod.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"btsportsvod-vh.akamaihd.net", + "domain":"btsportsvod-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"auth.sport.btcsp.co.uk", + "domain":"auth.sport.btcsp.co.uk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vodplay.sport.btcsp.co.uk", + "domain":"vodplay.sport.btcsp.co.uk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vod-bcdd-prod.bt.co.uk", + "domain":"vod-bcdd-prod.bt.co.uk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"assets.sport.bt.com", + "domain":"assets.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"liveplay.sport.btcsp.co.uk", + "domain":"liveplay.sport.btcsp.co.uk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t2btsportlivehlsprod-im-6dcb7394-002020-btgrpvideo.s.loris.llnwd.net", + "domain":"t2btsportlivehlsprod-im-6dcb7394-002020-btgrpvideo.s.loris.llnwd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"event.vision.bt.com", + "domain":"event.vision.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"epg.sport.bt.com", + "domain":"epg.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"metadata.sport.bt.com", + "domain":"metadata.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t2btsportlivehlsprod-im-4df77d58-002020-btgrpvideo.s.loris.llnwd.net", + "domain":"t2btsportlivehlsprod-im-4df77d58-002020-btgrpvideo.s.loris.llnwd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1btsportlivehlsprod-im-4df77d58-002020-btgrpvideo.s.loris.llnwd.net", + "domain":"t1btsportlivehlsprod-im-4df77d58-002020-btgrpvideo.s.loris.llnwd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"samlfed.bt.com", + "domain":"samlfed.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"strongauth.secure.bt.com", + "domain":"strongauth.secure.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-bts1-euwe2.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-bts1-euwe2.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-bts2-euwe2.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-bts2-euwe2.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"se1-t2-btsport-vod-i-azams.akamaized.net", + "domain":"se1-t2-btsport-vod-i-azams.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-bts3-euwe2.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-bts3-euwe2.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-btsespn-euwe2.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-btsespn-euwe2.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-boxnation-euwe2.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-boxnation-euwe2.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-btse1-euwe2.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-btse1-euwe2.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-btse2-euwe2.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-btse2-euwe2.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-btse3-euwe2.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-btse3-euwe2.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-btse4-euwe2.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-btse4-euwe2.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-btse5-euwe2.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-btse5-euwe2.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-btse6-euwe2.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-btse6-euwe2.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-bts1-euwe1.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-bts1-euwe1.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-bts2-euwe1.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-bts2-euwe1.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-bts3-euwe1.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-bts3-euwe1.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-btsespn-euwe.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-btsespn-euwe.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-boxnation-euwe1.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-boxnation-euwe1.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-btse1-euwe1.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-btse1-euwe1.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-btse2-euwe1.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-btse2-euwe1.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-btse3-euwe1.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-btse3-euwe1.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-btse4-euwe1.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-btse4-euwe1.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-btse5-euwe1.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-btse5-euwe1.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-btse6-euwe1.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-btse6-euwe1.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1live-im-4df77d00-btsespn-euwe1.prd.us.ll.streams.sport.bt.com", + "domain":"t1live-im-4df77d00-btsespn-euwe1.prd.us.ll.streams.sport.bt.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.eurosportplayer.de", + "domain":"www.eurosportplayer.de", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.eurosportplayer.com", + "domain":"www.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.eurosportplayer.co.uk", + "domain":"www.eurosportplayer.co.uk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"videoshop.ext.ws.eurosport.com", + "domain":"videoshop.ext.ws.eurosport.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.eurosportplayer.pl", + "domain":"www.eurosportplayer.pl", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.eurosportplayer.se", + "domain":"www.eurosportplayer.se", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.eurosportplayer.nl", + "domain":"www.eurosportplayer.nl", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.eurosportplayer.no", + "domain":"www.eurosportplayer.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.eurosportplayer.ro", + "domain":"www.eurosportplayer.ro", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ru.eurosportplayer.com", + "domain":"ru.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"no.eurosportplayer.com", + "domain":"no.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pl.eurosportplayer.com", + "domain":"pl.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nl.eurosportplayer.com", + "domain":"nl.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ro.eurosportplayer.com", + "domain":"ro.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"uk.eurosportplayer.com", + "domain":"uk.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"se.eurosportplayer.com", + "domain":"se.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"eurosport-live-poland.akamaized.net", + "domain":"eurosport-live-poland.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"de.eurosportplayer.com", + "domain":"de.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"eurosport-live-germany.akamaized.net", + "domain":"eurosport-live-germany.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"videoshop-partners.eurosportplayer.com", + "domain":"videoshop-partners.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"crm-partners.eurosportplayer.com", + "domain":"crm-partners.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"asia.eurosport.com", + "domain":"asia.eurosport.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"gb.eurosportplayer.com", + "domain":"gb.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cz.eurosportplayer.com", + "domain":"cz.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"search-api.svcs.eurosportplayer.com", + "domain":"search-api.svcs.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"global-api.svcs.eurosportplayer.com", + "domain":"global-api.svcs.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hu.eurosportplayer.com", + "domain":"hu.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlsevent-aksc.ams1.media.eurosportplayer.com", + "domain":"hlsevent-aksc.ams1.media.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlslinear-aksc.ams1.media.eurosportplayer.com", + "domain":"hlslinear-aksc.ams1.media.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cpe-prod.eurosportstatic.com", + "domain":"cpe-prod.eurosportstatic.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"bam-sdk-configs.mlbam.net", + "domain":"bam-sdk-configs.mlbam.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.permutive.com", + "domain":"api.permutive.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hermes-tokenservice.svcs.eurosportplayer.com", + "domain":"hermes-tokenservice.svcs.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn.permutive.com", + "domain":"cdn.permutive.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlslinear-l3c.ams1.media.eurosportplayer.com", + "domain":"hlslinear-l3c.ams1.media.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"eu.edge.bamgrid.com", + "domain":"eu.edge.bamgrid.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.eurosportstatic.com", + "domain":"www.eurosportstatic.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"eurosport-dlvr-ott.akamaized.net", + "domain":"eurosport-dlvr-ott.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"eu3-prod.disco-api.com", + "domain":"eu3-prod.disco-api.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"iphone.eurosport.com", + "domain":"iphone.eurosport.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"netsport.eurosport.io", + "domain":"netsport.eurosport.io", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"eu3-prod-direct.eurosport.co.uk", + "domain":"eu3-prod-direct.eurosport.co.uk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"eurosport-dlvr-ott-vod.akamaized.net", + "domain":"eurosport-dlvr-ott-vod.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"web-api.eurosport.com", + "domain":"web-api.eurosport.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.eurosport.co.uk", + "domain":"www.eurosport.co.uk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ssa.eurosportplayer.com", + "domain":"ssa.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"auth.eurosportplayer.com", + "domain":"auth.eurosportplayer.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fire.player.stv.tv", + "domain":"fire.player.stv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.stv.tv", + "domain":"api.stv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"player.stv.tv", + "domain":"player.stv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"uk-dev-stv.videoplaza.tv", + "domain":"uk-dev-stv.videoplaza.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"http.player-cdn.stv.tv", + "domain":"http.player-cdn.stv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"player.api.stv.tv", + "domain":"player.api.stv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"stv-ak.cds1.yospace.com", + "domain":"stv-ak.cds1.yospace.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlsscottishtv-a.akamaihd.net", + "domain":"hlsscottishtv-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ssp.videoplaza.tv", + "domain":"ssp.videoplaza.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"freesat.player.stv.tv", + "domain":"freesat.player.stv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"files.stv.tv", + "domain":"files.stv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"files.prod.stv.tv", + "domain":"files.prod.stv.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"edge.api.brightcove.com", + "domain":"edge.api.brightcove.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"stv1yospace-a.akamaihd.net", + "domain":"stv1yospace-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"stv2yospace-a.akamaihd.net", + "domain":"stv2yospace-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"bcboltstv-a.akamaihd.net", + "domain":"bcboltstv-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"stv1yospaceint-a.akamaihd.net", + "domain":"stv1yospaceint-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.tv3.ie", + "domain":"www.tv3.ie", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ak.tv3.ooyala.com", + "domain":"ak.tv3.ooyala.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.virginmediatelevision.ie", + "domain":"www.virginmediatelevision.ie", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"virginmediatelevision.ie", + "domain":"virginmediatelevision.ie", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.zattoo.com", + "domain":"www.zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"iphone.zattoo.com", + "domain":"iphone.zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"watch.wilmaa.com", + "domain":"watch.wilmaa.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.wilmaa.com", + "domain":"www.wilmaa.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"data.wilmaa.com", + "domain":"data.wilmaa.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tele-vh.akamaihd.net", + "domain":"tele-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p100.edgesuite.net", + "domain":"c001.p100.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p101.edgesuite.net", + "domain":"c001.p101.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p102.edgesuite.net", + "domain":"c001.p102.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p103.edgesuite.net", + "domain":"c001.p103.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p104.edgesuite.net", + "domain":"c001.p104.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p105.edgesuite.net", + "domain":"c001.p105.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p106.edgesuite.net", + "domain":"c001.p106.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p107.edgesuite.net", + "domain":"c001.p107.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p108.edgesuite.net", + "domain":"c001.p108.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p109.edgesuite.net", + "domain":"c001.p109.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p110.edgesuite.net", + "domain":"c001.p110.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p111.edgesuite.net", + "domain":"c001.p111.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p112.edgesuite.net", + "domain":"c001.p112.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p113.edgesuite.net", + "domain":"c001.p113.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p114.edgesuite.net", + "domain":"c001.p114.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p115.edgesuite.net", + "domain":"c001.p115.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p116.edgesuite.net", + "domain":"c001.p116.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p117.edgesuite.net", + "domain":"c001.p117.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p118.edgesuite.net", + "domain":"c001.p118.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p119.edgesuite.net", + "domain":"c001.p119.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p120.edgesuite.net", + "domain":"c001.p120.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p121.edgesuite.net", + "domain":"c001.p121.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p122.edgesuite.net", + "domain":"c001.p122.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p123.edgesuite.net", + "domain":"c001.p123.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p124.edgesuite.net", + "domain":"c001.p124.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c001.p125.edgesuite.net", + "domain":"c001.p125.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"movies.wilmaa.com", + "domain":"movies.wilmaa.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-hds-live.zahs.tv", + "domain":"zba2-0-hds-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-0-hds-live.zahs.tv", + "domain":"zba1-0-hds-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-hds-live.zahs.tv", + "domain":"zba2-1-hds-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-hls-live.zahs.tv", + "domain":"zba2-1-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-hls-live.zahs.tv", + "domain":"zba1-1-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-0-hls-live.zahs.tv", + "domain":"zba1-0-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-hds-pvr.zahs.tv", + "domain":"zba2-1-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-hds-pvr.zahs.tv", + "domain":"zba1-1-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-hds-pvr.zahs.tv", + "domain":"zba2-0-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-0-hds-pvr.zahs.tv", + "domain":"zba1-0-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-hls-pvr.zahs.tv", + "domain":"zba1-1-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-hls-pvr.zahs.tv", + "domain":"zba2-0-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-ss-live.zahs.tv", + "domain":"zba2-0-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-ss-live.zahs.tv", + "domain":"zba2-1-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-0-ss-live.zahs.tv", + "domain":"zba1-0-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-ss-live.zahs.tv", + "domain":"zba1-1-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-hls-live.zahs.tv", + "domain":"zba2-0-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-dash-live.zahs.tv", + "domain":"zba1-1-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-dash-live.zahs.tv", + "domain":"zba2-1-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-hds-live.zahs.tv", + "domain":"zba1-1-hds-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-ss-vod.zahs.tv", + "domain":"zba2-1-ss-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-ss-vod.zahs.tv", + "domain":"zba1-1-ss-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-ss-vod.zahs.tv", + "domain":"zba2-0-ss-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-ss-pvr.zahs.tv", + "domain":"zba2-1-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-ss-pvr.zahs.tv", + "domain":"zba2-0-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-ss-pvr.zahs.tv", + "domain":"zba1-1-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-0-ss-pvr.zahs.tv", + "domain":"zba1-0-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-dash-live.zahs.tv", + "domain":"zba2-0-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-0-dash-live.zahs.tv", + "domain":"zba1-0-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-hls5-live.zahs.tv", + "domain":"zba2-0-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-0-hls5-live.zahs.tv", + "domain":"zba1-0-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-hls5-live.zahs.tv", + "domain":"zba2-1-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-hls5-live.zahs.tv", + "domain":"zba1-1-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"1und1-fra1902-1-ss-live.zahs.tv", + "domain":"1und1-fra1902-1-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"1und1-fra1902-2-ss-live.zahs.tv", + "domain":"1und1-fra1902-2-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"blue.ch", + "domain":"blue.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tv.blue.ch", + "domain":"tv.blue.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"*.blue.ch", + "domain":"*.blue.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"services.sg101.prd.sctv.ch", + "domain":"services.sg101.prd.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvhosa-pez0315.sctv.ch", + "domain":"tvhosa-pez0315.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sctv.ch", + "domain":"sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"*.sctv.ch", + "domain":"*.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-hls5-pvr.zahs.tv", + "domain":"zba2-1-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-hls5-pvr.zahs.tv", + "domain":"zba1-1-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-hls5-pvr.zahs.tv", + "domain":"zba2-0-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-0-hls5-pvr.zahs.tv", + "domain":"zba1-0-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-hls5enc-vod.zahs.tv", + "domain":"zba2-0-hls5enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-hls5enc-vod.zahs.tv", + "domain":"zba2-1-hls5enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-0-hls5enc-vod.zahs.tv", + "domain":"zba1-0-hls5enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-hls5enc-vod.zahs.tv", + "domain":"zba1-1-hls5enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"teleboy.wemfbox.ch", + "domain":"teleboy.wemfbox.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p100.edgesuite.net", + "domain":"c005.p100.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p101.edgesuite.net", + "domain":"c005.p101.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p102.edgesuite.net", + "domain":"c005.p102.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p103.edgesuite.net", + "domain":"c005.p103.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p104.edgesuite.net", + "domain":"c005.p104.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p105.edgesuite.net", + "domain":"c005.p105.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p106.edgesuite.net", + "domain":"c005.p106.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p107.edgesuite.net", + "domain":"c005.p107.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p108.edgesuite.net", + "domain":"c005.p108.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p109.edgesuite.net", + "domain":"c005.p109.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p110.edgesuite.net", + "domain":"c005.p110.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p111.edgesuite.net", + "domain":"c005.p111.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p112.edgesuite.net", + "domain":"c005.p112.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p113.edgesuite.net", + "domain":"c005.p113.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p114.edgesuite.net", + "domain":"c005.p114.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p115.edgesuite.net", + "domain":"c005.p115.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p116.edgesuite.net", + "domain":"c005.p116.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p117.edgesuite.net", + "domain":"c005.p117.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p118.edgesuite.net", + "domain":"c005.p118.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p119.edgesuite.net", + "domain":"c005.p119.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p120.edgesuite.net", + "domain":"c005.p120.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p121.edgesuite.net", + "domain":"c005.p121.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p122.edgesuite.net", + "domain":"c005.p122.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p123.edgesuite.net", + "domain":"c005.p123.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p124.edgesuite.net", + "domain":"c005.p124.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p125.edgesuite.net", + "domain":"c005.p125.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-hls5-live.zahs.tv", + "domain":"zba2-3-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-3-hls5-live.zahs.tv", + "domain":"zba1-3-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-hls5-live.zahs.tv", + "domain":"zba2-2-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-hls5-live.zahs.tv", + "domain":"zba1-2-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-hls-live.zahs.tv", + "domain":"zba2-3-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-3-hls-live.zahs.tv", + "domain":"zba1-3-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-hls-live.zahs.tv", + "domain":"zba2-2-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-hls-live.zahs.tv", + "domain":"zba1-2-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-hls5-vod.zahs.tv", + "domain":"zba2-0-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-0-hls5-vod.zahs.tv", + "domain":"zba1-0-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-hls5-vod.zahs.tv", + "domain":"zba1-2-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-hls5-vod.zahs.tv", + "domain":"zba2-2-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-3-hls5-vod.zahs.tv", + "domain":"zba1-3-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-hls5-vod.zahs.tv", + "domain":"zba2-3-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-hds-live.zahs.tv", + "domain":"zba2-3-hds-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-3-hds-live.zahs.tv", + "domain":"zba1-3-hds-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-hds-live.zahs.tv", + "domain":"zba2-2-hds-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-hds-live.zahs.tv", + "domain":"zba1-2-hds-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-0-hds-vod.zahs.tv", + "domain":"zba1-0-hds-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-hds-vod.zahs.tv", + "domain":"zba1-1-hds-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-hds-vod.zahs.tv", + "domain":"zba1-2-hds-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-3-hds-vod.zahs.tv", + "domain":"zba1-3-hds-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-hds-vod.zahs.tv", + "domain":"zba2-0-hds-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-hds-vod.zahs.tv", + "domain":"zba2-1-hds-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-hds-vod.zahs.tv", + "domain":"zba2-2-hds-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-hds-vod.zahs.tv", + "domain":"zba2-3-hds-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-hls5-pvr.zahs.tv", + "domain":"zba2-3-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-3-hls5-pvr.zahs.tv", + "domain":"zba1-3-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-0-dash-vod.zahs.tv", + "domain":"zba1-0-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-dash-vod.zahs.tv", + "domain":"zba1-1-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-dash-vod.zahs.tv", + "domain":"zba1-2-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-3-dash-vod.zahs.tv", + "domain":"zba1-3-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-dash-vod.zahs.tv", + "domain":"zba2-0-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-dash-vod.zahs.tv", + "domain":"zba2-1-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-dash-vod.zahs.tv", + "domain":"zba2-2-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-dash-vod.zahs.tv", + "domain":"zba2-3-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-dash-pvr.zahs.tv", + "domain":"zba1-1-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-0-dash-pvr.zahs.tv", + "domain":"zba1-0-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-dash-pvr.zahs.tv", + "domain":"zba1-2-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-3-dash-pvr.zahs.tv", + "domain":"zba1-3-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-dash-pvr.zahs.tv", + "domain":"zba2-0-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-dash-pvr.zahs.tv", + "domain":"zba2-1-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-dash-pvr.zahs.tv", + "domain":"zba2-2-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-dash-pvr.zahs.tv", + "domain":"zba2-3-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-dash-live.zahs.tv", + "domain":"zba2-2-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-dash-live.zahs.tv", + "domain":"zba2-3-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-dash-live.zahs.tv", + "domain":"zba1-2-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-3-dash-live.zahs.tv", + "domain":"zba1-3-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-hds-pvr.zahs.tv", + "domain":"zba1-2-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-3-hds-pvr.zahs.tv", + "domain":"zba1-3-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-hds-pvr.zahs.tv", + "domain":"zba2-2-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-hds-pvr.zahs.tv", + "domain":"zba2-3-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-hls-pvr.zahs.tv", + "domain":"zba2-1-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-hls-pvr.zahs.tv", + "domain":"zba2-2-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-hls-pvr.zahs.tv", + "domain":"zba2-3-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-hls-pvr.zahs.tv", + "domain":"zba1-2-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-3-hls-pvr.zahs.tv", + "domain":"zba1-3-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-hds-live.zahs.tv", + "domain":"zh2-4-hds-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-hds-live.zahs.tv", + "domain":"zh2-3-hds-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-hds-live.zahs.tv", + "domain":"zh2-2-hds-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-hds-live.zahs.tv", + "domain":"zh2-1-hds-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-hls-live.zahs.tv", + "domain":"zh2-4-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-hls-live.zahs.tv", + "domain":"zh2-3-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-hls-live.zahs.tv", + "domain":"zh2-2-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-hls-live.zahs.tv", + "domain":"zh2-1-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-hds-pvr.zahs.tv", + "domain":"zh2-4-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-hds-pvr.zahs.tv", + "domain":"zh2-3-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-hds-pvr.zahs.tv", + "domain":"zh2-2-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-hds-pvr.zahs.tv", + "domain":"zh2-1-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-hds-pvr.zahs.tv", + "domain":"zh2-0-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-hds-vod.zahs.tv", + "domain":"zh2-4-hds-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-hds-vod.zahs.tv", + "domain":"zh2-3-hds-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-hds-vod.zahs.tv", + "domain":"zh2-2-hds-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-hds-vod.zahs.tv", + "domain":"zh2-1-hds-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-hds-vod.zahs.tv", + "domain":"zh2-0-hds-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-hls5-live.zahs.tv", + "domain":"zh2-4-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-hls5-live.zahs.tv", + "domain":"zh2-3-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-hls5-live.zahs.tv", + "domain":"zh2-2-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-hls5-live.zahs.tv", + "domain":"zh2-1-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-hls5-live.zahs.tv", + "domain":"zh2-0-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-hls5-pvr.zahs.tv", + "domain":"zh2-4-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-hls5-pvr.zahs.tv", + "domain":"zh2-3-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-hls5-pvr.zahs.tv", + "domain":"zh2-2-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-hls5-pvr.zahs.tv", + "domain":"zh2-1-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-hls5-pvr.zahs.tv", + "domain":"zh2-0-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-hls5enc-vod.zahs.tv", + "domain":"zh2-4-hls5enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-hls5enc-vod.zahs.tv", + "domain":"zh2-3-hls5enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-hls5enc-vod.zahs.tv", + "domain":"zh2-2-hls5enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-hls5enc-vod.zahs.tv", + "domain":"zh2-1-hls5enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-hls5enc-vod.zahs.tv", + "domain":"zh2-0-hls5enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-hls-live.zahs.tv", + "domain":"zh2-0-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-hls-vod.zahs.tv", + "domain":"zh2-4-hls-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-hls-vod.zahs.tv", + "domain":"zh2-3-hls-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-hls-vod.zahs.tv", + "domain":"zh2-2-hls-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-hls-vod.zahs.tv", + "domain":"zh2-1-hls-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-hls-vod.zahs.tv", + "domain":"zh2-0-hls-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-dash-live.zahs.tv", + "domain":"zh2-4-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-dash-live.zahs.tv", + "domain":"zh2-3-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-dash-live.zahs.tv", + "domain":"zh2-2-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-dash-live.zahs.tv", + "domain":"zh2-1-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-dash-live.zahs.tv", + "domain":"zh2-0-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-dash-pvr.zahs.tv", + "domain":"zh2-3-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-dash-pvr.zahs.tv", + "domain":"zh2-2-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-dash-pvr.zahs.tv", + "domain":"zh2-1-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-dash-pvr.zahs.tv", + "domain":"zh2-0-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-dash-vod.zahs.tv", + "domain":"zh2-4-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-dash-vod.zahs.tv", + "domain":"zh2-3-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-dash-vod.zahs.tv", + "domain":"zh2-2-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-dash-vod.zahs.tv", + "domain":"zh2-1-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-dash-vod.zahs.tv", + "domain":"zh2-0-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-hls-pvr.zahs.tv", + "domain":"zh2-0-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-hls-pvr.zahs.tv", + "domain":"zh2-1-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-hls-pvr.zahs.tv", + "domain":"zh2-2-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-hls-pvr.zahs.tv", + "domain":"zh2-3-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-hls-pvr.zahs.tv", + "domain":"zh2-4-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p126.edgesuite.net", + "domain":"c005.p126.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p127.edgesuite.net", + "domain":"c005.p127.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p128.edgesuite.net", + "domain":"c005.p128.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p129.edgesuite.net", + "domain":"c005.p129.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p130.edgesuite.net", + "domain":"c005.p130.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p131.edgesuite.net", + "domain":"c005.p131.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p132.edgesuite.net", + "domain":"c005.p132.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"c005.p133.edgesuite.net", + "domain":"c005.p133.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zattoo-hls5-live.akamaized.net", + "domain":"zattoo-hls5-live.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zattoo-hls-live.akamaized.net", + "domain":"zattoo-hls-live.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-hls-pvr.zahs.tv", + "domain":"zh2-5-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-hls-pvr.zahs.tv", + "domain":"zh2-6-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-dash-vod.zahs.tv", + "domain":"zh2-5-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-dash-vod.zahs.tv", + "domain":"zh2-6-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-dash-pvr.zahs.tv", + "domain":"zh2-5-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-dash-live.zahs.tv", + "domain":"zh2-5-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-dash-live.zahs.tv", + "domain":"zh2-6-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-hls-vod.zahs.tv", + "domain":"zh2-5-hls-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-hls-vod.zahs.tv", + "domain":"zh2-6-hls-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-hls-live.zahs.tv", + "domain":"zh2-5-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-hls-live.zahs.tv", + "domain":"zh2-6-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-hds-live.zahs.tv", + "domain":"zh2-5-hds-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-hds-live.zahs.tv", + "domain":"zh2-6-hds-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zattoo-hds-live.akamaized.net", + "domain":"zattoo-hds-live.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-hls5-live.zahs.tv", + "domain":"zh2-5-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-hls5-live.zahs.tv", + "domain":"zh2-6-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-ss-vod.zahs.tv", + "domain":"zh2-6-ss-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-ss-vod.zahs.tv", + "domain":"zh2-5-ss-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-ss-vod.zahs.tv", + "domain":"zh2-4-ss-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-ss-vod.zahs.tv", + "domain":"zh2-3-ss-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-ss-vod.zahs.tv", + "domain":"zh2-2-ss-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-ss-vod.zahs.tv", + "domain":"zh2-1-ss-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-ss-vod.zahs.tv", + "domain":"zh2-0-ss-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-ss-pvr.zahs.tv", + "domain":"zh2-6-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-ss-pvr.zahs.tv", + "domain":"zh2-5-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-ss-pvr.zahs.tv", + "domain":"zh2-4-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-ss-pvr.zahs.tv", + "domain":"zh2-3-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-ss-pvr.zahs.tv", + "domain":"zh2-2-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-ss-pvr.zahs.tv", + "domain":"zh2-1-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-ss-pvr.zahs.tv", + "domain":"zh2-0-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-sspr-pvr.zahs.tv", + "domain":"zh2-0-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-sspr-pvr.zahs.tv", + "domain":"zh2-1-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-sspr-pvr.zahs.tv", + "domain":"zh2-2-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-sspr-pvr.zahs.tv", + "domain":"zh2-3-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-sspr-pvr.zahs.tv", + "domain":"zh2-4-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-sspr-pvr.zahs.tv", + "domain":"zh2-5-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-sspr-pvr.zahs.tv", + "domain":"zh2-6-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-sspr-live.zahs.tv", + "domain":"zh2-0-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-sspr-live.zahs.tv", + "domain":"zh2-1-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-sspr-live.zahs.tv", + "domain":"zh2-2-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-sspr-live.zahs.tv", + "domain":"zh2-3-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-sspr-live.zahs.tv", + "domain":"zh2-4-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-sspr-live.zahs.tv", + "domain":"zh2-5-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-sspr-live.zahs.tv", + "domain":"zh2-6-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-0-sspr-pvr.zahs.tv", + "domain":"zba1-0-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-sspr-pvr.zahs.tv", + "domain":"zba1-1-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-sspr-pvr.zahs.tv", + "domain":"zba1-2-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-3-sspr-pvr.zahs.tv", + "domain":"zba1-3-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-sspr-pvr.zahs.tv", + "domain":"zba2-0-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-sspr-pvr.zahs.tv", + "domain":"zba2-1-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-sspr-pvr.zahs.tv", + "domain":"zba2-2-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-sspr-pvr.zahs.tv", + "domain":"zba2-3-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-0-sspr-live.zahs.tv", + "domain":"zba1-0-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-sspr-live.zahs.tv", + "domain":"zba1-1-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-sspr-live.zahs.tv", + "domain":"zba1-2-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-3-sspr-live.zahs.tv", + "domain":"zba1-3-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-sspr-live.zahs.tv", + "domain":"zba2-0-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-sspr-live.zahs.tv", + "domain":"zba2-1-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-sspr-live.zahs.tv", + "domain":"zba2-2-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-sspr-live.zahs.tv", + "domain":"zba2-3-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-hds-pvr.zahs.tv", + "domain":"zh2-5-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"download.zattoo.com", + "domain":"download.zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"logos.zattic.com", + "domain":"logos.zattic.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"wilmaa.customers.cdn.iptv.ch", + "domain":"wilmaa.customers.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-hls5enc-vod.zahs.tv", + "domain":"zh2-6-hls5enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-hls5enc-vod.zahs.tv", + "domain":"zh2-5-hls5enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-hls5-vod.zahs.tv", + "domain":"zh2-4-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-hls5-vod.zahs.tv", + "domain":"zh2-5-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-hls5-vod.zahs.tv", + "domain":"zh2-6-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-hls5-vod.zahs.tv", + "domain":"zh2-1-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-hls5-vod.zahs.tv", + "domain":"zh2-2-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-hls5-vod.zahs.tv", + "domain":"zh2-3-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-sspr-vod.zahs.tv", + "domain":"zh2-0-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-sspr-vod.zahs.tv", + "domain":"zh2-1-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-sspr-vod.zahs.tv", + "domain":"zh2-2-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-sspr-vod.zahs.tv", + "domain":"zh2-3-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-sspr-vod.zahs.tv", + "domain":"zh2-4-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-sspr-vod.zahs.tv", + "domain":"zh2-5-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-sspr-vod.zahs.tv", + "domain":"zh2-6-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-hls5-vod.zahs.tv", + "domain":"zh2-0-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zattoo.wemfbox.ch", + "domain":"zattoo.wemfbox.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"wilmaatv-144447995.eu-west-1.elb.amazonaws.com", + "domain":"wilmaatv-144447995.eu-west-1.elb.amazonaws.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hlsbroker.api.iptv.ch", + "domain":"hlsbroker.api.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"multiscreencache.tvbackbone.com", + "domain":"multiscreencache.tvbackbone.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-hls5-live.zahs.tv", + "domain":"zh2-8-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-hls5-live.zahs.tv", + "domain":"zh2-7-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-hls5-vod.zahs.tv", + "domain":"zh2-7-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-hls5-vod.zahs.tv", + "domain":"zh2-8-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-sspr-vod.zahs.tv", + "domain":"zh2-7-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-sspr-vod.zahs.tv", + "domain":"zh2-8-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-hds-pvr.zahs.tv", + "domain":"zh2-6-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-hds-pvr.zahs.tv", + "domain":"zh2-7-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-hds-pvr.zahs.tv", + "domain":"zh2-8-hds-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-hls-live.zahs.tv", + "domain":"zh2-7-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-hls-live.zahs.tv", + "domain":"zh2-8-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-dash-live.zahs.tv", + "domain":"zh2-7-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-dash-live.zahs.tv", + "domain":"zh2-8-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-hls5-pvr.zahs.tv", + "domain":"zh2-6-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-hls5-pvr.zahs.tv", + "domain":"zh2-7-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-hls5-pvr.zahs.tv", + "domain":"zh2-8-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-ss-pvr.zahs.tv", + "domain":"zba1-2-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-ss-pvr.zahs.tv", + "domain":"zba2-2-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zpush.zattoo.com", + "domain":"zpush.zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-3-ss-pvr.zahs.tv", + "domain":"zba1-3-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-ss-pvr.zahs.tv", + "domain":"zba2-3-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-ss-pvr.zahs.tv", + "domain":"zh2-7-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-ss-pvr.zahs.tv", + "domain":"zh2-8-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-0-sspr-vod.zahs.tv", + "domain":"zba1-0-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-1-sspr-vod.zahs.tv", + "domain":"zba1-1-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-sspr-vod.zahs.tv", + "domain":"zba1-2-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-sspr-vod.zahs.tv", + "domain":"zba2-0-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-sspr-vod.zahs.tv", + "domain":"zba2-1-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-sspr-vod.zahs.tv", + "domain":"zba2-2-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-hls5enc-vod.zahs.tv", + "domain":"zba1-2-hls5enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-3-hls5enc-vod.zahs.tv", + "domain":"zba1-3-hls5enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-hls5enc-vod.zahs.tv", + "domain":"zba2-2-hls5enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-hls5enc-vod.zahs.tv", + "domain":"zba2-3-hls5enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-ss-live.zahs.tv", + "domain":"zh2-0-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-ss-live.zahs.tv", + "domain":"zh2-1-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-ss-live.zahs.tv", + "domain":"zh2-2-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-ss-live.zahs.tv", + "domain":"zh2-3-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-ss-live.zahs.tv", + "domain":"zh2-4-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-ss-live.zahs.tv", + "domain":"zh2-5-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-ss-live.zahs.tv", + "domain":"zh2-6-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-ss-live.zahs.tv", + "domain":"zh2-7-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-ss-live.zahs.tv", + "domain":"zba1-2-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-3-ss-live.zahs.tv", + "domain":"zba1-3-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-ss-live.zahs.tv", + "domain":"zba2-2-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-ss-live.zahs.tv", + "domain":"zba2-3-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba1-2-hls5-pvr.zahs.tv", + "domain":"zba1-2-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-hls5-pvr.zahs.tv", + "domain":"zba2-2-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-dash-pvr.zahs.tv", + "domain":"zh2-6-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-dash-pvr.zahs.tv", + "domain":"zh2-7-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-dash-pvr.zahs.tv", + "domain":"zh2-8-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-ss-live.zahs.tv", + "domain":"zh2-8-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1019-1-137.cdn.iptv.ch", + "domain":"s1019-1-137.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1042-0-136.cdn.iptv.ch", + "domain":"s1042-0-136.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1042-1-137.cdn.iptv.ch", + "domain":"s1042-1-137.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1019-0-136.cdn.iptv.ch", + "domain":"s1019-0-136.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1016-1-137.cdn.iptv.ch", + "domain":"s1016-1-137.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-0-hls5enc-live.zahs.tv", + "domain":"zba2-0-hls5enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-1-hls5enc-live.zahs.tv", + "domain":"zba2-1-hls5enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-2-hls5enc-live.zahs.tv", + "domain":"zba2-2-hls5enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba2-3-hls5enc-live.zahs.tv", + "domain":"zba2-3-hls5enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1018-1-137.cdn.iptv.ch", + "domain":"s1018-1-137.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1018-0-136.cdn.iptv.ch", + "domain":"s1018-0-136.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1016-0-136.cdn.iptv.ch", + "domain":"s1016-0-136.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1020-0-136.cdn.iptv.ch", + "domain":"s1020-0-136.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1020-1-137.cdn.iptv.ch", + "domain":"s1020-1-137.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1021-1-137.cdn.iptv.ch", + "domain":"s1021-1-137.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1041-1-137.cdn.iptv.ch", + "domain":"s1041-1-137.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1021-0-136.cdn.iptv.ch", + "domain":"s1021-0-136.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1041-0-136.cdn.iptv.ch", + "domain":"s1041-0-136.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"app.wilmaa.com", + "domain":"app.wilmaa.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"*.wilmaa.com", + "domain":"*.wilmaa.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"*.zahs.tv", + "domain":"*.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"*.zattoo.com", + "domain":"*.zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-dash-live.zahs.tv", + "domain":"fr5-1-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-dash-live.zahs.tv", + "domain":"fr5-2-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-dash-live.zahs.tv", + "domain":"fr5-3-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-dash-live.zahs.tv", + "domain":"fr5-4-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-dash-live.zahs.tv", + "domain":"fr5-5-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"resources.wilmaa.com", + "domain":"resources.wilmaa.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"wilmaa.wemfbox.ch", + "domain":"wilmaa.wemfbox.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1017-1-137.cdn.iptv.ch", + "domain":"s1017-1-137.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1017-0-136.cdn.iptv.ch", + "domain":"s1017-0-136.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-hls5-pvr.zahs.tv", + "domain":"zh2-5-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-dashenc-vod.zahs.tv", + "domain":"zh2-0-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-dashenc-vod.zahs.tv", + "domain":"zh2-1-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-dashenc-vod.zahs.tv", + "domain":"zh2-2-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-dashenc-vod.zahs.tv", + "domain":"zh2-3-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-dashenc-vod.zahs.tv", + "domain":"zh2-4-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-dashenc-vod.zahs.tv", + "domain":"zh2-5-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"media.service.teleboy.ch", + "domain":"media.service.teleboy.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-hls5-live.zahs.tv", + "domain":"fr5-1-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-hls5-live.zahs.tv", + "domain":"fr5-2-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-hls5-live.zahs.tv", + "domain":"fr5-3-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-hls5-live.zahs.tv", + "domain":"fr5-4-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-hls5-live.zahs.tv", + "domain":"fr5-5-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1013-0-136.cdn.iptv.ch", + "domain":"s1013-0-136.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s1013-1-137.cdn.iptv.ch", + "domain":"s1013-1-137.cdn.iptv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr1-hls5-pvr.zahs.tv", + "domain":"oldpvr1-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr2-hls5-pvr.zahs.tv", + "domain":"oldpvr2-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr3-hls5-pvr.zahs.tv", + "domain":"oldpvr3-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr4-hls5-pvr.zahs.tv", + "domain":"oldpvr4-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr1-dash-pvr.zahs.tv", + "domain":"oldpvr1-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr2-dash-pvr.zahs.tv", + "domain":"oldpvr2-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr3-dash-pvr.zahs.tv", + "domain":"oldpvr3-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr4-dash-pvr.zahs.tv", + "domain":"oldpvr4-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"beta.zattoo.com", + "domain":"beta.zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-0-ss-live.zahs.tv", + "domain":"fra3-0-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-1-ss-live.zahs.tv", + "domain":"fra3-1-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-2-ss-live.zahs.tv", + "domain":"fra3-2-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-dash-live.zahs.tv", + "domain":"zba6-1-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-dash-live.zahs.tv", + "domain":"zba6-2-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-ss-live.zahs.tv", + "domain":"zba6-1-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-ss-live.zahs.tv", + "domain":"zba6-2-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-hls7-pvr.zahs.tv", + "domain":"zh2-5-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-hls7-pvr.zahs.tv", + "domain":"zh2-3-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-hls7-pvr.zahs.tv", + "domain":"zh2-0-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-hls7-pvr.zahs.tv", + "domain":"zh2-1-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-hls7-pvr.zahs.tv", + "domain":"zh2-2-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-hls7-pvr.zahs.tv", + "domain":"zh2-4-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-hls7-pvr.zahs.tv", + "domain":"zh2-6-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-hls7-pvr.zahs.tv", + "domain":"zh2-7-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-hls7-live.zahs.tv", + "domain":"zh2-0-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-hls7-live.zahs.tv", + "domain":"zh2-1-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-hls7-live.zahs.tv", + "domain":"zh2-2-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-hls7-live.zahs.tv", + "domain":"zh2-3-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-hls7-live.zahs.tv", + "domain":"zh2-4-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-hls7-live.zahs.tv", + "domain":"zh2-5-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-hls7-live.zahs.tv", + "domain":"zh2-6-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-hls7-live.zahs.tv", + "domain":"zh2-7-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr1-hls7-pvr.zahs.tv", + "domain":"oldpvr1-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr2-hls7-pvr.zahs.tv", + "domain":"oldpvr2-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr3-hls7-pvr.zahs.tv", + "domain":"oldpvr3-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr4-hls7-pvr.zahs.tv", + "domain":"oldpvr4-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zattoo-dash-live.akamaized.net", + "domain":"zattoo-dash-live.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr1-ss-pvr.zahs.tv", + "domain":"oldpvr1-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr2-ss-pvr.zahs.tv", + "domain":"oldpvr2-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr3-ss-pvr.zahs.tv", + "domain":"oldpvr3-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr4-ss-pvr.zahs.tv", + "domain":"oldpvr4-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tv.api.teleboy.ch", + "domain":"tv.api.teleboy.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zattoo-ss-live.akamaized.net", + "domain":"zattoo-ss-live.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-1-ss-pvr.zahs.tv", + "domain":"fra3-1-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-0-ss-pvr.zahs.tv", + "domain":"fra3-0-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-2-ss-pvr.zahs.tv", + "domain":"fra3-2-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-3-ss-pvr.zahs.tv", + "domain":"fra3-3-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-hls5-live.zahs.tv", + "domain":"zh2-9-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-hls5-pvr.zahs.tv", + "domain":"zh2-9-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-hls5-live.zahs.tv", + "domain":"zba6-0-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-hls5-live.zahs.tv", + "domain":"zba6-1-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-hls5-live.zahs.tv", + "domain":"zba6-2-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-hls5-pvr.zahs.tv", + "domain":"zba6-0-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-hls5-pvr.zahs.tv", + "domain":"zba6-1-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-hls5-pvr.zahs.tv", + "domain":"zba6-2-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-dash-pvr.zahs.tv", + "domain":"zba6-0-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-dash-pvr.zahs.tv", + "domain":"zba6-1-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-dash-pvr.zahs.tv", + "domain":"zba6-2-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-0-dash-pvr.zahs.tv", + "domain":"fra3-0-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-1-dash-pvr.zahs.tv", + "domain":"fra3-1-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-2-dash-pvr.zahs.tv", + "domain":"fra3-2-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-3-dash-pvr.zahs.tv", + "domain":"fra3-3-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-dash-live.zahs.tv", + "domain":"zba6-0-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-0-dash-live.zahs.tv", + "domain":"fra3-0-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-1-dash-live.zahs.tv", + "domain":"fra3-1-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-2-dash-live.zahs.tv", + "domain":"fra3-2-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-3-dash-live.zahs.tv", + "domain":"fra3-3-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-0-dash-live.zahs.tv", + "domain":"zba8-0-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-1-dash-live.zahs.tv", + "domain":"zba8-1-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-2-dash-live.zahs.tv", + "domain":"zba8-2-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-0-dash-pvr.zahs.tv", + "domain":"zba8-0-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-1-dash-pvr.zahs.tv", + "domain":"zba8-1-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-2-dash-pvr.zahs.tv", + "domain":"zba8-2-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-dash-live.zahs.tv", + "domain":"zh2-9-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-dash-pvr.zahs.tv", + "domain":"zh2-9-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-dashenc-vod.zahs.tv", + "domain":"zh2-6-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-dashenc-vod.zahs.tv", + "domain":"zh2-7-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-dashenc-vod.zahs.tv", + "domain":"zh2-8-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-dashenc-vod.zahs.tv", + "domain":"zh2-9-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-dashenc-live.zahs.tv", + "domain":"zh2-6-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-dashenc-live.zahs.tv", + "domain":"zh2-7-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-dashenc-live.zahs.tv", + "domain":"zh2-8-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-dashenc-live.zahs.tv", + "domain":"zh2-1-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-dashenc-live.zahs.tv", + "domain":"zh2-2-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-dashenc-live.zahs.tv", + "domain":"zh2-3-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-dashenc-live.zahs.tv", + "domain":"zh2-4-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-dashenc-live.zahs.tv", + "domain":"zh2-5-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-dashenc-pvr.zahs.tv", + "domain":"zh2-1-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-dashenc-pvr.zahs.tv", + "domain":"zh2-2-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-dashenc-pvr.zahs.tv", + "domain":"zh2-3-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-dashenc-pvr.zahs.tv", + "domain":"zh2-4-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-dashenc-pvr.zahs.tv", + "domain":"zh2-5-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-dashenc-pvr.zahs.tv", + "domain":"zh2-6-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-dashenc-pvr.zahs.tv", + "domain":"zh2-7-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-dashenc-pvr.zahs.tv", + "domain":"zh2-8-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-dashenc-pvr.zahs.tv", + "domain":"zh2-9-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-dashenc-vod.zahs.tv", + "domain":"fr5-1-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-dashenc-vod.zahs.tv", + "domain":"fr5-2-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-dashenc-vod.zahs.tv", + "domain":"fr5-3-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-dashenc-vod.zahs.tv", + "domain":"fr5-4-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-dashenc-vod.zahs.tv", + "domain":"fr5-5-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-dashenc-live.zahs.tv", + "domain":"fr5-1-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-dashenc-live.zahs.tv", + "domain":"fr5-2-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-dashenc-live.zahs.tv", + "domain":"fr5-3-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-dashenc-live.zahs.tv", + "domain":"fr5-4-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-dashenc-live.zahs.tv", + "domain":"fr5-5-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-dashenc-vod.zahs.tv", + "domain":"zba6-0-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-dashenc-vod.zahs.tv", + "domain":"zba6-1-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-dashenc-vod.zahs.tv", + "domain":"zba6-2-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-dashenc-live.zahs.tv", + "domain":"zba6-0-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-dashenc-live.zahs.tv", + "domain":"zba6-1-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-dashenc-live.zahs.tv", + "domain":"zba6-2-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-dashenc-live.zahs.tv", + "domain":"fr5-0-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-dashenc-vod.zahs.tv", + "domain":"fr5-0-dashenc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-dashenc-pvr.zahs.tv", + "domain":"zh2-0-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-dashenc-live.zahs.tv", + "domain":"zh2-0-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-0-hls7-live.zahs.tv", + "domain":"fra3-0-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-1-hls7-live.zahs.tv", + "domain":"fra3-1-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-2-hls7-live.zahs.tv", + "domain":"fra3-2-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-3-hls7-live.zahs.tv", + "domain":"fra3-3-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-0-hls7-pvr.zahs.tv", + "domain":"fra3-0-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-1-hls7-pvr.zahs.tv", + "domain":"fra3-1-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-2-hls7-pvr.zahs.tv", + "domain":"fra3-2-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-3-hls7-pvr.zahs.tv", + "domain":"fra3-3-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-0-hls7-vod.zahs.tv", + "domain":"fra3-0-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-1-hls7-vod.zahs.tv", + "domain":"fra3-1-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-2-hls7-vod.zahs.tv", + "domain":"fra3-2-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-3-hls7-vod.zahs.tv", + "domain":"fra3-3-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-0.zahs.tv", + "domain":"fra3-0.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-1.zahs.tv", + "domain":"fra3-1.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-2.zahs.tv", + "domain":"fra3-2.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-3.zahs.tv", + "domain":"fra3-3.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-0.zahs.tv", + "domain":"zba8-0.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-1.zahs.tv", + "domain":"zba8-1.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-2.zahs.tv", + "domain":"zba8-2.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-0-hls7-live.zahs.tv", + "domain":"zba8-0-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-1-hls7-live.zahs.tv", + "domain":"zba8-1-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-2-hls7-live.zahs.tv", + "domain":"zba8-2-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-0-hls7-pvr.zahs.tv", + "domain":"zba8-0-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-1-hls7-pvr.zahs.tv", + "domain":"zba8-1-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-2-hls7-pvr.zahs.tv", + "domain":"zba8-2-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-0-hls7-vod.zahs.tv", + "domain":"zba8-0-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-1-hls7-vod.zahs.tv", + "domain":"zba8-1-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-2-hls7-vod.zahs.tv", + "domain":"zba8-2-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-hls7-live.zahs.tv", + "domain":"zh2-8-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-hls7-live.zahs.tv", + "domain":"zh2-9-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-hls7-pvr.zahs.tv", + "domain":"zh2-8-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-hls7-pvr.zahs.tv", + "domain":"zh2-9-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-hls7-vod.zahs.tv", + "domain":"zh2-8-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-hls7-vod.zahs.tv", + "domain":"zh2-9-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-hls7-live.zahs.tv", + "domain":"zba6-0-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-hls7-live.zahs.tv", + "domain":"zba6-1-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-hls7-live.zahs.tv", + "domain":"zba6-2-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-hls7-pvr.zahs.tv", + "domain":"zba6-0-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-hls7-pvr.zahs.tv", + "domain":"zba6-1-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-hls7-pvr.zahs.tv", + "domain":"zba6-2-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-hls7-vod.zahs.tv", + "domain":"zba6-0-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-hls7-vod.zahs.tv", + "domain":"zba6-1-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-hls7-vod.zahs.tv", + "domain":"zba6-2-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0.zahs.tv", + "domain":"zba6-0.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1.zahs.tv", + "domain":"zba6-1.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2.zahs.tv", + "domain":"zba6-2.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-hls7-live.zahs.tv", + "domain":"fr5-0-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-hls7-live.zahs.tv", + "domain":"fr5-1-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-hls7-live.zahs.tv", + "domain":"fr5-2-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-hls7-live.zahs.tv", + "domain":"fr5-3-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-hls7-live.zahs.tv", + "domain":"fr5-4-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-hls7-live.zahs.tv", + "domain":"fr5-5-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-hls7-pvr.zahs.tv", + "domain":"fr5-0-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-hls7-pvr.zahs.tv", + "domain":"fr5-1-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-hls7-pvr.zahs.tv", + "domain":"fr5-2-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-hls7-pvr.zahs.tv", + "domain":"fr5-3-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-hls7-pvr.zahs.tv", + "domain":"fr5-4-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-hls7-pvr.zahs.tv", + "domain":"fr5-5-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-hls7-vod.zahs.tv", + "domain":"fr5-0-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-hls7-vod.zahs.tv", + "domain":"fr5-1-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-hls7-vod.zahs.tv", + "domain":"fr5-2-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-hls7-vod.zahs.tv", + "domain":"fr5-3-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-hls7-vod.zahs.tv", + "domain":"fr5-4-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-hls7-vod.zahs.tv", + "domain":"fr5-5-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0.zahs.tv", + "domain":"fr5-0.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1.zahs.tv", + "domain":"fr5-1.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2.zahs.tv", + "domain":"fr5-2.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3.zahs.tv", + "domain":"fr5-3.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4.zahs.tv", + "domain":"fr5-4.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5.zahs.tv", + "domain":"fr5-5.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"teleboy-ssl.wemfbox.ch", + "domain":"teleboy-ssl.wemfbox.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-0-hls5-live.zahs.tv", + "domain":"fra3-0-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-1-hls5-live.zahs.tv", + "domain":"fra3-1-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-2-hls5-live.zahs.tv", + "domain":"fra3-2-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-3-hls5-live.zahs.tv", + "domain":"fra3-3-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-0-hls5-pvr.zahs.tv", + "domain":"fra3-0-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-1-hls5-pvr.zahs.tv", + "domain":"fra3-1-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-2-hls5-pvr.zahs.tv", + "domain":"fra3-2-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-3-hls5-pvr.zahs.tv", + "domain":"fra3-3-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-0-hls5-vod.zahs.tv", + "domain":"fra3-0-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-1-hls5-vod.zahs.tv", + "domain":"fra3-1-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-2-hls5-vod.zahs.tv", + "domain":"fra3-2-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-3-hls5-vod.zahs.tv", + "domain":"fra3-3-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-0-hls5-live.zahs.tv", + "domain":"zba8-0-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-1-hls5-live.zahs.tv", + "domain":"zba8-1-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-2-hls5-live.zahs.tv", + "domain":"zba8-2-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-0-hls5-pvr.zahs.tv", + "domain":"zba8-0-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-1-hls5-pvr.zahs.tv", + "domain":"zba8-1-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-2-hls5-pvr.zahs.tv", + "domain":"zba8-2-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-0-hls5-vod.zahs.tv", + "domain":"zba8-0-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-1-hls5-vod.zahs.tv", + "domain":"zba8-1-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba8-2-hls5-vod.zahs.tv", + "domain":"zba8-2-hls5-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-ss-pvr.zahs.tv", + "domain":"zh2-9-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-ss-live.zahs.tv", + "domain":"zh2-9-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-ss-live.zahs.tv", + "domain":"zba6-0-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-ss-pvr.zahs.tv", + "domain":"zba6-0-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-ss-pvr.zahs.tv", + "domain":"zba6-1-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zattoo-hls7-live.akamaized.net", + "domain":"zattoo-hls7-live.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zattoo-ssl.wemfbox.ch", + "domain":"zattoo-ssl.wemfbox.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-hls5-live.zahs.tv", + "domain":"fr5-0-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-hls-live.zahs.tv", + "domain":"zba6-1-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-hls-live.zahs.tv", + "domain":"zba6-0-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-hls-live.zahs.tv", + "domain":"zh2-9-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-ss-live.zahs.tv", + "domain":"fr5-4-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-ss-pvr.zahs.tv", + "domain":"fr5-4-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-ss-live.zahs.tv", + "domain":"fr5-3-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-ss-pvr.zahs.tv", + "domain":"fr5-3-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-ss-live.zahs.tv", + "domain":"fr5-5-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-ss-pvr.zahs.tv", + "domain":"fr5-5-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-hls-live.zahs.tv", + "domain":"fr5-3-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-hls-live.zahs.tv", + "domain":"fr5-4-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-dash-pvr.zahs.tv", + "domain":"fr5-5-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-dash-pvr.zahs.tv", + "domain":"fr5-3-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-hls-live.zahs.tv", + "domain":"fr5-5-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-10-ss-pvr.zahs.tv", + "domain":"zh2-10-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-dash-vod.zahs.tv", + "domain":"zba6-0-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-dash-vod.zahs.tv", + "domain":"zba6-1-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-dash-vod.zahs.tv", + "domain":"zba6-2-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-10-hls-live.zahs.tv", + "domain":"zh2-10-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-10-dash-vod.zahs.tv", + "domain":"zh2-10-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-10-dash-pvr.zahs.tv", + "domain":"zh2-10-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-10-ss-live.zahs.tv", + "domain":"zh2-10-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-hls-live.zahs.tv", + "domain":"zba6-2-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-ss-pvr.zahs.tv", + "domain":"zba6-2-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-11-dash-live.zahs.tv", + "domain":"zh2-11-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-11-ss-pvr.zahs.tv", + "domain":"zh2-11-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-11-ss-live.zahs.tv", + "domain":"zh2-11-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-11-hls-live.zahs.tv", + "domain":"zh2-11-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-11-dash-vod.zahs.tv", + "domain":"zh2-11-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-10-hls5-live.zahs.tv", + "domain":"zh2-10-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-10-dash-live.zahs.tv", + "domain":"zh2-10-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-10-hls7-live.zahs.tv", + "domain":"zh2-10-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-hls-live.zahs.tv", + "domain":"fr5-0-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-hls-live.zahs.tv", + "domain":"fr5-1-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-hls-live.zahs.tv", + "domain":"fr5-2-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-0-hls-live.zahs.tv", + "domain":"fra3-0-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-1-hls-live.zahs.tv", + "domain":"fra3-1-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-2-hls-live.zahs.tv", + "domain":"fra3-2-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-3-hls-live.zahs.tv", + "domain":"fra3-3-hls-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-dash-live.zahs.tv", + "domain":"fr5-0-dash-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-ss-live.zahs.tv", + "domain":"fr5-0-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-ss-live.zahs.tv", + "domain":"fr5-1-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-ss-live.zahs.tv", + "domain":"fr5-2-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-3-ss-live.zahs.tv", + "domain":"fra3-3-ss-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-ss-pvr.zahs.tv", + "domain":"fr5-0-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-ss-pvr.zahs.tv", + "domain":"fr5-1-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-ss-pvr.zahs.tv", + "domain":"fr5-2-ss-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-hls-pvr.zahs.tv", + "domain":"fr5-0-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-hls-pvr.zahs.tv", + "domain":"fr5-1-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-hls-pvr.zahs.tv", + "domain":"fr5-2-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-hls-pvr.zahs.tv", + "domain":"fr5-3-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-hls-pvr.zahs.tv", + "domain":"fr5-4-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-hls-pvr.zahs.tv", + "domain":"fr5-5-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-1-hls-pvr.zahs.tv", + "domain":"fra3-1-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-2-hls-pvr.zahs.tv", + "domain":"fra3-2-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fra3-3-hls-pvr.zahs.tv", + "domain":"fra3-3-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-hls-pvr.zahs.tv", + "domain":"zh2-7-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-hls-pvr.zahs.tv", + "domain":"zh2-8-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-hls-pvr.zahs.tv", + "domain":"zh2-9-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-hls-pvr.zahs.tv", + "domain":"zba6-0-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-hls-pvr.zahs.tv", + "domain":"zba6-1-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-hls-pvr.zahs.tv", + "domain":"zba6-2-hls-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-hls5-pvr.zahs.tv", + "domain":"fr5-0-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-hls5-pvr.zahs.tv", + "domain":"fr5-1-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-hls5-pvr.zahs.tv", + "domain":"fr5-2-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-hls5-pvr.zahs.tv", + "domain":"fr5-3-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-hls5-pvr.zahs.tv", + "domain":"fr5-4-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-hls5-pvr.zahs.tv", + "domain":"fr5-5-hls5-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-dash-pvr.zahs.tv", + "domain":"zh2-4-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-dash-pvr.zahs.tv", + "domain":"fr5-0-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-dash-pvr.zahs.tv", + "domain":"fr5-1-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-dash-pvr.zahs.tv", + "domain":"fr5-2-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-dash-pvr.zahs.tv", + "domain":"fr5-4-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"chromecast-receiver.zattoo.com", + "domain":"chromecast-receiver.zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zattoo-tizen.zattoo.com", + "domain":"zattoo-tizen.zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-11-hls7-live.zahs.tv", + "domain":"zh2-11-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-11-hls5-live.zahs.tv", + "domain":"zh2-11-hls5-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-11-dash-pvr.zahs.tv", + "domain":"zh2-11-dash-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-11-hls7-pvr.zahs.tv", + "domain":"zh2-11-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"shop0088.zattoo.com", + "domain":"shop0088.zattoo.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.sky.ch", + "domain":"www.sky.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sky.ch", + "domain":"sky.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"show.sky.ch", + "domain":"show.sky.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sport.sky.ch", + "domain":"sport.sky.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"store.sky.ch", + "domain":"store.sky.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"services.sg1.etvp01.sctv.ch", + "domain":"services.sg1.etvp01.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0401.sctv.ch", + "domain":"tvoosa-pez0401.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0402.sctv.ch", + "domain":"tvoosa-pez0402.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0403.sctv.ch", + "domain":"tvoosa-pez0403.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0404.sctv.ch", + "domain":"tvoosa-pez0404.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0405.sctv.ch", + "domain":"tvoosa-pez0405.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0406.sctv.ch", + "domain":"tvoosa-pez0406.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0407.sctv.ch", + "domain":"tvoosa-pez0407.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0408.sctv.ch", + "domain":"tvoosa-pez0408.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0409.sctv.ch", + "domain":"tvoosa-pez0409.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0410.sctv.ch", + "domain":"tvoosa-pez0410.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0412.sctv.ch", + "domain":"tvoosa-pez0412.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0413.sctv.ch", + "domain":"tvoosa-pez0413.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez04014sctv.ch", + "domain":"tvoosa-pez04014sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0415.sctv.ch", + "domain":"tvoosa-pez0415.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0416.sctv.ch", + "domain":"tvoosa-pez0416.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0417.sctv.ch", + "domain":"tvoosa-pez0417.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0418.sctv.ch", + "domain":"tvoosa-pez0418.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0419.sctv.ch", + "domain":"tvoosa-pez0419.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0420.sctv.ch", + "domain":"tvoosa-pez0420.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tvoosa-pez0400.sctv.ch", + "domain":"tvoosa-pez0400.sctv.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"test.teleboy.ch", + "domain":"test.teleboy.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-hls7enc-live.zahs.tv", + "domain":"fr5-1-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-hls7enc-live.zahs.tv", + "domain":"fr5-2-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-hls7enc-live.zahs.tv", + "domain":"fr5-3-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-hls7enc-live.zahs.tv", + "domain":"fr5-4-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-hls7enc-live.zahs.tv", + "domain":"fr5-5-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-hls7enc-live.zahs.tv", + "domain":"zh2-1-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-hls7enc-live.zahs.tv", + "domain":"zh2-2-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-hls7enc-live.zahs.tv", + "domain":"zh2-3-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-hls7enc-live.zahs.tv", + "domain":"zh2-4-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-hls7enc-live.zahs.tv", + "domain":"zh2-5-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-hls7enc-live.zahs.tv", + "domain":"zh2-6-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-hls7enc-live.zahs.tv", + "domain":"zh2-7-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-hls7enc-live.zahs.tv", + "domain":"zh2-8-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-hls7enc-live.zahs.tv", + "domain":"zh2-9-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-10-hls7enc-live.zahs.tv", + "domain":"zh2-10-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-11-hls7enc-live.zahs.tv", + "domain":"zh2-11-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-12-hls7enc-live.zahs.tv", + "domain":"zh2-12-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-13-hls7enc-live.zahs.tv", + "domain":"zh2-13-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-hls7enc-live.zahs.tv", + "domain":"zba6-1-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-hls7enc-live.zahs.tv", + "domain":"zba6-2-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-hls7enc-live.zahs.tv", + "domain":"zh2-0-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-hls7enc-live.zahs.tv", + "domain":"zba6-0-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-hls7enc-vod.zahs.tv", + "domain":"fr5-0-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-hls7enc-vod.zahs.tv", + "domain":"fr5-1-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-hls7enc-vod.zahs.tv", + "domain":"fr5-2-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-hls7enc-vod.zahs.tv", + "domain":"fr5-3-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-hls7enc-vod.zahs.tv", + "domain":"fr5-4-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-hls7enc-vod.zahs.tv", + "domain":"fr5-5-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-hls7enc-live.zahs.tv", + "domain":"fr5-0-hls7enc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-hls7enc-vod.zahs.tv", + "domain":"zh2-0-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-hls7enc-vod.zahs.tv", + "domain":"zh2-1-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-hls7enc-vod.zahs.tv", + "domain":"zh2-2-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-hls7enc-vod.zahs.tv", + "domain":"zh2-3-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-hls7enc-vod.zahs.tv", + "domain":"zh2-4-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-hls7enc-vod.zahs.tv", + "domain":"zh2-5-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-hls7enc-vod.zahs.tv", + "domain":"zh2-6-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-hls7enc-vod.zahs.tv", + "domain":"zh2-7-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-hls7enc-vod.zahs.tv", + "domain":"zh2-8-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-hls7enc-vod.zahs.tv", + "domain":"zh2-9-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-10-hls7enc-vod.zahs.tv", + "domain":"zh2-10-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-11-hls7enc-vod.zahs.tv", + "domain":"zh2-11-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-12-hls7enc-vod.zahs.tv", + "domain":"zh2-12-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-13-hls7enc-vod.zahs.tv", + "domain":"zh2-13-hls7enc-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-sspr-pvr.zahs.tv", + "domain":"zba6-0-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-sspr-pvr.zahs.tv", + "domain":"zba6-1-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-sspr-pvr.zahs.tv", + "domain":"zba6-2-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-sspr-pvr.zahs.tv", + "domain":"fr5-0-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-sspr-pvr.zahs.tv", + "domain":"fr5-1-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-sspr-pvr.zahs.tv", + "domain":"fr5-2-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-sspr-pvr.zahs.tv", + "domain":"fr5-3-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-sspr-pvr.zahs.tv", + "domain":"fr5-4-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-sspr-pvr.zahs.tv", + "domain":"fr5-5-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-dashenc-pvr.zahs.tv", + "domain":"fr5-0-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-dashenc-pvr.zahs.tv", + "domain":"fr5-1-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-dashenc-pvr.zahs.tv", + "domain":"fr5-2-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-dashenc-pvr.zahs.tv", + "domain":"fr5-3-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-dashenc-pvr.zahs.tv", + "domain":"fr5-4-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-dashenc-pvr.zahs.tv", + "domain":"fr5-5-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-dashenc-pvr.zahs.tv", + "domain":"zba6-0-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-dashenc-pvr.zahs.tv", + "domain":"zba6-1-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-dashenc-pvr.zahs.tv", + "domain":"zba6-2-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr1-dashenc-pvr.zahs.tv", + "domain":"oldpvr1-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr2-dashenc-pvr.zahs.tv", + "domain":"oldpvr2-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr3-dashenc-pvr.zahs.tv", + "domain":"oldpvr3-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr4-dashenc-pvr.zahs.tv", + "domain":"oldpvr4-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-10-dashenc-pvr.zahs.tv", + "domain":"zh2-10-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-11-dashenc-pvr.zahs.tv", + "domain":"zh2-11-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-12-dashenc-pvr.zahs.tv", + "domain":"zh2-12-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-13-dashenc-pvr.zahs.tv", + "domain":"zh2-13-dashenc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-sspr-live.zahs.tv", + "domain":"zh2-7-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-sspr-live.zahs.tv", + "domain":"zh2-8-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-sspr-live.zahs.tv", + "domain":"zh2-9-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-10-sspr-live.zahs.tv", + "domain":"zh2-10-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-11-sspr-live.zahs.tv", + "domain":"zh2-11-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-12-sspr-live.zahs.tv", + "domain":"zh2-12-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-13-sspr-live.zahs.tv", + "domain":"zh2-13-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-sspr-live.zahs.tv", + "domain":"fr5-0-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-sspr-live.zahs.tv", + "domain":"fr5-1-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-sspr-live.zahs.tv", + "domain":"fr5-2-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-sspr-live.zahs.tv", + "domain":"fr5-3-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-sspr-live.zahs.tv", + "domain":"fr5-4-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-sspr-live.zahs.tv", + "domain":"fr5-5-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-hls7enc-pvr.zahs.tv", + "domain":"fr5-0-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-hls7enc-pvr.zahs.tv", + "domain":"fr5-1-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-hls7enc-pvr.zahs.tv", + "domain":"fr5-2-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-hls7enc-pvr.zahs.tv", + "domain":"fr5-3-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-hls7enc-pvr.zahs.tv", + "domain":"fr5-4-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-hls7enc-pvr.zahs.tv", + "domain":"fr5-5-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-0-hls7enc-pvr.zahs.tv", + "domain":"zh2-0-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-1-hls7enc-pvr.zahs.tv", + "domain":"zh2-1-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-2-hls7enc-pvr.zahs.tv", + "domain":"zh2-2-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-3-hls7enc-pvr.zahs.tv", + "domain":"zh2-3-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-4-hls7enc-pvr.zahs.tv", + "domain":"zh2-4-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-5-hls7enc-pvr.zahs.tv", + "domain":"zh2-5-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-6-hls7enc-pvr.zahs.tv", + "domain":"zh2-6-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-hls7enc-pvr.zahs.tv", + "domain":"zh2-7-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-hls7enc-pvr.zahs.tv", + "domain":"zh2-8-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-hls7enc-pvr.zahs.tv", + "domain":"zh2-9-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-10-hls7enc-pvr.zahs.tv", + "domain":"zh2-10-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-11-hls7enc-pvr.zahs.tv", + "domain":"zh2-11-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-12-hls7enc-pvr.zahs.tv", + "domain":"zh2-12-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-13-hls7enc-pvr.zahs.tv", + "domain":"zh2-13-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-hls7enc-pvr.zahs.tv", + "domain":"zba6-0-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-hls7enc-pvr.zahs.tv", + "domain":"zba6-1-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-hls7enc-pvr.zahs.tv", + "domain":"zba6-2-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr1-hls7enc-pvr.zahs.tv", + "domain":"oldpvr1-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr2-hls7enc-pvr.zahs.tv", + "domain":"oldpvr2-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr3-hls7enc-pvr.zahs.tv", + "domain":"oldpvr3-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"oldpvr4-hls7enc-pvr.zahs.tv", + "domain":"oldpvr4-hls7enc-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-7-sspr-pvr.zahs.tv", + "domain":"zh2-7-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-8-sspr-pvr.zahs.tv", + "domain":"zh2-8-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-sspr-pvr.zahs.tv", + "domain":"zh2-9-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-10-sspr-pvr.zahs.tv", + "domain":"zh2-10-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-11-sspr-pvr.zahs.tv", + "domain":"zh2-11-sspr-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-9-dashenc-live.zahs.tv", + "domain":"zh2-9-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-10-dashenc-live.zahs.tv", + "domain":"zh2-10-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-11-dashenc-live.zahs.tv", + "domain":"zh2-11-dashenc-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-sspr-live.zahs.tv", + "domain":"zba6-0-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-sspr-live.zahs.tv", + "domain":"zba6-1-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-sspr-live.zahs.tv", + "domain":"zba6-2-sspr-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-0-sspr-vod.zahs.tv", + "domain":"zba6-0-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-1-sspr-vod.zahs.tv", + "domain":"zba6-1-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zba6-2-sspr-vod.zahs.tv", + "domain":"zba6-2-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-dash-vod.zahs.tv", + "domain":"fr5-0-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-dash-vod.zahs.tv", + "domain":"fr5-1-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-dash-vod.zahs.tv", + "domain":"fr5-2-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-dash-vod.zahs.tv", + "domain":"fr5-3-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-dash-vod.zahs.tv", + "domain":"fr5-4-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-dash-vod.zahs.tv", + "domain":"fr5-5-dash-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-0-sspr-vod.zahs.tv", + "domain":"fr5-0-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-1-sspr-vod.zahs.tv", + "domain":"fr5-1-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-2-sspr-vod.zahs.tv", + "domain":"fr5-2-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-3-sspr-vod.zahs.tv", + "domain":"fr5-3-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-4-sspr-vod.zahs.tv", + "domain":"fr5-4-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fr5-5-sspr-vod.zahs.tv", + "domain":"fr5-5-sspr-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-13-hls7-pvr.zahs.tv", + "domain":"zh2-13-hls7-pvr.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-12-hls7-live.zahs.tv", + "domain":"zh2-12-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-13-hls7-live.zahs.tv", + "domain":"zh2-13-hls7-live.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"zh2-12-hls7-vod.zahs.tv", + "domain":"zh2-12-hls7-vod.zahs.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.teleboy.ch", + "domain":"www.teleboy.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"il.srgssr.ch", + "domain":"il.srgssr.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"srgssruni1ch-lh.akamaihd.net", + "domain":"srgssruni1ch-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"srgssruni2ch-lh.akamaihd.net", + "domain":"srgssruni2ch-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"srgssruni3ch-lh.akamaihd.net", + "domain":"srgssruni3ch-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sftv-ssl.wemfbox.ch", + "domain":"sftv-ssl.wemfbox.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.srf.ch", + "domain":"www.srf.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"srfvodhd-vh.akamaihd.net", + "domain":"srfvodhd-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"srgssrrcdvr5ch-lh.akamaihd.net", + "domain":"srgssrrcdvr5ch-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"srgssrgop18a-lh.akamaihd.net", + "domain":"srgssrgop18a-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"srgssruni18ach-lh.akamaihd.net", + "domain":"srgssruni18ach-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"srgssruni6ch-lh.akamaihd.net", + "domain":"srgssruni6ch-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"srgssrrcdvr4ch-lh.akamaihd.net", + "domain":"srgssrrcdvr4ch-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"srgssruni4ch-lh.akamaihd.net", + "domain":"srgssruni4ch-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"srgssrgop18b-lh.akamaihd.net", + "domain":"srgssrgop18b-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"srgssrrcdvr1ch-lh.akamaihd.net", + "domain":"srgssrrcdvr1ch-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"srgssrrcdvr2ch-lh.akamaihd.net", + "domain":"srgssrrcdvr2ch-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"srgssrrcdvr3ch-lh.akamaihd.net", + "domain":"srgssrrcdvr3ch-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"srgssrrcdvr6ch-lh.akamaihd.net", + "domain":"srgssrrcdvr6ch-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ws.srf.ch", + "domain":"ws.srf.ch", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"geo.francetv.fr", + "domain":"geo.francetv.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ftvodhdsecz-f.akamaihd.net", + "domain":"ftvodhdsecz-f.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pluzz.francetv.fr", + "domain":"pluzz.francetv.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"webservices.francetelevisions.fr", + "domain":"webservices.francetelevisions.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"pluzz.webservices.francetelevisions.fr", + "domain":"pluzz.webservices.francetelevisions.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"geoftv-a.akamaihd.net", + "domain":"geoftv-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ftveninfo-lh.akamaihd.net", + "domain":"ftveninfo-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live.francetv.fr", + "domain":"live.francetv.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hdfauthftv-a.akamaihd.net", + "domain":"hdfauthftv-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"replayftv-vh.akamaihd.net", + "domain":"replayftv-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"livefrancetv.akamaized.net", + "domain":"livefrancetv.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cloudreplayfrancetv.akamaized.net", + "domain":"cloudreplayfrancetv.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.france.tv", + "domain":"www.france.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cloudingestfrancetv.akamaized.net", + "domain":"cloudingestfrancetv.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ftvingest-vh.akamaihd.net", + "domain":"ftvingest-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"staticftv-a.akamaihd.net", + "domain":"staticftv-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cloudreplay.ftven.fr", + "domain":"cloudreplay.ftven.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"simulcast.ftven.fr", + "domain":"simulcast.ftven.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cloudingest.ftven.fr", + "domain":"cloudingest.ftven.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live-olympics.ftven.fr", + "domain":"live-olympics.ftven.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"reco.webservices.francetelevisions.fr", + "domain":"reco.webservices.francetelevisions.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"player.webservices.francetelevisions.fr", + "domain":"player.webservices.francetelevisions.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"mobile.france.tv", + "domain":"mobile.france.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hdfauth.ftven.fr", + "domain":"hdfauth.ftven.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"simulcast-p.ftven.fr", + "domain":"simulcast-p.ftven.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"liveventftv.akamaized.net", + "domain":"liveventftv.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.arte.tv", + "domain":"www.arte.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"org-www.arte.tv", + "domain":"org-www.arte.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.arte.tv", + "domain":"api.arte.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"arte.tv", + "domain":"arte.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"artestras.fc.llnwd.net", + "domain":"artestras.fc.llnwd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.skychnl.net", + "domain":"api.skychnl.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"artelive-lh.akamaihd.net", + "domain":"artelive-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"arteptweb-vh.akamaihd.net", + "domain":"arteptweb-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"arteconcert-vh.akamaihd.net", + "domain":"arteconcert-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api-cdn.arte.tv", + "domain":"api-cdn.arte.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"geoloc.arte.tv", + "domain":"geoloc.arte.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sso.arte.tv", + "domain":"sso.arte.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"wp.arte.tv", + "domain":"wp.arte.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"y1.arte.tv", + "domain":"y1.arte.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"static-cdn.arte.tv", + "domain":"static-cdn.arte.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"arteeurope-vh.akamaihd.net", + "domain":"arteeurope-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"artehls-vh.akamaihd.net", + "domain":"artehls-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api-cdn.arte.tv.edgekey.net", + "domain":"api-cdn.arte.tv.edgekey.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"artesimulcast.akamaized.net", + "domain":"artesimulcast.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tf1livhdsstrike-lh.akamaihd.net", + "domain":"tf1livhdsstrike-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"s.wat.tv", + "domain":"s.wat.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.wat.tv", + "domain":"www.wat.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tmclivhdsweblive-lh.akamaihd.net", + "domain":"tmclivhdsweblive-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nt1livhdsweb-lh.akamaihd.net", + "domain":"nt1livhdsweb-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hd1livhdsweblive-lh.akamaihd.net", + "domain":"hd1livhdsweblive-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"geoloc.tf1.fr", + "domain":"geoloc.tf1.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"delivery.tf1.fr", + "domain":"delivery.tf1.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"player.tf1.fr", + "domain":"player.tf1.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.tf1.fr", + "domain":"www.tf1.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"das-q1-ssl.tf1.fr", + "domain":"das-q1-ssl.tf1.fr", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn1-live.mlflux.net", + "domain":"cdn1-live.mlflux.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn2-live.mlflux.net", + "domain":"cdn2-live.mlflux.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn3-live.mlflux.net", + "domain":"cdn3-live.mlflux.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"noqs-cnd1-live.mlflux.net", + "domain":"noqs-cnd1-live.mlflux.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn3-live-mlflux-net.akamaized.net", + "domain":"cdn3-live-mlflux-net.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn3-vod-mlflux-net.akamaized.net", + "domain":"cdn3-vod-mlflux-net.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"atv.molotov.tv", + "domain":"atv.molotov.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fusion.molotov.tv", + "domain":"fusion.molotov.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fapi.molotov.tv", + "domain":"fapi.molotov.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"app.molotov.tv", + "domain":"app.molotov.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"desktop-auto-upgrade.molotov.tv", + "domain":"desktop-auto-upgrade.molotov.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"images.molotov.tv", + "domain":"images.molotov.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn3-vod.mlflux.net", + "domain":"cdn3-vod.mlflux.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn2-vod.mlflux.net", + "domain":"cdn2-vod.mlflux.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn1-vod.mlflux.net", + "domain":"cdn1-vod.mlflux.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"wpush.molotov.tv", + "domain":"wpush.molotov.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fp-vs.azureedge.net", + "domain":"fp-vs.azureedge.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.viaplay.no", + "domain":"www.viaplay.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.viaplay.se", + "domain":"www.viaplay.se", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.viaplay.dk", + "domain":"www.viaplay.dk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.viaplay.fi", + "domain":"www.viaplay.fi", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"checkout.viaplay.no", + "domain":"checkout.viaplay.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"checkout.viaplay.se", + "domain":"checkout.viaplay.se", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"checkout.viaplay.dk", + "domain":"checkout.viaplay.dk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"checkout.viaplay.fi", + "domain":"checkout.viaplay.fi", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"play.viaplay.no", + "domain":"play.viaplay.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"play.viaplay.se", + "domain":"play.viaplay.se", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"play.viaplay.dk", + "domain":"play.viaplay.dk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"play.viaplay.fi", + "domain":"play.viaplay.fi", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"account.viaplay.no", + "domain":"account.viaplay.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"account.viaplay.se", + "domain":"account.viaplay.se", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"account.viaplay.dk", + "domain":"account.viaplay.dk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"account.viaplay.fi", + "domain":"account.viaplay.fi", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"appconfig.pdl.viaplay.com", + "domain":"appconfig.pdl.viaplay.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"content.viaplay.se", + "domain":"content.viaplay.se", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"content.viaplay.no", + "domain":"content.viaplay.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"content.viaplay.dk", + "domain":"content.viaplay.dk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"content.viaplay.fi", + "domain":"content.viaplay.fi", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"viaplay.mtg-api.com", + "domain":"viaplay.mtg-api.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tnfailover.viaplay.tv", + "domain":"tnfailover.viaplay.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"login.viaplay.no", + "domain":"login.viaplay.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"login.viaplay.se", + "domain":"login.viaplay.se", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"login.viaplay.dk", + "domain":"login.viaplay.dk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"login.viaplay.fi", + "domain":"login.viaplay.fi", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"scandi-secure-vod.hls.adaptive.level3.net", + "domain":"scandi-secure-vod.hls.adaptive.level3.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"appletv.viaplay.se", + "domain":"appletv.viaplay.se", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"appletv.viaplay.no", + "domain":"appletv.viaplay.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"appletv.viaplay.dk", + "domain":"appletv.viaplay.dk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"appletv.viaplay.fi", + "domain":"appletv.viaplay.fi", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"viaplay.no", + "domain":"viaplay.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"viaplay.se", + "domain":"viaplay.se", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"viaplay.dk", + "domain":"viaplay.dk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"viaplay.fi", + "domain":"viaplay.fi", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"psfil.tv.nrk.no", + "domain":"psfil.tv.nrk.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nordond-f.akamaihd.net", + "domain":"nordond-f.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"m.nrk.no", + "domain":"m.nrk.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrk1us-f.akamaihd.net", + "domain":"nrk1us-f.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrk2us-f.akamaihd.net", + "domain":"nrk2us-f.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrk3us-f.akamaihd.net", + "domain":"nrk3us-f.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrksuper-lh.akamaihd.net", + "domain":"nrksuper-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrktegnsprak-lh.akamaihd.net", + "domain":"nrktegnsprak-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"v8-psapi.nrk.no", + "domain":"v8-psapi.nrk.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"v8.psapi.nrk.no", + "domain":"v8.psapi.nrk.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"psapi-ne.nrk.no", + "domain":"psapi-ne.nrk.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"httpcache0-47115-httpcache0.dna.qbrick.com", + "domain":"httpcache0-47115-httpcache0.dna.qbrick.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrk-nrk1.akamaized.net", + "domain":"nrk-nrk1.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrk-nrk2.akamaized.net", + "domain":"nrk-nrk2.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrk-nrk3.akamaized.net", + "domain":"nrk-nrk3.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fastly3.cedexis.fastlylb.net", + "domain":"fastly3.cedexis.fastlylb.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nordond11c-f.akamaihd.net", + "domain":"nordond11c-f.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fastly.cedexis-test.com", + "domain":"fastly.cedexis-test.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrk-od-95.akamaized.net", + "domain":"nrk-od-95.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"httpcache0-47115-cacheod0.dna.qbrick.com", + "domain":"httpcache0-47115-cacheod0.dna.qbrick.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrk-od-no.telenorcdn.net", + "domain":"nrk-od-no.telenorcdn.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"psapi-we.nrk.no", + "domain":"psapi-we.nrk.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"innlogging.nrk.no", + "domain":"innlogging.nrk.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrktv-ios-version-check.nrk.no", + "domain":"nrktv-ios-version-check.nrk.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod37-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod37-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod04-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod04-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod01-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod01-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod02-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod02-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod03-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod03-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod05-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod05-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod06-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod06-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod07-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod07-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod08-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod08-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod09-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod09-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod10-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod10-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod11-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod11-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod12-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod12-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod13-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod13-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod14-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod14-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod15-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod15-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod16-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod16-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod17-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod17-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod18-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod18-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod19-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod19-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod20-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod20-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod21-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod21-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod22-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod22-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod23-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod23-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod24-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod24-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod25-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod25-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod26-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod26-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod27-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod27-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod28-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod28-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod29-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod29-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod30-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod30-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod31-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod31-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod32-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod32-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod33-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod33-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod34-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod34-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod35-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod35-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod36-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod36-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod38-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod38-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod39-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod39-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod40-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod40-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod41-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod41-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod42-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod42-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod43-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod43-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod44-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod44-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod45-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod45-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod46-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod46-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod47-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod47-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod48-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod48-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod49-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod49-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod50-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod50-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod51-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod51-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod52-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod52-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod53-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod53-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod54-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod54-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod55-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod55-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod56-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod56-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod57-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod57-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod58-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod58-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod59-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod59-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod60-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod60-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod61-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod61-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod62-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod62-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod63-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod63-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod64-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod64-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod65-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod65-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod66-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod66-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod67-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod67-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod68-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod68-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod69-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod69-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod70-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod70-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod71-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod71-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod72-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod72-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod73-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod73-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod74-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod74-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod75-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod75-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod76-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod76-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod77-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod77-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod78-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod78-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod79-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod79-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod80-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod80-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod81-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod81-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod82-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod82-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod83-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod83-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod84-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod84-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod85-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod85-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod86-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod86-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod87-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod87-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod88-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod88-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod89-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod89-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod90-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod90-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod91-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod91-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod92-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod92-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod93-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod93-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod94-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod94-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod95-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod95-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod96-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod96-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod97-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod97-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod98-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod98-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkod99-httpcache0-47115-cacheod0.dna.ip-only.net", + "domain":"nrkod99-httpcache0-47115-cacheod0.dna.ip-only.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.nrk.no", + "domain":"www.nrk.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ssl-nrk.tns-cs.net", + "domain":"ssl-nrk.tns-cs.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"nrkstream.tns-cs.net", + "domain":"nrkstream.tns-cs.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"undertekst.nrk.no", + "domain":"undertekst.nrk.no", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dr01-lh.akamaihd.net", + "domain":"dr01-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dr02-lh.akamaihd.net", + "domain":"dr02-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dr03-lh.akamaihd.net", + "domain":"dr03-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dr04-lh.akamaihd.net", + "domain":"dr04-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dr05-lh.akamaihd.net", + "domain":"dr05-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"dr06-lh.akamaihd.net", + "domain":"dr06-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"drod-vh.akamaihd.net", + "domain":"drod-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.dr.dk", + "domain":"www.dr.dk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.dr-massive.com", + "domain":"www.dr-massive.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"drlowlat.akamaized.net", + "domain":"drlowlat.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ssl-drtv-appletv.tns-gallup.dk", + "domain":"ssl-drtv-appletv.tns-gallup.dk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"drlive01hls.akamaized.net", + "domain":"drlive01hls.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"drlive02hls.akamaized.net", + "domain":"drlive02hls.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"drlive03hls.akamaized.net", + "domain":"drlive03hls.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"downol.dr.dk", + "domain":"downol.dr.dk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"drod24t.akamaized.net", + "domain":"drod24t.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"iview.abc.net.au", + "domain":"iview.abc.net.au", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn.iview.abc.net.au", + "domain":"cdn.iview.abc.net.au", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.abc.net.au", + "domain":"www.abc.net.au", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"iviewmetered-vh.akamaihd.net", + "domain":"iviewmetered-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"iviewhls-i.akamaihd.net", + "domain":"iviewhls-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"a888.avodsl-s.akamaihd.net", + "domain":"a888.avodsl-s.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"abcsecurehttp-a.akamaihd.net", + "domain":"abcsecurehttp-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"iphonestreaming.abc.net.au", + "domain":"iphonestreaming.abc.net.au", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"abctvlivehds-lh.akamaihd.net", + "domain":"abctvlivehds-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cp81899.live.edgefcs.net", + "domain":"cp81899.live.edgefcs.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"abcnews24livehds-lh.akamaihd.net", + "domain":"abcnews24livehds-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"abctvlivehls-lh.akamaihd.net", + "domain":"abctvlivehls-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"abcnews24hls-lh.akamaihd.net", + "domain":"abcnews24hls-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"iview-vod.akamaized.net", + "domain":"iview-vod.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.iview.abc.net.au", + "domain":"api.iview.abc.net.au", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"abc-iview-mediapackagestreams-1.akamaized.net", + "domain":"abc-iview-mediapackagestreams-1.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"abc-iview-mediapackagestreams-2.akamaized.net", + "domain":"abc-iview-mediapackagestreams-2.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"iviewhlsvod-vh.akamaihd.net", + "domain":"iviewhlsvod-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"foxsportshds-vh.akamaihd.net", + "domain":"foxsportshds-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"foxsportshdhls-lh.akamaihd.net", + "domain":"foxsportshdhls-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"foxsportshls-vh.akamaihd.net", + "domain":"foxsportshls-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"foxsportseplhds-vh.akamaihd.net", + "domain":"foxsportseplhds-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"fseplhdhds-lh.akamaihd.net", + "domain":"fseplhdhds-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"foxsportshlsg01-lh.akamaihd.net", + "domain":"foxsportshlsg01-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.lightbox.co.nz", + "domain":"www.lightbox.co.nz", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tdvott-a.akamaihd.net", + "domain":"tdvott-a.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"appgrid-api.cloud.accedo.tv", + "domain":"appgrid-api.cloud.accedo.tv", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vpc-lightbox-api-production.cloud.xstream.dk", + "domain":"vpc-lightbox-api-production.cloud.xstream.dk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.devices.lightbox.co.nz", + "domain":"www.devices.lightbox.co.nz", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vpc-lightbox-apigw-production.cloud.xstream.dk", + "domain":"vpc-lightbox-apigw-production.cloud.xstream.dk", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.lightbox.co.nz", + "domain":"api.lightbox.co.nz", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"lbdash.akamaized.net", + "domain":"lbdash.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"lbsmooth.akamaized.net", + "domain":"lbsmooth.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"lbhls.akamaized.net", + "domain":"lbhls.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"staragvod1-vh.akamaihd.net", + "domain":"staragvod1-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"staragvod-vh.akamaihd.net", + "domain":"staragvod-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"staragvod2-vh.akamaihd.net", + "domain":"staragvod2-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ipl2061-i.akamaihd.net", + "domain":"ipl2061-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"star.drm.edgesuite.net", + "domain":"star.drm.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"t1re-s.akamaihd.net", + "domain":"t1re-s.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"service.hotstar.com", + "domain":"service.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"beacon.hotstar.com", + "domain":"beacon.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"getcdn.hotstar.com", + "domain":"getcdn.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"staragatv.akamaized.net", + "domain":"staragatv.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"media1-starag.startv.in", + "domain":"media1-starag.startv.in", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"media0-starag.startv.in", + "domain":"media0-starag.startv.in", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"search.hotstar.com", + "domain":"search.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hshls2-i.akamaihd.net", + "domain":"hshls2-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"staragvod3-vh.akamaihd.net", + "domain":"staragvod3-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"staragvod4-vh.akamaihd.net", + "domain":"staragvod4-vh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"account.hotstar.com", + "domain":"account.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"www.hotstar.com", + "domain":"www.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"segment.hotstar.com", + "domain":"segment.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"services.hotstar.com", + "domain":"services.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"media-starag.startv.in", + "domain":"media-starag.startv.in", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hotstar-sin.gravityrd-services.com", + "domain":"hotstar-sin.gravityrd-services.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hstennislive2-lh.akamaihd.net", + "domain":"hstennislive2-lh.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"secure-getcdn.hotstar.com", + "domain":"secure-getcdn.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"secure-media1.hotstar.com", + "domain":"secure-media1.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hotstar.worldgravity.com", + "domain":"hotstar.worldgravity.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"umsp.hotstar.com", + "domain":"umsp.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ca.hotstar.com", + "domain":"ca.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"secure-media0.hotstar.com", + "domain":"secure-media0.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"secure-media2.hotstar.com", + "domain":"secure-media2.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"secure-media.hotstar.com", + "domain":"secure-media.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"drm.hotstar.com", + "domain":"drm.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cws-usw2.conviva.com", + "domain":"cws-usw2.conviva.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hssportsprepack.akamaized.net", + "domain":"hssportsprepack.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hssports33-i.akamaihd.net", + "domain":"hssports33-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"api.hotstar.com", + "domain":"api.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"staragdash.akamaized.net", + "domain":"staragdash.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"staragdash.edgesuite.net", + "domain":"staragdash.edgesuite.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cdn.meta.ndmdhs.com", + "domain":"cdn.meta.ndmdhs.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"gcache.hotstar.com", + "domain":"gcache.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hsdesinova.akamaized.net", + "domain":"hsdesinova.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sshd2livetv-i.akamaihd.net", + "domain":"sshd2livetv-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"starplushd-i.akamaihd.net", + "domain":"starplushd-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sshd1livetv-i.akamaihd.net", + "domain":"sshd1livetv-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"starbharat-i.akamaihd.net", + "domain":"starbharat-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"starsuvarna-i.akamaihd.net", + "domain":"starsuvarna-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"starutsav-i.akamaihd.net", + "domain":"starutsav-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"maagold-i.akamaihd.net", + "domain":"maagold-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"asianethd-i.akamaihd.net", + "domain":"asianethd-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"asianetplus-i.akamaihd.net", + "domain":"asianetplus-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"channelv-i.akamaihd.net", + "domain":"channelv-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sshindi-i.akamaihd.net", + "domain":"sshindi-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"starvijay-i.akamaihd.net", + "domain":"starvijay-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ssselecthd1-i.akamaihd.net", + "domain":"ssselecthd1-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"maatv-i.akamaihd.net", + "domain":"maatv-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"ssselecthd2-i.akamaihd.net", + "domain":"ssselecthd2-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hsdashbundesliga1.akamaized.net", + "domain":"hsdashbundesliga1.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, { - "alias":"vh1", - "domain":"www.vh1.com", + "alias":"hsdashbundesliga2.akamaized.net", + "domain":"hsdashbundesliga2.akamaized.net", "protocols": ["http", "https"], - "dnat": false - } - ] - }, - "usopen": { - "proxies": [ + "dnat": true + }, { - "alias":"usopen-geo", - "domain":"usgageo.edgesuite.net", + "alias":"hsdashbundesliga3.akamaized.net", + "domain":"hsdashbundesliga3.akamaized.net", "protocols": ["http", "https"], - "dnat": false - } - ] - }, - "itsh": { - "proxies": [ + "dnat": true + }, { - "alias":"itsh.bo", - "domain":"itsh.bo", + "alias":"hsdashbundesliga4.akamaized.net", + "domain":"hsdashbundesliga4.akamaized.net", "protocols": ["http", "https"], - "dnat": false - } - ] - }, - "southpark": { - "proxies": [ + "dnat": true + }, { - "alias":"southpark.cc.com", - "domain":"southpark.cc.com", + "alias":"hsdashbundesliga5.akamaized.net", + "domain":"hsdashbundesliga5.akamaized.net", "protocols": ["http", "https"], - "dnat": false - } - ] - }, - "roku": { - "proxies": [ + "dnat": true + }, { - "alias": "www.roku.com", - "domain": "www.roku.com", + "alias":"hsdashbundesliga6.akamaized.net", + "domain":"hsdashbundesliga6.akamaized.net", "protocols": ["http", "https"], - "dnat": false + "dnat": true }, { - "alias": "owner.roku.com", - "domain": "owner.roku.com", + "alias":"hsprepack.akamaized.net", + "domain":"hsprepack.akamaized.net", "protocols": ["http", "https"], - "dnat": false - } - ] - }, - "amazon": { - "proxies": [ + "dnat": true + }, { - "alias":"amazon_atv-ps", - "domain":"atv-ps.amazon.com", + "alias":"hsdash30.akamaized.net", + "domain":"hsdash30.akamaized.net", "protocols": ["http", "https"], "dnat": true }, { - "alias":"amazon_atv-ext", - "domain":"atv-ext.amazon.com", + "alias":"hses.akamaized.net", + "domain":"hses.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live01.akt.hotstar-cdn.net", + "domain":"live01.akt.hotstar-cdn.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"bifrost-api.hotstar.com", + "domain":"bifrost-api.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live12.akt.hotstar-cdn.net", + "domain":"live12.akt.hotstar-cdn.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"us.hotstar.com", + "domain":"us.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live11.hotstar.com", + "domain":"live11.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live12.hotstar.com", + "domain":"live12.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live13.hotstar.com", + "domain":"live13.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live14.hotstar.com", + "domain":"live14.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live15.hotstar.com", + "domain":"live15.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"secure-media1.hotstarext.com", + "domain":"secure-media1.hotstarext.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live15p.hotstar.com", + "domain":"live15p.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live11p.hotstar.com", + "domain":"live11p.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live12p.hotstar.com", + "domain":"live12p.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live13p.hotstar.com", + "domain":"live13p.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live14p.hotstar.com", + "domain":"live14p.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"persona.hotstar.com", + "domain":"persona.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live09.akt.hotstar-cdn.net", + "domain":"live09.akt.hotstar-cdn.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live02.akt.hotstar-cdn.net", + "domain":"live02.akt.hotstar-cdn.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live03.akt.hotstar-cdn.net", + "domain":"live03.akt.hotstar-cdn.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live05.akt.hotstar-cdn.net", + "domain":"live05.akt.hotstar-cdn.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live06.akt.hotstar-cdn.net", + "domain":"live06.akt.hotstar-cdn.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live07.akt.hotstar-cdn.net", + "domain":"live07.akt.hotstar-cdn.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live08.akt.hotstar-cdn.net", + "domain":"live08.akt.hotstar-cdn.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"img1.hotstarext.com", + "domain":"img1.hotstarext.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"logs.hotstar.com", + "domain":"logs.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"sub-media.hotstar.com", + "domain":"sub-media.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"bifrost.hotstar.com", + "domain":"bifrost.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hotstar.com", + "domain":"hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"img1.hotstar.com", + "domain":"img1.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hooq-vod.akamaized.net", + "domain":"hooq-vod.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hq-clr.akamaized.net", + "domain":"hq-clr.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"cf-images.ap-southeast-1.prod.boltdns.net", + "domain":"cf-images.ap-southeast-1.prod.boltdns.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hses.hotstar.com", + "domain":"hses.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hshlsnews14-i.akamaihd.net", + "domain":"hshlsnews14-i.akamaihd.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"hsnewsprepack.akamaized.net", + "domain":"hsnewsprepack.akamaized.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live01p.hotstar.com", + "domain":"live01p.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live02p.hotstar.com", + "domain":"live02p.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live03p.hotstar.com", + "domain":"live03p.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live04p.hotstar.com", + "domain":"live04p.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live05p.hotstar.com", + "domain":"live05p.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live06p.hotstar.com", + "domain":"live06p.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live07p.hotstar.com", + "domain":"live07p.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live08p.hotstar.com", + "domain":"live08p.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live09p.hotstar.com", + "domain":"live09p.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live10p.hotstar.com", + "domain":"live10p.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tv.hotstar.com", + "domain":"tv.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"webos.hotstar.com", + "domain":"webos.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"secure-media.hotstarext.com", + "domain":"secure-media.hotstarext.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"vod01.akt.hotstar-cdn.net", + "domain":"vod01.akt.hotstar-cdn.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tailor.akt.hotstar-cdn.net", + "domain":"tailor.akt.hotstar-cdn.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live12p.akt.hotstar-cdn.net", + "domain":"live12p.akt.hotstar-cdn.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"live11p.akt.hotstar-cdn.net", + "domain":"live11p.akt.hotstar-cdn.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"tizen.hotstar.com", + "domain":"tizen.hotstar.com", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"check.dns4me.net", + "domain":"check.dns4me.net", + "protocols": ["http", "https"], + "dnat": true + }, + { + "alias":"placeholder.de", + "domain":"placeholder.de", "protocols": ["http", "https"], - "dnat": false + "dnat": true } ] }