From 058aef0f708b9bb4a13621568335cd243748f295 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Mon, 24 Feb 2025 13:07:49 +0300 Subject: [PATCH 1/5] Update tests/__data__ --- tests/__data__/expected/api/blocklist.json | 2 +- tests/__data__/expected/data/blocklist.csv | 6 +++--- tests/__data__/input/data/blocklist.csv | 6 +++--- tests/__data__/input/issues/blocklist_add_approved.js | 2 +- tests/__data__/input/validate/duplicate/blocklist.csv | 6 +++--- tests/__data__/input/validate/invalid_value/blocklist.csv | 4 ++-- 6 files changed, 13 insertions(+), 13 deletions(-) diff --git a/tests/__data__/expected/api/blocklist.json b/tests/__data__/expected/api/blocklist.json index a65c17ce..be7bb4fb 100644 --- a/tests/__data__/expected/api/blocklist.json +++ b/tests/__data__/expected/api/blocklist.json @@ -1 +1 @@ -[{"channel":"AnimalPlanetAfrica.za","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"BeijingSatelliteTV.cn","ref":"https://github.com/iptv-org/iptv/issues/1831"}] \ No newline at end of file +[{"channel":"AnimalPlanetAfrica.za","reason":"dmca","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"BeijingSatelliteTV.cn","reason":"dmca","ref":"https://github.com/iptv-org/iptv/issues/1831"}] \ No newline at end of file diff --git a/tests/__data__/expected/data/blocklist.csv b/tests/__data__/expected/data/blocklist.csv index 47888afd..f14148ae 100644 --- a/tests/__data__/expected/data/blocklist.csv +++ b/tests/__data__/expected/data/blocklist.csv @@ -1,3 +1,3 @@ -channel,ref -beINMoviesTurk.tr,https://github.com/iptv-org/iptv/issues/1831 -HGTVHungary.hu,https://github.com/iptv-org/iptv/issues/1831 \ No newline at end of file +channel,reason,ref +beINMoviesTurk.tr,dmca,https://github.com/iptv-org/iptv/issues/1831 +HGTVHungary.hu,nsfw,https://github.com/iptv-org/iptv/issues/1831 \ No newline at end of file diff --git a/tests/__data__/input/data/blocklist.csv b/tests/__data__/input/data/blocklist.csv index 004c3324..a0e89ff7 100644 --- a/tests/__data__/input/data/blocklist.csv +++ b/tests/__data__/input/data/blocklist.csv @@ -1,3 +1,3 @@ -channel,ref -AnimalPlanetAfrica.za,https://github.com/iptv-org/iptv/issues/1831 -BeijingSatelliteTV.cn,https://github.com/iptv-org/iptv/issues/1831 \ No newline at end of file +channel,reason,ref +AnimalPlanetAfrica.za,dmca,https://github.com/iptv-org/iptv/issues/1831 +BeijingSatelliteTV.cn,dmca,https://github.com/iptv-org/iptv/issues/1831 \ No newline at end of file diff --git a/tests/__data__/input/issues/blocklist_add_approved.js b/tests/__data__/input/issues/blocklist_add_approved.js index efddef9e..a13f3bb2 100644 --- a/tests/__data__/input/issues/blocklist_add_approved.js +++ b/tests/__data__/input/issues/blocklist_add_approved.js @@ -61,7 +61,7 @@ module.exports = [ closed_at: null, author_association: 'CONTRIBUTOR', active_lock_reason: null, - body: '### Channel ID\n\nHGTVHungary.hu\n\n### Reference\n\nhttps://github.com/iptv-org/iptv/issues/1831\n\n### Notes (optional)\n\n_No response_', + body: '### Channel ID\n\nHGTVHungary.hu\n\n### Reason\n\nNSFW\n\n### Reference\n\nhttps://github.com/iptv-org/iptv/issues/1831\n\n### Notes (optional)\n\n_No response_', reactions: { url: 'https://api.github.com/repos/iptv-org/database/issues/5897/reactions', total_count: 0, diff --git a/tests/__data__/input/validate/duplicate/blocklist.csv b/tests/__data__/input/validate/duplicate/blocklist.csv index dcfba40d..d5810857 100644 --- a/tests/__data__/input/validate/duplicate/blocklist.csv +++ b/tests/__data__/input/validate/duplicate/blocklist.csv @@ -1,3 +1,3 @@ -channel,ref -002RadioTV.do,eee -002RadioTV.do,eee \ No newline at end of file +channel,reason,ref +002RadioTV.do,dmca,eee +002RadioTV.do,dmca,eee \ No newline at end of file diff --git a/tests/__data__/input/validate/invalid_value/blocklist.csv b/tests/__data__/input/validate/invalid_value/blocklist.csv index bb01b0f8..5c712351 100644 --- a/tests/__data__/input/validate/invalid_value/blocklist.csv +++ b/tests/__data__/input/validate/invalid_value/blocklist.csv @@ -1,2 +1,2 @@ -channel,ref -aaa.us,https://github.com/iptv-org/iptv/issues/1831 \ No newline at end of file +channel,reason,ref +aaa.us,dmca,https://github.com/iptv-org/iptv/issues/1831 \ No newline at end of file From 78a1e288cc767bfbae1af6eadeea68265ddf39db Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Mon, 24 Feb 2025 13:08:13 +0300 Subject: [PATCH 2/5] Update scripts --- scripts/db/update.ts | 4 +++- scripts/models/blocked.ts | 5 ++++- scripts/schemes/blocklist.ts | 3 +++ 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/scripts/db/update.ts b/scripts/db/update.ts index 1833d7a6..d8234736 100644 --- a/scripts/db/update.ts +++ b/scripts/db/update.ts @@ -185,12 +185,14 @@ async function blockChannels({ loader }: { loader: IssueLoader }) { if (found) return const channel = data.getString('channel_id') + const reason = data.getString('reason')?.toLowerCase() const ref = data.getString('ref') - if (!channel || !ref) return + if (!channel || !reason || !ref) return blocklist.push( new Blocked({ channel, + reason, ref }) ) diff --git a/scripts/models/blocked.ts b/scripts/models/blocked.ts index 1de7a198..1bc38886 100644 --- a/scripts/models/blocked.ts +++ b/scripts/models/blocked.ts @@ -1,14 +1,17 @@ type BlockedProps = { channel: string + reason: string ref: string } export class Blocked { channel: string + reason: string ref: string - constructor({ ref, channel }: BlockedProps) { + constructor({ ref, reason, channel }: BlockedProps) { this.channel = channel + this.reason = reason this.ref = ref } } diff --git a/scripts/schemes/blocklist.ts b/scripts/schemes/blocklist.ts index 530862bc..9da691c0 100644 --- a/scripts/schemes/blocklist.ts +++ b/scripts/schemes/blocklist.ts @@ -4,5 +4,8 @@ export default { channel: Joi.string() .regex(/^[A-Za-z0-9]+\.[a-z]{2}$/) .required(), + reason: Joi.string() + .valid(...['dmca', 'nsfw']) + .required(), ref: Joi.string().uri().required() } From decd721364decf71c9ac3a8aa2634908d2b42a8a Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Mon, 24 Feb 2025 13:09:31 +0300 Subject: [PATCH 3/5] Update _blocklist_add.yml --- .github/ISSUE_TEMPLATE/_blocklist_add.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/_blocklist_add.yml b/.github/ISSUE_TEMPLATE/_blocklist_add.yml index 85627276..d12e4311 100644 --- a/.github/ISSUE_TEMPLATE/_blocklist_add.yml +++ b/.github/ISSUE_TEMPLATE/_blocklist_add.yml @@ -13,6 +13,17 @@ body: validations: required: true + - type: dropdown + id: reason + attributes: + label: Reason + description: Reason for blocking the channel + options: + - 'DMCA' + - 'NSFW' + validations: + required: true + - type: input id: ref attributes: From 9a1de931784cfb906449abd1661f9297195d0b00 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Mon, 24 Feb 2025 13:10:00 +0300 Subject: [PATCH 4/5] Update blocklist.csv --- data/blocklist.csv | 2256 ++++++++++++++++++++++---------------------- 1 file changed, 1128 insertions(+), 1128 deletions(-) diff --git a/data/blocklist.csv b/data/blocklist.csv index d50175a2..c3c75150 100644 --- a/data/blocklist.csv +++ b/data/blocklist.csv @@ -1,1128 +1,1128 @@ -channel,ref -21Sextury.us,https://github.com/iptv-org/iptv/issues/15723 -40Plus.uk,https://github.com/iptv-org/iptv/issues/15723 -A3Bikini.us,https://github.com/iptv-org/iptv/issues/15723 -AdultChannel.uk,https://github.com/iptv-org/iptv/issues/15723 -AdultChannel1.rs,https://github.com/iptv-org/iptv/issues/15723 -AdultChannel2.rs,https://github.com/iptv-org/iptv/issues/15723 -AdultChannel3.rs,https://github.com/iptv-org/iptv/issues/15723 -AdultChannel4.rs,https://github.com/iptv-org/iptv/issues/15723 -AdultChannel5.rs,https://github.com/iptv-org/iptv/issues/15723 -AdultChannel6.rs,https://github.com/iptv-org/iptv/issues/15723 -AdultChannel7.rs,https://github.com/iptv-org/iptv/issues/15723 -AdultIPTVnetAnal.us,https://github.com/iptv-org/iptv/issues/15723 -AdultIPTVnetAsian.us,https://github.com/iptv-org/iptv/issues/15723 -AdultIPTVnetBigAss.us,https://github.com/iptv-org/iptv/issues/15723 -AdultIPTVnetBigDick.us,https://github.com/iptv-org/iptv/issues/15723 -AdultIPTVnetBigTits.us,https://github.com/iptv-org/iptv/issues/15723 -AdultIPTVnetBlonde.us,https://github.com/iptv-org/iptv/issues/15723 -AdultIPTVnetBlowjob.us,https://github.com/iptv-org/iptv/issues/15723 -AdultIPTVnetBrunette.us,https://github.com/iptv-org/iptv/issues/15723 -AdultIPTVnetCompilation.us,https://github.com/iptv-org/iptv/issues/15723 -AdultIPTVnetCuckold.us,https://github.com/iptv-org/iptv/issues/15723 -AdultIPTVnetFetish.us,https://github.com/iptv-org/iptv/issues/15723 -AdultIPTVnetGangbang.us,https://github.com/iptv-org/iptv/issues/15723 -AdultIPTVnetGay.us,https://github.com/iptv-org/iptv/issues/15723 -AdultIPTVnetHardcore.us,https://github.com/iptv-org/iptv/issues/15723 -AdultIPTVnetInterracial.us,https://github.com/iptv-org/iptv/issues/15723 -AdultIPTVnetLatina.us,https://github.com/iptv-org/iptv/issues/15723 -AdultIPTVnetLesbian.us,https://github.com/iptv-org/iptv/issues/15723 -AdultIPTVnetLiveCams.us,https://github.com/iptv-org/iptv/issues/15723 -AdultIPTVnetMILF.us,https://github.com/iptv-org/iptv/issues/15723 -AdultIPTVnetPornstar.us,https://github.com/iptv-org/iptv/issues/15723 -AdultIPTVnetPOV.us,https://github.com/iptv-org/iptv/issues/15723 -AdultIPTVnetRough.us,https://github.com/iptv-org/iptv/issues/15723 -AdultIPTVnetRussian.us,https://github.com/iptv-org/iptv/issues/15723 -AdultIPTVnetTeen.us,https://github.com/iptv-org/iptv/issues/15723 -AdultIPTVnetThreesome.us,https://github.com/iptv-org/iptv/issues/15723 -AdultIPTVnetWoman.us,https://github.com/iptv-org/iptv/issues/15723 -AdultSwimEast.us,https://github.com/iptv-org/iptv/issues/16839 -AdultSwimWest.us,https://github.com/iptv-org/iptv/issues/16839 -AlbaXXXHD1.ru,https://github.com/iptv-org/iptv/issues/15723 -AlbaXXXHD2.ru,https://github.com/iptv-org/iptv/issues/15723 -AlexLegend.us,https://github.com/iptv-org/iptv/issues/15723 -AllAnal.ca,https://github.com/iptv-org/iptv/issues/15723 -AllAnalAllTheTime.us,https://github.com/iptv-org/iptv/issues/15723 -AlureChannel.th,https://github.com/iptv-org/iptv/issues/15723 -AmateurBoxxx.us,https://github.com/iptv-org/iptv/issues/15723 -AmazingTV.tw,https://github.com/iptv-org/iptv/issues/15723 -Anal4K.uk,https://github.com/iptv-org/iptv/issues/15723 -AnalMom.us,https://github.com/iptv-org/iptv/issues/15723 -AnalOnly.ca,https://github.com/iptv-org/iptv/issues/15723 -AnalTeenAngels.uk,https://github.com/iptv-org/iptv/issues/15723 -AngelsHD.si,https://github.com/iptv-org/iptv/issues/15723 -AnimalPlanet.au,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanet.br,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanet.ca,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanet.de,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanet.in,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanet.jp,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanet.nl,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanet.pl,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanet.ro,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanet.ru,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanet.tr,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanet.tw,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanet.uk,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanetEast.us,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanetEastHD.us,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanetEurope.uk,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanetEuropeHD.uk,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanetHD.br,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanetHD.ca,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanetHD.de,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanetHD.in,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanetHD.jp,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanetHD.nl,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanetHD.pl,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanetHD.ro,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanetLatinAmerica.us,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanetLatinAmericaHD.us,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanetNordic.uk,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanetNordicHD.uk,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanetPlus1.uk,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanetSoutheastAsia.sg,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanetSoutheastAsiaHD.sg,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanetWest.us,https://github.com/iptv-org/iptv/issues/1831 -AnimalPlanetWestHD.us,https://github.com/iptv-org/iptv/issues/1831 -AOVAdultMovieChannel.ca,https://github.com/iptv-org/iptv/issues/15723 -Arena4.hu,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -AsianFoodNetwork.sg,https://github.com/iptv-org/iptv/issues/1831 -AsianFoodNetwork.tw,https://github.com/iptv-org/iptv/issues/1831 -AssholeFever.uk,https://github.com/iptv-org/iptv/issues/15723 -AssParade.us,https://github.com/iptv-org/iptv/issues/15723 -ASTTV1.cy,https://github.com/iptv-org/iptv/issues/15723 -ASTTV2.cy,https://github.com/iptv-org/iptv/issues/15723 -AVKing.jp,https://github.com/iptv-org/iptv/issues/15723 -Babenation.uk,https://github.com/iptv-org/iptv/issues/15723 -BabesandBrazzers.uk,https://github.com/iptv-org/iptv/issues/15723 -Babestation.uk,https://github.com/iptv-org/iptv/issues/15723 -Babestation24.ch,https://github.com/iptv-org/iptv/issues/15723 -BabesTV.us,https://github.com/iptv-org/iptv/issues/15723 -BalkanEroticHD.si,https://github.com/iptv-org/iptv/issues/15723 -BananaFever.us,https://github.com/iptv-org/iptv/issues/15723 -BananaTV.tw,https://github.com/iptv-org/iptv/issues/15723 -BangBus.us,https://github.com/iptv-org/iptv/issues/15723 -BangPOV.us,https://github.com/iptv-org/iptv/issues/15723 -BangU.us,https://github.com/iptv-org/iptv/issues/15723 -BarelyLegalTV.us,https://github.com/iptv-org/iptv/issues/15723 -BBCPie.uk,https://github.com/iptv-org/iptv/issues/15723 -BCUCharmHD.ru,https://github.com/iptv-org/iptv/issues/15723 -BeateUhseTV.de,https://github.com/iptv-org/iptv/issues/15723 -BeateUhseTVHD.de,https://github.com/iptv-org/iptv/issues/15723 -beINSports.fr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSports.qa,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSports1.au,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSports1.fr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSports1.hk,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSports1.my,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSports1.ph,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSports1.qa,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSports1.th,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSports1.tr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSports2.au,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSports2.fr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSports2.hk,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSports2.qa,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSports2.th,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSports2.tr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSports3.au,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSports3.fr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSports3.ph,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSports3.qa,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSports3.th,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSports3.tr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSports4.qa,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSports4.tr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSports5.qa,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSports5.tr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSports6.qa,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSports7.qa,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSports8.qa,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSportsEnglish1.qa,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSportsEnglish2.qa,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSportsEnglish3.qa,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSportsFrench1.qa,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSportsFrench2.qa,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSportsFrench3.qa,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSportsMax1.qa,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSportsMax1.tr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSportsMax10.fr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSportsMax2.qa,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSportsMax2.tr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSportsMax3.qa,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSportsMax4.fr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSportsMax4.qa,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSportsMax5.fr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSportsMax5.qa,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSportsMax6.fr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSportsMax6.qa,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSportsMax7.fr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSportsMax8.fr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSportsMax9.fr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSportsPremium1.qa,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSportsPremium2.qa,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSportsPremium3.qa,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSportsXtra1.qa,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -beINSportsXtra2.qa,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -Bizarre.al,https://github.com/iptv-org/iptv/issues/15723 -Bliss.si,https://github.com/iptv-org/iptv/issues/15723 -BlueHustler.nl,https://github.com/iptv-org/iptv/issues/15723 -BodySex.pt,https://github.com/iptv-org/iptv/issues/15723 -BooBHD.si,https://github.com/iptv-org/iptv/issues/15723 -Boomerang.fr,https://github.com/iptv-org/iptv/issues/16839 -Boomerang.th,https://github.com/iptv-org/iptv/issues/16839 -BrandNewAmateurs.us,https://github.com/iptv-org/iptv/issues/15723 -BrattySis.us,https://github.com/iptv-org/iptv/issues/15723 -BrazzersTVEurope.us,https://github.com/iptv-org/iptv/issues/15723 -BTSportMosaic.uk,https://github.com/iptv-org/iptv/issues/6973 -BTSportMosaic2.uk,https://github.com/iptv-org/iptv/issues/6973 -BungaBunga.al,https://github.com/iptv-org/iptv/issues/15723 -Candy3DHD.ru,https://github.com/iptv-org/iptv/issues/15723 -CandyManTV.ru,https://github.com/iptv-org/iptv/issues/15723 -CandyTV.ru,https://github.com/iptv-org/iptv/issues/15723 -CandyTVHD.ru,https://github.com/iptv-org/iptv/issues/15723 -CapableHoleHD.si,https://github.com/iptv-org/iptv/issues/15723 -Cartoonito.mx,https://github.com/iptv-org/iptv/issues/16839 -CartoonitoLive.br,https://github.com/iptv-org/iptv/issues/16839 -CartoonitoLiveLatinAmerica.br,https://github.com/iptv-org/iptv/issues/16839 -CartoonNetwork.in,https://github.com/iptv-org/iptv/issues/16839 -CartoonNetwork.jp,https://github.com/iptv-org/iptv/issues/16839 -CartoonNetwork.mx,https://github.com/iptv-org/iptv/issues/16839 -CartoonNetwork.ru,https://github.com/iptv-org/iptv/issues/16839 -CartoonNetworkAsia.sg,https://github.com/iptv-org/iptv/issues/16839 -CartoonNetworkEast.us,https://github.com/iptv-org/iptv/issues/16839 -CartoonNetworkLive.br,https://github.com/iptv-org/iptv/issues/16839 -CartoonNetworkLive2.br,https://github.com/iptv-org/iptv/issues/16839 -CartoonNetworkLiveLatinAmerica.br,https://github.com/iptv-org/iptv/issues/16839 -CartoonNetworkLiveLatinAmerica2.br,https://github.com/iptv-org/iptv/issues/16839 -CentoXCentoTV.it,https://github.com/iptv-org/iptv/issues/15723 -ChannelAdult.hk,https://github.com/iptv-org/iptv/issues/15723 -ChannelBlue.hk,https://github.com/iptv-org/iptv/issues/15723 -ChannelFire.hk,https://github.com/iptv-org/iptv/issues/15723 -CherryBomb.jp,https://github.com/iptv-org/iptv/issues/15723 -CineManExExEx.ru,https://github.com/iptv-org/iptv/issues/15723 -CineManExExExTWO.ru,https://github.com/iptv-org/iptv/issues/15723 -CinemaPlus.co,https://github.com/iptv-org/iptv/issues/15723 -CinemaxLatinAmerica.us,https://github.com/iptv-org/iptv/issues/16839 -CNN.us,https://github.com/iptv-org/iptv/issues/16839 -CNNBrasil.br,https://github.com/iptv-org/iptv/issues/16839 -CNNChile.cl,https://github.com/iptv-org/iptv/issues/16839 -CNNenEspanol.us,https://github.com/iptv-org/iptv/issues/16839 -CNNIndonesia.id,https://github.com/iptv-org/iptv/issues/16839 -CNNInternationalEurope.us,https://github.com/iptv-org/iptv/issues/16839 -CNNPakistan.pk,https://github.com/iptv-org/iptv/issues/16839 -CNNPortugal.pt,https://github.com/iptv-org/iptv/issues/16839 -CNNTurk.tr,https://github.com/iptv-org/iptv/issues/16839 -ColmaxTV.fr,https://github.com/iptv-org/iptv/issues/15723 -CookingChannel.ca,https://github.com/iptv-org/iptv/issues/1831 -CookingChannel.us,https://github.com/iptv-org/iptv/issues/1831 -Cum4KUHD.uk,https://github.com/iptv-org/iptv/issues/15723 -CumPerfection.us,https://github.com/iptv-org/iptv/issues/15723 -DadCrush.us,https://github.com/iptv-org/iptv/issues/15723 -DarkX.us,https://github.com/iptv-org/iptv/issues/15723 -DAZN1.be,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -DAZN1.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -DAZN1.es,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -DAZN1HD.be,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -DAZN1HD.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -DAZN1HD.uk,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -DAZN2.be,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -DAZN2.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -DAZN2.es,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -DAZN2HD.be,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -DAZN2HD.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -DAZN3.es,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -DAZN4.es,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -DAZNF1.es,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -DAZNF14K.es,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -DAZNLaLiga.es,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -DAZNLaLiga2.es,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -DAZNLaLiga3.es,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -DAZNLaLiga4.es,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -DAZNLaLiga5.es,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -DAZNProLeague1.be,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -DAZNProLeague1HD.be,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -DAZNProLeague2.be,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -DAZNProLeague2HD.be,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -DAZNProLeague3.be,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -DAZNProLeague3HD.be,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -DeepLush.us,https://github.com/iptv-org/iptv/issues/15723 -DeepThroatSirens.ca,https://github.com/iptv-org/iptv/issues/15723 -Desire.al,https://github.com/iptv-org/iptv/issues/15723 -Desire.uk,https://github.com/iptv-org/iptv/issues/15723 -DesireTV.kr,https://github.com/iptv-org/iptv/issues/15723 -DevilsHomeHD.si,https://github.com/iptv-org/iptv/issues/15723 -DiemaSport.bg,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -DiemaSport2.bg,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -DiemaSport24K.bg,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -DiemaSport3.bg,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -DiemaSport34K.bg,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -DirtyFlix.us,https://github.com/iptv-org/iptv/issues/15723 -DirtyMasseur.ca,https://github.com/iptv-org/iptv/issues/15723 -DirtyWivesClub.us,https://github.com/iptv-org/iptv/issues/15723 -DiscoveryAsia.sg,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryAsiaTaiwan.tw,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.au,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.be,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.bg,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.br,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.ca,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.cl,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.cz,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.de,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.dk,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.ee,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.es,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.fi,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.fr,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.hu,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.id,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.ie,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.in,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.it,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.jp,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.kr,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.lv,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.mt,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.mx,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.nl,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.no,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.nz,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.pl,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.pt,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.ro,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.rs,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.ru,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.se,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.si,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.tr,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.tw,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannel.uk,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannelEast.us,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannelHD.de,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannelHD.it,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannelMiddleEastAfrica.us,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannelPanregional.us,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannelPlus1.it,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannelPlus1.uk,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannelPlus2.au,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannelSouth.us,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannelSoutheastAsia.sg,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryChannelWest.us,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryCivilization.br,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryCivilizationLatinAmerica.us,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryenEspanol.us,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryFamilia.us,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryFamily.us,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryFamilyAfrica.us,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryHistoria.pl,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryHistory.uk,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryHistoryPlus1.uk,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryHomeHealth.br,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryHomeHealth.cl,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryHomeHealth.mx,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryHomeHealthPanregional.us,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryHomeHealthSouth.us,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryKids.br,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryKids.cl,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryKids.in,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryKids.mx,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryKidsLive.br,https://github.com/iptv-org/iptv/issues/16839 -DiscoveryKidsLiveLatinAmerica.br,https://github.com/iptv-org/iptv/issues/16839 -DiscoveryKidsPanregional.us,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryLife.pl,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryLife.us,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryPlusExtra1.se,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryPlusExtra2.se,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryPlusExtra3.se,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryPlusExtra4.se,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryPlusExtra5.se,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryPlusExtra6.se,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryPlusExtra7.se,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryPlusExtra8.se,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryScience.br,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryScience.ca,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryScience.cz,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryScience.fr,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryScience.hu,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryScience.in,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryScience.it,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryScience.pl,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryScience.ru,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryScience.se,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryScience.tr,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryScience.tw,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryScience.uk,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryScience.us,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryScienceLatinAmerica.us,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryScienceMiddleEast.uk,https://github.com/iptv-org/iptv/issues/1831 -DiscoverySciencePlus1.uk,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryScienceSoutheastAsia.sg,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryTheater.br,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryTheaterLatinAmerica.us,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryTourismGuyana.us,https://github.com/iptv-org/iptv/issues/16839 -DiscoveryTurbo.au,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryTurbo.br,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryTurbo.in,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryTurbo.jp,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryTurbo.nz,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryTurbo.uk,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryTurboPanregional.us,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryTurboPlus1.uk,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryTurboPlus2.au,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryUltra.ru,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryVelocity.ca,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryWorld.br,https://github.com/iptv-org/iptv/issues/1831 -DiscoveryWorldLatinAmerica.us,https://github.com/iptv-org/iptv/issues/1831 -DKISS.es,https://github.com/iptv-org/iptv/issues/1831 -DMAX.de,https://github.com/iptv-org/iptv/issues/1831 -DMAX.es,https://github.com/iptv-org/iptv/issues/1831 -DMAX.it,https://github.com/iptv-org/iptv/issues/1831 -DMAX.tr,https://github.com/iptv-org/iptv/issues/1831 -DMAX.tw,https://github.com/iptv-org/iptv/issues/1831 -DMAX.uk,https://github.com/iptv-org/iptv/issues/1831 -DMAXHD.it,https://github.com/iptv-org/iptv/issues/1831 -DMAXPlus1.it,https://github.com/iptv-org/iptv/issues/1831 -DMAXPlus1.uk,https://github.com/iptv-org/iptv/issues/1831 -DMAXSoutheastAsia.sg,https://github.com/iptv-org/iptv/issues/1831 -DorcelTV.nl,https://github.com/iptv-org/iptv/issues/15723 -DorcelTVAfrica.nl,https://github.com/iptv-org/iptv/issues/15723 -DorcelTVCanada.ca,https://github.com/iptv-org/iptv/issues/15723 -DorcelTVHD.nl,https://github.com/iptv-org/iptv/issues/15723 -DorcelXXX.nl,https://github.com/iptv-org/iptv/issues/15723 -DPFanatics.uk,https://github.com/iptv-org/iptv/issues/15723 -DreamPornTV.ba,https://github.com/iptv-org/iptv/issues/15723 -DuskTV.nl,https://github.com/iptv-org/iptv/issues/15723 -DynamiteTV.jp,https://github.com/iptv-org/iptv/issues/15723 -Enter959.jp,https://github.com/iptv-org/iptv/issues/15723 -Eromania4K.ru,https://github.com/iptv-org/iptv/issues/15723 -Eropulsde.de,https://github.com/iptv-org/iptv/issues/15723 -Erotic.rs,https://github.com/iptv-org/iptv/issues/15723 -Erotic2.rs,https://github.com/iptv-org/iptv/issues/15723 -Erotic3.rs,https://github.com/iptv-org/iptv/issues/15723 -Erotic4.rs,https://github.com/iptv-org/iptv/issues/15723 -Erotic5.rs,https://github.com/iptv-org/iptv/issues/15723 -Erotic6.rs,https://github.com/iptv-org/iptv/issues/15723 -Erotic7.rs,https://github.com/iptv-org/iptv/issues/15723 -Erotic8.rs,https://github.com/iptv-org/iptv/issues/15723 -EroticaX.us,https://github.com/iptv-org/iptv/issues/15723 -EroticSpice.ca,https://github.com/iptv-org/iptv/issues/15723 -EroX.nl,https://github.com/iptv-org/iptv/issues/15723 -EroXHD.nl,https://github.com/iptv-org/iptv/issues/15723 -EroXXX.nl,https://github.com/iptv-org/iptv/issues/15723 -EroXXXHD.nl,https://github.com/iptv-org/iptv/issues/15723 -ESPN.ar,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -ESPN.au,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -ESPN.cl,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -ESPN.co,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -ESPN.pe,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -ESPN.us,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -ESPN2.ar,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -ESPN2.cl,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -ESPN2.co,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -ESPN2.pe,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -ESPN2.us,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -ESPN2Caribbean.us,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -ESPN2North.us,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -ESPN3.ar,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -ESPN3North.us,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -ESPN3South.us,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -ESPN4.cl,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -ESPN4North.us,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -ESPN4South.us,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -ESPNCaribbean.us,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -ESPNNorth.us,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -ESPNPremium.ar,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -EuroGirlsonGirls.cz,https://github.com/iptv-org/iptv/issues/15723 -Eurosport.in,https://github.com/iptv-org/iptv/issues/1831 -Eurosport.no,https://github.com/iptv-org/iptv/issues/1831 -Eurosport1.de,https://github.com/iptv-org/iptv/issues/1831 -Eurosport1.dk,https://github.com/iptv-org/iptv/issues/1831 -Eurosport1.es,https://github.com/iptv-org/iptv/issues/1831 -Eurosport1.fr,https://github.com/iptv-org/iptv/issues/1831 -Eurosport1.gr,https://github.com/iptv-org/iptv/issues/1831 -Eurosport1.hu,https://github.com/iptv-org/iptv/issues/1831 -Eurosport1.it,https://github.com/iptv-org/iptv/issues/1831 -Eurosport1.nl,https://github.com/iptv-org/iptv/issues/1831 -Eurosport1.no,https://github.com/iptv-org/iptv/issues/1831 -Eurosport1.pl,https://github.com/iptv-org/iptv/issues/1831 -Eurosport1.ro,https://github.com/iptv-org/iptv/issues/1831 -Eurosport1.ru,https://github.com/iptv-org/iptv/issues/1831 -Eurosport1.tr,https://github.com/iptv-org/iptv/issues/1831 -Eurosport1.uk,https://github.com/iptv-org/iptv/issues/1831 -Eurosport1HD.uk,https://github.com/iptv-org/iptv/issues/1831 -Eurosport2.de,https://github.com/iptv-org/iptv/issues/1831 -Eurosport2.dk,https://github.com/iptv-org/iptv/issues/1831 -Eurosport2.es,https://github.com/iptv-org/iptv/issues/1831 -Eurosport2.fr,https://github.com/iptv-org/iptv/issues/1831 -Eurosport2.gr,https://github.com/iptv-org/iptv/issues/1831 -Eurosport2.hu,https://github.com/iptv-org/iptv/issues/1831 -Eurosport2.it,https://github.com/iptv-org/iptv/issues/1831 -Eurosport2.nl,https://github.com/iptv-org/iptv/issues/1831 -Eurosport2.pl,https://github.com/iptv-org/iptv/issues/1831 -Eurosport2.ro,https://github.com/iptv-org/iptv/issues/1831 -Eurosport2.ru,https://github.com/iptv-org/iptv/issues/1831 -Eurosport2.tr,https://github.com/iptv-org/iptv/issues/1831 -Eurosport2.uk,https://github.com/iptv-org/iptv/issues/1831 -Eurosport2HD.uk,https://github.com/iptv-org/iptv/issues/1831 -Eurosport2Xtra.de,https://github.com/iptv-org/iptv/issues/1831 -Eurosport3.fr,https://github.com/iptv-org/iptv/issues/1831 -Eurosport360HD1.fr,https://github.com/iptv-org/iptv/issues/1831 -Eurosport360HD2.fr,https://github.com/iptv-org/iptv/issues/1831 -Eurosport360HD3.fr,https://github.com/iptv-org/iptv/issues/1831 -Eurosport360HD4.fr,https://github.com/iptv-org/iptv/issues/1831 -Eurosport360HD5.fr,https://github.com/iptv-org/iptv/issues/1831 -Eurosport360HD6.fr,https://github.com/iptv-org/iptv/issues/1831 -Eurosport360HD7.fr,https://github.com/iptv-org/iptv/issues/1831 -Eurosport360HD8.fr,https://github.com/iptv-org/iptv/issues/1831 -Eurosport360HD9.fr,https://github.com/iptv-org/iptv/issues/1831 -Eurosport4.fr,https://github.com/iptv-org/iptv/issues/1831 -Eurosport4K.fr,https://github.com/iptv-org/iptv/issues/1831 -Eurosport5.fr,https://github.com/iptv-org/iptv/issues/1831 -Eurosport6.fr,https://github.com/iptv-org/iptv/issues/1831 -Eurosport7.fr,https://github.com/iptv-org/iptv/issues/1831 -Eurosport8.fr,https://github.com/iptv-org/iptv/issues/1831 -Eurosport9.fr,https://github.com/iptv-org/iptv/issues/1831 -EurosportAsia.fr,https://github.com/iptv-org/iptv/issues/1831 -EVE.us,https://github.com/iptv-org/iptv/issues/1831 -EVETaiwan.tw,https://github.com/iptv-org/iptv/issues/1831 -EvilAngelTV.us,https://github.com/iptv-org/iptv/issues/15723 -Exotic4K.uk,https://github.com/iptv-org/iptv/issues/15723 -EXTANSYTV4K.cz,https://github.com/iptv-org/iptv/issues/15723 -EXTASYHD.cz,https://github.com/iptv-org/iptv/issues/15723 -EXTASYTV.cz,https://github.com/iptv-org/iptv/issues/15723 -ExtremeHD.si,https://github.com/iptv-org/iptv/issues/15723 -Exxxotica.ru,https://github.com/iptv-org/iptv/issues/15723 -ExxxoticaHD.ru,https://github.com/iptv-org/iptv/issues/15723 -ExxxtasyTV.ca,https://github.com/iptv-org/iptv/issues/15723 -FamilyStrokes.us,https://github.com/iptv-org/iptv/issues/15723 -FamilySwap.us,https://github.com/iptv-org/iptv/issues/15723 -FAPTV.ru,https://github.com/iptv-org/iptv/issues/15723 -FAPTV2.ru,https://github.com/iptv-org/iptv/issues/15723 -FAPTV3.ru,https://github.com/iptv-org/iptv/issues/15723 -FAPTV4.ru,https://github.com/iptv-org/iptv/issues/15723 -FAPTVAmateur.ru,https://github.com/iptv-org/iptv/issues/15723 -FAPTVAnal.ru,https://github.com/iptv-org/iptv/issues/15723 -FAPTVBBW.ru,https://github.com/iptv-org/iptv/issues/15723 -FAPTVCompilation.ru,https://github.com/iptv-org/iptv/issues/15723 -FAPTVGay.ru,https://github.com/iptv-org/iptv/issues/15723 -FAPTVLesbian.ru,https://github.com/iptv-org/iptv/issues/15723 -FAPTVOlder.ru,https://github.com/iptv-org/iptv/issues/15723 -FAPTVParody.ru,https://github.com/iptv-org/iptv/issues/15723 -FAPTVTeaching.ru,https://github.com/iptv-org/iptv/issues/15723 -FAPTVTeens.ru,https://github.com/iptv-org/iptv/issues/15723 -FAPTVTrans.ru,https://github.com/iptv-org/iptv/issues/15723 -FashionTVMidnightSecrets.fr,https://github.com/iptv-org/iptv/issues/15723 -FastTV.us,https://github.com/iptv-org/iptv/issues/1831 -Fatafeat.ae,https://github.com/iptv-org/iptv/issues/1831 -FEM.no,https://github.com/iptv-org/iptv/issues/1831 -Flamingo.jp,https://github.com/iptv-org/iptv/issues/15723 -Focus.it,https://github.zendesk.com/attachments/token/FL9J24PDKdm0zzJJ3tKyXonmA/?name=2022-02-01-nagra.rtf -FocusHD.it,https://github.zendesk.com/attachments/token/FL9J24PDKdm0zzJJ3tKyXonmA/?name=2022-02-01-nagra.rtf -FoodNetwork.br,https://github.com/iptv-org/iptv/issues/1831 -FoodNetwork.ca,https://github.com/iptv-org/iptv/issues/1831 -FoodNetwork.hu,https://github.com/iptv-org/iptv/issues/1831 -FoodNetwork.it,https://github.com/iptv-org/iptv/issues/1831 -FoodNetwork.mx,https://github.com/iptv-org/iptv/issues/1831 -FoodNetwork.nz,https://github.com/iptv-org/iptv/issues/1831 -FoodNetwork.pl,https://github.com/iptv-org/iptv/issues/1831 -FoodNetwork.ro,https://github.com/iptv-org/iptv/issues/1831 -FoodNetwork.tw,https://github.com/iptv-org/iptv/issues/1831 -FoodNetwork.uk,https://github.com/iptv-org/iptv/issues/1831 -FoodNetwork.us,https://github.com/iptv-org/iptv/issues/1831 -FoodNetworkAsia.sg,https://github.com/iptv-org/iptv/issues/1831 -FoodNetworkEast.us,https://github.com/iptv-org/iptv/issues/1831 -FoodNetworkEMEA.us,https://github.com/iptv-org/iptv/issues/1831 -FoodNetworkHD.it,https://github.com/iptv-org/iptv/issues/1831 -FoodNetworkPanregional.us,https://github.com/iptv-org/iptv/issues/1831 -FoodNetworkPlus1.uk,https://github.com/iptv-org/iptv/issues/1831 -FoodNetworkWest.us,https://github.com/iptv-org/iptv/issues/1831 -FoodTV.kr,https://github.com/iptv-org/iptv/issues/1831 -FoxyDollsHD.si,https://github.com/iptv-org/iptv/issues/15723 -FrenchLover.ru,https://github.com/iptv-org/iptv/issues/15723 -FrenchLoverTV.fr,https://github.com/iptv-org/iptv/issues/15723 -Frisbee.it,https://github.com/iptv-org/iptv/issues/1831 -Giallo.it,https://github.com/iptv-org/iptv/issues/1831 -GialloHD.it,https://github.com/iptv-org/iptv/issues/1831 -GLAMHD.si,https://github.com/iptv-org/iptv/issues/15723 -GlobalNews.ca,https://github.com/iptv-org/iptv/pull/6329 -GlobalNewsBC1.ca,https://github.com/iptv-org/iptv/pull/6329 -GolfTV.us,https://github.com/iptv-org/iptv/issues/1831 -HappyChannel.tw,https://github.com/iptv-org/iptv/issues/15723 -HBO1.ca,https://github.com/iptv-org/iptv/issues/16839 -HBO2LatinAmerica.us,https://github.com/iptv-org/iptv/issues/16839 -HBOFamilyLatinAmerica.us,https://github.com/iptv-org/iptv/issues/16839 -HBOMundiCaribbean.us,https://github.com/iptv-org/iptv/issues/16839 -HBOPlusLatinAmerica.us,https://github.com/iptv-org/iptv/issues/16839 -HBOSignatureLatinAmerica.us,https://github.com/iptv-org/iptv/issues/16839 -HBOXtremeLatinAmerica.us,https://github.com/iptv-org/iptv/issues/16839 -HGTV.br,https://github.com/iptv-org/iptv/issues/1831 -HGTV.ca,https://github.com/iptv-org/iptv/issues/1831 -HGTV.hu,https://github.com/iptv-org/iptv/issues/1831 -HGTV.it,https://github.com/iptv-org/iptv/issues/1831 -HGTV.nz,https://github.com/iptv-org/iptv/issues/1831 -HGTV.pl,https://github.com/iptv-org/iptv/issues/1831 -HGTV.ru,https://github.com/iptv-org/iptv/issues/1831 -HGTV.tw,https://github.com/iptv-org/iptv/issues/1831 -HGTV.uk,https://github.com/iptv-org/iptv/issues/1831 -HGTV.us,https://github.com/iptv-org/iptv/issues/1831 -HGTVArabia.us,https://github.com/iptv-org/iptv/issues/1831 -HGTVAsia.us,https://github.com/iptv-org/iptv/issues/1831 -HGTVEast.us,https://github.com/iptv-org/iptv/issues/1831 -HGTVHD.it,https://github.com/iptv-org/iptv/issues/1831 -HGTVPanregional.us,https://github.com/iptv-org/iptv/issues/1831 -HGTVPlus1.uk,https://github.com/iptv-org/iptv/issues/1831 -HGTVSouthAfrica.za,https://github.com/iptv-org/iptv/issues/1831 -HGTVWest.us,https://github.com/iptv-org/iptv/issues/1831 -HiPlay.tw,https://github.com/iptv-org/iptv/issues/15723 -HLN.us,https://github.com/iptv-org/iptv/issues/16839 -HogarHGTV.us,https://github.com/iptv-org/iptv/issues/1831 -HoneyTV.kr,https://github.com/iptv-org/iptv/issues/15723 -HOT.pt,https://github.com/iptv-org/iptv/issues/15723 -HOT1HD.ru,https://github.com/iptv-org/iptv/issues/15723 -HOT2HD.ru,https://github.com/iptv-org/iptv/issues/15723 -HotChannel.tw,https://github.com/iptv-org/iptv/issues/15723 -HOTHD.pt,https://github.com/iptv-org/iptv/issues/15723 -HOTMan.pt,https://github.com/iptv-org/iptv/issues/15723 -HotPleasure.si,https://github.com/iptv-org/iptv/issues/15723 -HOTTaboo.pt,https://github.com/iptv-org/iptv/issues/15723 -HotwifePremium.us,https://github.com/iptv-org/iptv/issues/15723 -HotXXLHD.si,https://github.com/iptv-org/iptv/issues/15723 -HustlerHD.nl,https://github.com/iptv-org/iptv/issues/15723 -HustlerTV.us,https://github.com/iptv-org/iptv/issues/15723 -HustlerTVEurope.nl,https://github.com/iptv-org/iptv/issues/15723 -IceFire.hk,https://github.com/iptv-org/iptv/issues/15723 -InvestigationDiscovery.au,https://github.com/iptv-org/iptv/issues/1831 -InvestigationDiscovery.br,https://github.com/iptv-org/iptv/issues/1831 -InvestigationDiscovery.ca,https://github.com/iptv-org/iptv/issues/1831 -InvestigationDiscovery.fr,https://github.com/iptv-org/iptv/issues/1831 -InvestigationDiscovery.hu,https://github.com/iptv-org/iptv/issues/1831 -InvestigationDiscovery.in,https://github.com/iptv-org/iptv/issues/1831 -InvestigationDiscovery.mx,https://github.com/iptv-org/iptv/issues/1831 -InvestigationDiscovery.nl,https://github.com/iptv-org/iptv/issues/1831 -InvestigationDiscovery.pl,https://github.com/iptv-org/iptv/issues/1831 -InvestigationDiscovery.ru,https://github.com/iptv-org/iptv/issues/1831 -InvestigationDiscovery.se,https://github.com/iptv-org/iptv/issues/1831 -InvestigationDiscovery.uk,https://github.com/iptv-org/iptv/issues/1831 -InvestigationDiscoveryAfrica.us,https://github.com/iptv-org/iptv/issues/1831 -InvestigationDiscoveryEast.us,https://github.com/iptv-org/iptv/issues/1831 -InvestigationDiscoveryEurope.us,https://github.com/iptv-org/iptv/issues/1831 -InvestigationDiscoveryPanregional.us,https://github.com/iptv-org/iptv/issues/1831 -InvestigationDiscoveryPlus1.uk,https://github.com/iptv-org/iptv/issues/1831 -InvestigationDiscoverySouth.us,https://github.com/iptv-org/iptv/issues/1831 -InvestigationDiscoveryWest.us,https://github.com/iptv-org/iptv/issues/1831 -Iskushenie.ru,https://github.com/iptv-org/iptv/issues/15723 -ITVNEurope.pl,https://github.com/iptv-org/iptv/issues/1831 -ITVNExtra.pl,https://github.com/iptv-org/iptv/issues/1831 -ITVNUSA.us,https://github.com/iptv-org/iptv/issues/1831 -JasminTV.lu,https://github.com/iptv-org/iptv/issues/15723 -JennyForYou.us,https://github.com/iptv-org/iptv/issues/15723 -JennyLive.us,https://github.com/iptv-org/iptv/issues/15723 -K2.it,https://github.com/iptv-org/iptv/issues/1831 -KDOCDT6.us,https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf -Kino18Plus.ru,https://github.com/iptv-org/iptv/issues/15723 -Kino18PlusInternational.ru,https://github.com/iptv-org/iptv/issues/15723 -KinoshkaAdultHD.ru,https://github.com/iptv-org/iptv/issues/15723 -KinoXXX.ru,https://github.com/iptv-org/iptv/issues/15723 -kmpChannel.jp,https://github.com/iptv-org/iptv/issues/15723 -KOFYDT6.us,https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf -KSTVErotica.ua,https://github.com/iptv-org/iptv/issues/15723 -KSTVFantasyArt.ua,https://github.com/iptv-org/iptv/issues/15723 -KSTVHotFilms.ua,https://github.com/iptv-org/iptv/issues/15723 -KSTVLesbianLove.ua,https://github.com/iptv-org/iptv/issues/15723 -KSTVSecret18Plus.ua,https://github.com/iptv-org/iptv/issues/15723 -KUBEDT7.us,https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf -KWHEDT3.us,https://github.com/iptv-org/iptv/issues/9729 -Legal.si,https://github.com/iptv-org/iptv/issues/15723 -LEOTV.cz,https://github.com/iptv-org/iptv/issues/15723 -LEOTVGOLD.cz,https://github.com/iptv-org/iptv/issues/15723 -LEOTVHD.cz,https://github.com/iptv-org/iptv/issues/15723 -LibertyErotikaFHD.uk,https://github.com/iptv-org/iptv/issues/15723 -Living.nz,https://github.com/iptv-org/iptv/issues/1831 -LocalNowBergenCounty.us,https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf -LocalNowLongIsland.us,https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf -LocalNowManhattan.us,https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf -LocalNowNewburgh.us,https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf -LocalNowNewYorkCity.us,https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf -LocalNowWhitePlains.us,https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf -LohasChannel.tw,https://github.com/iptv-org/iptv/issues/15723 -LustPur.de,https://github.com/iptv-org/iptv/issues/15723 -MagnoliaNetworkEast.us,https://github.com/iptv-org/iptv/issues/5994 -MagnoliaNetworkWest.us,https://github.com/iptv-org/iptv/issues/5994 -MaleflixxxTelevision.ca,https://github.com/iptv-org/iptv/issues/15723 -ManX.be,https://github.com/iptv-org/iptv/issues/15723 -Match.ru,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -MatchFutbol1.ru,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -MatchFutbol2.ru,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -MatchFutbol3.ru,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -MatchPremier.ru,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -MeidenvanHollandHard.nl,https://github.com/iptv-org/iptv/issues/15723 -MetArtHD.us,https://github.com/iptv-org/iptv/issues/15723 -MiamiTV.us,https://github.com/iptv-org/iptv/issues/15723 -MiamiTVLatino.us,https://github.com/iptv-org/iptv/issues/15723 -MiamiTVMexico.us,https://github.com/iptv-org/iptv/issues/15723 -Midnight.kr,https://github.com/iptv-org/iptv/issues/15723 -MidnightBlue.jp,https://github.com/iptv-org/iptv/issues/15723 -MilfTVHD.si,https://github.com/iptv-org/iptv/issues/15723 -MIxxxHD.si,https://github.com/iptv-org/iptv/issues/15723 -MolaTV1.id,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -MolaTV2.id,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -MotorTrend.it,https://github.zendesk.com/attachments/token/r5abHyVOYbswCkNSmo67CP0Px/?name=2022-02-01-nagra-2.rtf -MotorTrendHD.it,https://github.zendesk.com/attachments/token/r5abHyVOYbswCkNSmo67CP0Px/?name=2022-02-01-nagra-2.rtf -MyCamTVAnal.cy,https://github.com/iptv-org/iptv/issues/15723 -MyCamTVArab.cy,https://github.com/iptv-org/iptv/issues/15723 -MyCamTVAsian.cy,https://github.com/iptv-org/iptv/issues/15723 -MyCamTVBigAss.cy,https://github.com/iptv-org/iptv/issues/15723 -MyCamTVBigTits.cy,https://github.com/iptv-org/iptv/issues/15723 -MyCamTVBlonde.cy,https://github.com/iptv-org/iptv/issues/15723 -MyCamTVBlowjob.cy,https://github.com/iptv-org/iptv/issues/15723 -MyCamTVBrunette.cy,https://github.com/iptv-org/iptv/issues/15723 -MyCamTVEbony.cy,https://github.com/iptv-org/iptv/issues/15723 -MyCamTVLatina.cy,https://github.com/iptv-org/iptv/issues/15723 -MyCamTVMedium.cy,https://github.com/iptv-org/iptv/issues/15723 -MyCamTVMILF.cy,https://github.com/iptv-org/iptv/issues/15723 -MyCamTVSkinny.cy,https://github.com/iptv-org/iptv/issues/15723 -MyCamTVSquirt.cy,https://github.com/iptv-org/iptv/issues/15723 -MyCamTVTeen.cy,https://github.com/iptv-org/iptv/issues/15723 -MyCamTVWhite.cy,https://github.com/iptv-org/iptv/issues/15723 -MyCamTVYoung.cy,https://github.com/iptv-org/iptv/issues/15723 -N1.ba,https://github.com/iptv-org/iptv/issues/6486 -N1.hr,https://github.com/iptv-org/iptv/issues/6486 -N1.rs,https://github.com/iptv-org/iptv/issues/6486 -N1HD.ba,https://github.com/iptv-org/iptv/issues/6486 -N1HD.hr,https://github.com/iptv-org/iptv/issues/6486 -N1HD.rs,https://github.com/iptv-org/iptv/issues/6486 -Naughty.si,https://github.com/iptv-org/iptv/issues/15723 -NetXXL.si,https://github.com/iptv-org/iptv/issues/15723 -NightClub.ru,https://github.com/iptv-org/iptv/issues/15723 -NovaSport.bg,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -NovaSport.rs,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -NovaSport1.cz,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -NovaSport2.cz,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -NovaSport3.cz,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -NovaSport4.cz,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -Novasports1.gr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -Novasports2.gr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -Novasports3.gr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -Novasports4.gr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -Novasports5.gr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -Novasports6.gr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -Nove.it,https://github.com/iptv-org/iptv/issues/1831 -NoveHD.it,https://github.com/iptv-org/iptv/issues/1831 -NovePlus1.it,https://github.com/iptv-org/iptv/issues/1831 -NuartTV.ru,https://github.com/iptv-org/iptv/issues/15723 -Olala.ru,https://github.com/iptv-org/iptv/issues/15723 -One.il,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -OrangeSport1.ro,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -OrangeSport2.ro,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -OrangeSport3.ro,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -OrangeSport4.ro,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -OSNMoviesPremiere.ae,https://github.com/iptv-org/iptv/issues/15723 -OursHD1.tw,https://github.com/iptv-org/iptv/issues/15723 -OursHD2.tw,https://github.com/iptv-org/iptv/issues/15723 -OursHD3.tw,https://github.com/iptv-org/iptv/issues/15723 -OWN.ca,https://github.com/iptv-org/iptv/issues/1831 -OWNEast.us,https://github.com/iptv-org/iptv/issues/1831 -OWNWest.us,https://github.com/iptv-org/iptv/issues/1831 -OXAHHD.ru,https://github.com/iptv-org/iptv/issues/15723 -PandoraPerfectHD.tw,https://github.com/iptv-org/iptv/issues/15723 -PandoraPink.tw,https://github.com/iptv-org/iptv/issues/15723 -ParadiseTV.jp,https://github.com/iptv-org/iptv/issues/15723 -PassieXXX.nl,https://github.com/iptv-org/iptv/issues/15723 -PassionXXX.nl,https://github.com/iptv-org/iptv/issues/15723 -PassionXXX2.nl,https://github.com/iptv-org/iptv/issues/15723 -Pattrn.us,https://github.com/iptv-org/iptv/issues/9729 -PenthouseAfterMidnight.us,https://github.com/iptv-org/iptv/issues/15723 -PenthouseBlack.us,https://github.com/iptv-org/iptv/issues/15723 -PenthouseGold.us,https://github.com/iptv-org/iptv/issues/15723 -PenthouseHD1.us,https://github.com/iptv-org/iptv/issues/15723 -PenthouseHD2.us,https://github.com/iptv-org/iptv/issues/15723 -PenthouseNaughtyNights.us,https://github.com/iptv-org/iptv/issues/15723 -PenthousePassion.us,https://github.com/iptv-org/iptv/issues/15723 -PenthousePassionHD.us,https://github.com/iptv-org/iptv/issues/15723 -PenthouseQuickies.us,https://github.com/iptv-org/iptv/issues/15723 -PenthouseRealityTV.us,https://github.com/iptv-org/iptv/issues/15723 -PenthouseTV.ca,https://github.com/iptv-org/iptv/issues/15723 -PenthouseTV.us,https://github.com/iptv-org/iptv/issues/15723 -PenthouseTVMonthlyOffer.us,https://github.com/iptv-org/iptv/issues/15723 -PhoenixMarieTV.us,https://github.com/iptv-org/iptv/issues/15723 -PinkOTV.it,https://github.com/iptv-org/iptv/issues/15723 -PlayboyChannel.jp,https://github.com/iptv-org/iptv/issues/15723 -PlayboyTV.br,https://github.com/iptv-org/iptv/issues/15723 -PlayboyTV.kr,https://github.com/iptv-org/iptv/issues/15723 -PlayboyTV.uk,https://github.com/iptv-org/iptv/issues/15723 -PlayboyTV.us,https://github.com/iptv-org/iptv/issues/15723 -PlayboyTVAsia.us,https://github.com/iptv-org/iptv/issues/15723 -PlayboyTVenEspanol.us,https://github.com/iptv-org/iptv/issues/15723 -PlayboyTVEurope.us,https://github.com/iptv-org/iptv/issues/15723 -PlayboyTVIberia.us,https://github.com/iptv-org/iptv/issues/15723 -PlayboyTVLatinAmerica.us,https://github.com/iptv-org/iptv/issues/15723 -PlayboyTVLatinAmericaHD.us,https://github.com/iptv-org/iptv/issues/15723 -PlayboyTVMonthlyOffer.us,https://github.com/iptv-org/iptv/issues/15723 -PlayHouseHD.si,https://github.com/iptv-org/iptv/issues/15723 -PlaymenTV.ca,https://github.com/iptv-org/iptv/issues/15723 -Pogo.in,https://github.com/iptv-org/iptv/issues/16839 -PornhubTV.us,https://github.com/iptv-org/iptv/issues/15723 -PPTV.th,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -PrimaSport1.ro,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -PrimaSport2.ro,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -PrimaSport3.ro,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -PrimaSport4.ro,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -PrivateSpice.fr,https://github.com/iptv-org/iptv/issues/15723 -PrivateTV.nl,https://github.com/iptv-org/iptv/issues/15723 -PrivateTVHD.nl,https://github.com/iptv-org/iptv/issues/15723 -PublicAgent.ca,https://github.com/iptv-org/iptv/issues/15723 -PureBabes.us,https://github.com/iptv-org/iptv/issues/15723 -QUBEAdultFilms.us,https://github.com/iptv-org/iptv/issues/15723 -Quest.uk,https://github.com/iptv-org/iptv/issues/1831 -Quest.us,https://github.com/iptv-org/iptv/issues/1831 -QuestHD.uk,https://github.com/iptv-org/iptv/issues/1831 -QuestPlus1.uk,https://github.com/iptv-org/iptv/issues/1831 -QuestRed.uk,https://github.com/iptv-org/iptv/issues/1831 -QuestRedPlus1.uk,https://github.com/iptv-org/iptv/issues/1831 -RainbowChannel.jp,https://github.com/iptv-org/iptv/issues/15723 -RainbowChannel.tw,https://github.com/iptv-org/iptv/issues/15723 -RealityKingsHD.us,https://github.com/iptv-org/iptv/issues/15723 -RealityKingsTV.us,https://github.com/iptv-org/iptv/issues/15723 -RealTime.it,https://github.com/iptv-org/iptv/issues/1831 -RealTimeAfrica.us,https://github.com/iptv-org/iptv/issues/1831 -RealTimeHD.it,https://github.com/iptv-org/iptv/issues/1831 -RealTimePlus1.it,https://github.com/iptv-org/iptv/issues/1831 -RedCherry.jp,https://github.com/iptv-org/iptv/issues/15723 -RedHotTV.ca,https://github.com/iptv-org/iptv/issues/15723 -RedlightHD.nl,https://github.com/iptv-org/iptv/issues/15723 -RedLips.ru,https://github.com/iptv-org/iptv/issues/15723 -REDxxxHD.si,https://github.com/iptv-org/iptv/issues/15723 -RKPrime.us,https://github.com/iptv-org/iptv/issues/15723 -RKTV.us,https://github.com/iptv-org/iptv/issues/15723 -Russiannight.ru,https://github.com/iptv-org/iptv/issues/15723 -RussiannightHD.ru,https://github.com/iptv-org/iptv/issues/15723 -S66Cams.uk,https://github.com/iptv-org/iptv/issues/15723 -SABCSport.za,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SAT1.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SatisfactionHD.lu,https://github.com/iptv-org/iptv/issues/15723 -SCT.it,https://github.com/iptv-org/iptv/issues/15723 -SetantaSportsGeorgia.ge,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SetantaSportsPlusGeorgia.ge,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SetantaSportsUkraine.ua,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SexArt.cy,https://github.com/iptv-org/iptv/issues/15723 -SexationHD.si,https://github.com/iptv-org/iptv/issues/15723 -Sexprive.br,https://github.com/iptv-org/iptv/issues/15723 -Sextosenso.it,https://github.com/iptv-org/iptv/issues/15723 -Sextreme.br,https://github.com/iptv-org/iptv/issues/15723 -SexWithMuslims.cz,https://github.com/iptv-org/iptv/issues/15723 -SexyHot.br,https://github.com/iptv-org/iptv/issues/15723 -Shalun.ru,https://github.com/iptv-org/iptv/issues/15723 -ShalunHD.ru,https://github.com/iptv-org/iptv/issues/15723 -Silk.ru,https://github.com/iptv-org/iptv/issues/15723 -SINematica.uk,https://github.com/iptv-org/iptv/issues/15723 -SkinemaxHD.ca,https://github.com/iptv-org/iptv/issues/15723 -SKYHIGHSEXVR.ru,https://github.com/iptv-org/iptv/issues/15723 -SkyNews.uk,https://github.com/iptv-org/iptv/issues/7314 -SkyNewsHD.uk,https://github.com/iptv-org/iptv/issues/7314 -SkyNewsInternational.uk,https://github.com/iptv-org/iptv/issues/7314 -SkySport.it,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport1.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport10.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport10.it,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport10HD.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport11.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport11.it,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport12.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport13.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport14.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport1HD.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport2.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport2.it,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport24.it,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport24HD.it,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport2HD.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport2HD.it,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport3.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport3.it,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport3HD.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport3HD.it,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport4.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport4.it,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport4HD.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport4K.it,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport5.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport5.it,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport5HD.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport6.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport6.it,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport6HD.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport7.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport7.it,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport7HD.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport8.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport8.it,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport8HD.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport9.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport9.it,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySport9HD.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportAction.it,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportArena.it,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportArenaHD.it,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportBar1.it,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportBar2.it,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportBar3.it,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportBundesliga1.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportBundesliga10.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportBundesliga10HD.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportBundesliga1HD.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportBundesliga2.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportBundesliga2HD.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportBundesliga3.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportBundesliga3HD.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportBundesliga4.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportBundesliga4HD.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportBundesliga5.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportBundesliga5HD.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportBundesliga6.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportBundesliga6HD.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportBundesliga7.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportBundesliga7HD.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportBundesliga8.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportBundesliga8HD.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportBundesliga9.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportBundesliga9HD.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportBundesligaUHD.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportCalcio.it,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportCalcioHD.it,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportFootball.it,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportFootballHD.it,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportHD.it,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportKompakt1.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportKompakt2.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportKompakt3.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportKompakt4.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportKompakt5.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySports1.mx,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySports16.mx,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySports2.mx,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySports21.mx,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySports24.mx,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySports3.mx,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySports34.mx,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySports6.mx,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySports8.mx,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySports9.mx,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportsFootball.uk,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportsFootballHD.uk,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportsMainEvent.uk,https://github.com/iptv-org/iptv/issues/6973 -SkySportsMainEventHD.uk,https://github.com/iptv-org/iptv/issues/6973 -SkySportsMix.uk,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportsMixHD.uk,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportsPremierLeague.uk,https://github.com/iptv-org/iptv/issues/6973 -SkySportsPremierLeagueHD.uk,https://github.com/iptv-org/iptv/issues/6973 -SkySportUHD.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportUno.it,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkySportUnoHD.it,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkyTG24.it,https://github.com/iptv-org/iptv/pull/2294 -SkyTG24Eventi.it,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkyTG24HD.it,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SkyTG24PrimoPiano.it,https://github.com/iptv-org/iptv/pull/2294 -SonseeTV1.tw,https://github.com/iptv-org/iptv/issues/15723 -SonseeTV2.tw,https://github.com/iptv-org/iptv/issues/15723 -SonseeTV3.tw,https://github.com/iptv-org/iptv/issues/15723 -SonseeTV4.tw,https://github.com/iptv-org/iptv/issues/15723 -SonyMovies.us,https://github.com/iptv-org/iptv/issues/17874 -Splash.jp,https://github.com/iptv-org/iptv/issues/15723 -Sport1.de,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SportKlub1.hr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SportKlub1.rs,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SportKlub2.hr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SportKlub2.rs,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SportKlub3.hr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SportKlub3.rs,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SportKlub4.hr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SportKlub4.rs,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SportKlub5.hr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SportKlub5.rs,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SportKlub6.hr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SportKlub6.rs,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SportKlubHD.rs,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SportKlubStart.rs,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SportTV1.si,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SportTV2.si,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SportTV3.si,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SunBeachTV.us,https://github.com/iptv-org/iptv/issues/15723 -SuperONE.hu,https://github.com/iptv-org/iptv/issues/15723 -SuperONEHD.hu,https://github.com/iptv-org/iptv/issues/15723 -SuperSport1.al,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SuperSport2.al,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SuperSport3.al,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SuperSport4.al,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SuperSport5.al,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SuperSport6.al,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SuperSport7.al,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SuperSportKosova1.xk,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SuperSportKosova2.xk,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -SuperSportKosova3.xk,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -TAPSports.ph,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -TBSEast.us,https://github.com/iptv-org/iptv/issues/16839 -TBSWest.us,https://github.com/iptv-org/iptv/issues/16839 -TCMEast.us,https://github.com/iptv-org/iptv/issues/16839 -TCMWest.us,https://github.com/iptv-org/iptv/issues/16839 -TelevisionX.uk,https://github.com/iptv-org/iptv/issues/15723 -TheGrioTV.us,https://github.com/iptv-org/iptv/issues/9729 -TheWeatherChannel.us,https://github.com/iptv-org/iptv/issues/9729 -Tiny4K.uk,https://github.com/iptv-org/iptv/issues/15723 -TivibuSpor.tr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -TivibuSpor2.tr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -TivibuSpor3.tr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -TivibuSpor4.tr,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -TLC.ar,https://github.com/iptv-org/iptv/issues/1831 -TLC.at,https://github.com/iptv-org/iptv/issues/1831 -TLC.au,https://github.com/iptv-org/iptv/issues/1831 -TLC.br,https://github.com/iptv-org/iptv/issues/1831 -TLC.de,https://github.com/iptv-org/iptv/issues/1831 -TLC.dk,https://github.com/iptv-org/iptv/issues/1831 -TLC.fi,https://github.com/iptv-org/iptv/issues/1831 -TLC.hu,https://github.com/iptv-org/iptv/issues/1831 -TLC.in,https://github.com/iptv-org/iptv/issues/1831 -TLC.mx,https://github.com/iptv-org/iptv/issues/1831 -TLC.nl,https://github.com/iptv-org/iptv/issues/1831 -TLC.no,https://github.com/iptv-org/iptv/issues/1831 -TLC.nz,https://github.com/iptv-org/iptv/issues/1831 -TLC.pl,https://github.com/iptv-org/iptv/issues/1831 -TLC.pt,https://github.com/iptv-org/iptv/issues/1831 -TLC.ro,https://github.com/iptv-org/iptv/issues/1831 -TLC.ru,https://github.com/iptv-org/iptv/issues/1831 -TLC.se,https://github.com/iptv-org/iptv/issues/1831 -TLC.tr,https://github.com/iptv-org/iptv/issues/1831 -TLC.tw,https://github.com/iptv-org/iptv/issues/1831 -TLC.uk,https://github.com/iptv-org/iptv/issues/1831 -TLCAfrica.us,https://github.com/iptv-org/iptv/issues/1831 -TLCArabia.us,https://github.com/iptv-org/iptv/issues/1831 -TLCBalkan.us,https://github.com/iptv-org/iptv/issues/1831 -TLCEast.us,https://github.com/iptv-org/iptv/issues/1831 -TLCHD.uk,https://github.com/iptv-org/iptv/issues/1831 -TLCLatinAmerica.us,https://github.com/iptv-org/iptv/issues/1831 -TLCPanregional.us,https://github.com/iptv-org/iptv/issues/1831 -TLCPlus1.uk,https://github.com/iptv-org/iptv/issues/1831 -TLCPlus2.au,https://github.com/iptv-org/iptv/issues/1831 -TLCSouth.us,https://github.com/iptv-org/iptv/issues/1831 -TLCSoutheastAsia.sg,https://github.com/iptv-org/iptv/issues/1831 -TLCWest.us,https://github.com/iptv-org/iptv/issues/1831 -TNTEast.us,https://github.com/iptv-org/iptv/issues/16839 -TNTSports.br,https://github.com/iptv-org/iptv/issues/16839 -TNTSports1.uk,https://github.com/iptv-org/iptv/issues/6973 -TNTSports10.uk,https://github.com/iptv-org/iptv/issues/6973 -TNTSports1HD.uk,https://github.com/iptv-org/iptv/issues/6973 -TNTSports2.br,https://github.com/iptv-org/iptv/issues/16839 -TNTSports2.uk,https://github.com/iptv-org/iptv/issues/6973 -TNTSports2HD.uk,https://github.com/iptv-org/iptv/issues/6973 -TNTSports3.br,https://github.com/iptv-org/iptv/issues/16839 -TNTSports3.uk,https://github.com/iptv-org/iptv/issues/6973 -TNTSports3HD.uk,https://github.com/iptv-org/iptv/issues/6973 -TNTSports4.br,https://github.com/iptv-org/iptv/issues/16839 -TNTSports4.uk,https://github.com/iptv-org/iptv/issues/6973 -TNTSports4HD.uk,https://github.com/iptv-org/iptv/issues/6973 -TNTSports5.br,https://github.com/iptv-org/iptv/issues/16839 -TNTSports5.uk,https://github.com/iptv-org/iptv/issues/6973 -TNTSports6.uk,https://github.com/iptv-org/iptv/issues/6973 -TNTSports7.uk,https://github.com/iptv-org/iptv/issues/6973 -TNTSports8.uk,https://github.com/iptv-org/iptv/issues/6973 -TNTSports9.uk,https://github.com/iptv-org/iptv/issues/6973 -TNTSportsBoxOffice.uk,https://github.com/iptv-org/iptv/issues/6973 -TNTSportsBoxOffice2.uk,https://github.com/iptv-org/iptv/issues/6973 -TNTSportsBoxOffice2HD.uk,https://github.com/iptv-org/iptv/issues/6973 -TNTSportsBoxOfficeHD.uk,https://github.com/iptv-org/iptv/issues/6973 -TNTSportsUltimate.uk,https://github.com/iptv-org/iptv/issues/6973 -TNTWest.us,https://github.com/iptv-org/iptv/issues/16839 -TransAngels.ca,https://github.com/iptv-org/iptv/issues/15723 -TravelChannel.au,https://github.com/iptv-org/iptv/issues/1831 -TravelChannel.in,https://github.com/iptv-org/iptv/issues/1831 -TravelChannel.pl,https://github.com/iptv-org/iptv/issues/1831 -TravelChannel.tw,https://github.com/iptv-org/iptv/issues/1831 -TravelChannelEast.us,https://github.com/iptv-org/iptv/issues/1831 -TravelChannelEMEA.uk,https://github.com/iptv-org/iptv/issues/1831 -TravelChannelSoutheastAsia.sg,https://github.com/iptv-org/iptv/issues/1831 -TravelChannelWest.us,https://github.com/iptv-org/iptv/issues/1831 -TrueAmateurs.ca,https://github.com/iptv-org/iptv/issues/15723 -TrueAmateurs.uk,https://github.com/iptv-org/iptv/issues/15723 -truTVEast.us,https://github.com/iptv-org/iptv/issues/16839 -truTVWest.us,https://github.com/iptv-org/iptv/issues/16839 -TSN1.mt,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -TSN2.mt,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -TSN3.mt,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -TSN4.mt,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -TSN5.mt,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -TSN6.mt,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -TSN7.mt,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -TSN8.mt,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -TTV.pl,https://github.com/iptv-org/iptv/issues/1831 -TUSHY.us,https://github.com/iptv-org/iptv/issues/15723 -TUSHYRAW.us,https://github.com/iptv-org/iptv/issues/15723 -TV3Sport.dk,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -TVN.pl,https://github.com/iptv-org/iptv/issues/1831 -TVN24.pl,https://github.com/iptv-org/iptv/issues/1831 -TVN24BiS.pl,https://github.com/iptv-org/iptv/issues/1831 -TVN7.pl,https://github.com/iptv-org/iptv/issues/1831 -TVNFabula.pl,https://github.com/iptv-org/iptv/issues/1831 -TVNorge.no,https://github.com/iptv-org/iptv/issues/1831 -TVNStyle.pl,https://github.com/iptv-org/iptv/issues/1831 -TVNTurbo.pl,https://github.com/iptv-org/iptv/issues/1831 -TVP1.pl,https://github.com/iptv-org/iptv/issues/6973 -TVPSport.pl,https://github.com/iptv-org/iptv/issues/6973 -TVVarzish.tj,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -VanillaSkyChannel.jp,https://github.com/iptv-org/iptv/issues/15723 -Venus.ar,https://github.com/iptv-org/iptv/issues/15723 -VENUS.jp,https://github.com/iptv-org/iptv/issues/15723 -VenusHD.ar,https://github.com/iptv-org/iptv/issues/15723 -VERAPORNGROUPSEX1.ru,https://github.com/iptv-org/iptv/issues/15723 -VERAPORNGROUPSEX2.ru,https://github.com/iptv-org/iptv/issues/15723 -Viki.kr,https://github.com/iptv-org/iptv/issues/15723 -VisitXTV.nl,https://github.com/iptv-org/iptv/issues/15723 -VividREDHD.us,https://github.com/iptv-org/iptv/issues/15723 -VividTouch.uk,https://github.com/iptv-org/iptv/issues/15723 -VividTV.us,https://github.com/iptv-org/iptv/issues/15723 -VividTVEurope.uk,https://github.com/iptv-org/iptv/issues/15723 -VividTVMonthlyOffer.us,https://github.com/iptv-org/iptv/issues/15723 -VixenHD.us,https://github.com/iptv-org/iptv/issues/15723 -VixenTV.ca,https://github.com/iptv-org/iptv/issues/15723 -VOX.no,https://github.com/iptv-org/iptv/issues/1831 -VSport1.fi,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -VSport1.no,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -VSport1.se,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -VSport2.fi,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -VSport2.no,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -VSport3.no,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -VSportExtra.se,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -VSportFootball.se,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -VSportLive1.se,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -VSportLive2.se,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -VSportLive3.se,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -VSportLive4.se,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -VSportLive5.se,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -VSportPlus.fi,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -VSportPlus.no,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -VSportPremium.se,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -VSportUltraHD.se,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -VTVCab1.vn,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -VTVCab7.vn,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -W14DKD4.us,https://github.com/iptv-org/iptv/issues/9729 -WDPNDT7.us,https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf -WeLiveTogether.us,https://github.com/iptv-org/iptv/issues/15723 -WhiteBoxxx.ro,https://github.com/iptv-org/iptv/issues/15723 -Wicked.us,https://github.com/iptv-org/iptv/issues/15723 -WNWTLD1.us,https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf -WRJKLP3.us,https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf -X1.al,https://github.com/iptv-org/iptv/issues/15723 -Xee.dk,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md -XMO.nl,https://github.com/iptv-org/iptv/issues/15723 -XpandedTV.uk,https://github.com/iptv-org/iptv/issues/15723 -XXL.fr,https://github.com/iptv-org/iptv/issues/15723 -XXXCartoons.de,https://github.com/iptv-org/iptv/issues/15723 -XXXLovesBerryHD.ru,https://github.com/iptv-org/iptv/issues/15723 -XXXTazyHD.si,https://github.com/iptv-org/iptv/issues/15723 -XYmax.uk,https://github.com/iptv-org/iptv/issues/15723 -XYmaxHD.uk,https://github.com/iptv-org/iptv/issues/15723 -XYmix.uk,https://github.com/iptv-org/iptv/issues/15723 -XYmixHD.uk,https://github.com/iptv-org/iptv/issues/15723 -XYplus.uk,https://github.com/iptv-org/iptv/issues/15723 -XYplusHD.uk,https://github.com/iptv-org/iptv/issues/15723 -Zaptv.jp,https://github.com/iptv-org/iptv/issues/15723 \ No newline at end of file +channel,reason,ref +21Sextury.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +40Plus.uk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +A3Bikini.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultChannel.uk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultChannel1.rs,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultChannel2.rs,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultChannel3.rs,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultChannel4.rs,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultChannel5.rs,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultChannel6.rs,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultChannel7.rs,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultIPTVnetAnal.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultIPTVnetAsian.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultIPTVnetBigAss.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultIPTVnetBigDick.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultIPTVnetBigTits.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultIPTVnetBlonde.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultIPTVnetBlowjob.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultIPTVnetBrunette.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultIPTVnetCompilation.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultIPTVnetCuckold.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultIPTVnetFetish.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultIPTVnetGangbang.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultIPTVnetGay.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultIPTVnetHardcore.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultIPTVnetInterracial.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultIPTVnetLatina.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultIPTVnetLesbian.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultIPTVnetLiveCams.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultIPTVnetMILF.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultIPTVnetPornstar.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultIPTVnetPOV.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultIPTVnetRough.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultIPTVnetRussian.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultIPTVnetTeen.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultIPTVnetThreesome.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultIPTVnetWoman.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AdultSwimEast.us,dmca,https://github.com/iptv-org/iptv/issues/16839 +AdultSwimWest.us,dmca,https://github.com/iptv-org/iptv/issues/16839 +AlbaXXXHD1.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AlbaXXXHD2.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AlexLegend.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AllAnal.ca,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AllAnalAllTheTime.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AlureChannel.th,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AmateurBoxxx.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AmazingTV.tw,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Anal4K.uk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AnalMom.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AnalOnly.ca,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AnalTeenAngels.uk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AngelsHD.si,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AnimalPlanet.au,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanet.br,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanet.ca,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanet.de,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanet.in,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanet.jp,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanet.nl,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanet.pl,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanet.ro,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanet.ru,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanet.tr,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanet.tw,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanet.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanetEast.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanetEastHD.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanetEurope.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanetEuropeHD.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanetHD.br,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanetHD.ca,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanetHD.de,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanetHD.in,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanetHD.jp,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanetHD.nl,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanetHD.pl,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanetHD.ro,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanetLatinAmerica.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanetLatinAmericaHD.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanetNordic.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanetNordicHD.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanetPlus1.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanetSoutheastAsia.sg,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanetSoutheastAsiaHD.sg,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanetWest.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +AnimalPlanetWestHD.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +AOVAdultMovieChannel.ca,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Arena4.hu,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +AsianFoodNetwork.sg,dmca,https://github.com/iptv-org/iptv/issues/1831 +AsianFoodNetwork.tw,dmca,https://github.com/iptv-org/iptv/issues/1831 +AssholeFever.uk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AssParade.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +ASTTV1.cy,nsfw,https://github.com/iptv-org/iptv/issues/15723 +ASTTV2.cy,nsfw,https://github.com/iptv-org/iptv/issues/15723 +AVKing.jp,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Babenation.uk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +BabesandBrazzers.uk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Babestation.uk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Babestation24.ch,nsfw,https://github.com/iptv-org/iptv/issues/15723 +BabesTV.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +BalkanEroticHD.si,nsfw,https://github.com/iptv-org/iptv/issues/15723 +BananaFever.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +BananaTV.tw,nsfw,https://github.com/iptv-org/iptv/issues/15723 +BangBus.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +BangPOV.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +BangU.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +BarelyLegalTV.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +BBCPie.uk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +BCUCharmHD.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +BeateUhseTV.de,nsfw,https://github.com/iptv-org/iptv/issues/15723 +BeateUhseTVHD.de,nsfw,https://github.com/iptv-org/iptv/issues/15723 +beINSports.fr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSports.qa,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSports1.au,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSports1.fr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSports1.hk,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSports1.my,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSports1.ph,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSports1.qa,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSports1.th,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSports1.tr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSports2.au,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSports2.fr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSports2.hk,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSports2.qa,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSports2.th,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSports2.tr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSports3.au,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSports3.fr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSports3.ph,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSports3.qa,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSports3.th,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSports3.tr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSports4.qa,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSports4.tr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSports5.qa,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSports5.tr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSports6.qa,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSports7.qa,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSports8.qa,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSportsEnglish1.qa,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSportsEnglish2.qa,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSportsEnglish3.qa,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSportsFrench1.qa,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSportsFrench2.qa,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSportsFrench3.qa,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSportsMax1.qa,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSportsMax1.tr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSportsMax10.fr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSportsMax2.qa,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSportsMax2.tr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSportsMax3.qa,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSportsMax4.fr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSportsMax4.qa,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSportsMax5.fr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSportsMax5.qa,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSportsMax6.fr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSportsMax6.qa,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSportsMax7.fr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSportsMax8.fr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSportsMax9.fr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSportsPremium1.qa,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSportsPremium2.qa,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSportsPremium3.qa,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSportsXtra1.qa,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +beINSportsXtra2.qa,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +Bizarre.al,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Bliss.si,nsfw,https://github.com/iptv-org/iptv/issues/15723 +BlueHustler.nl,nsfw,https://github.com/iptv-org/iptv/issues/15723 +BodySex.pt,nsfw,https://github.com/iptv-org/iptv/issues/15723 +BooBHD.si,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Boomerang.fr,dmca,https://github.com/iptv-org/iptv/issues/16839 +Boomerang.th,dmca,https://github.com/iptv-org/iptv/issues/16839 +BrandNewAmateurs.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +BrattySis.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +BrazzersTVEurope.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +BTSportMosaic.uk,dmca,https://github.com/iptv-org/iptv/issues/6973 +BTSportMosaic2.uk,dmca,https://github.com/iptv-org/iptv/issues/6973 +BungaBunga.al,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Candy3DHD.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +CandyManTV.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +CandyTV.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +CandyTVHD.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +CapableHoleHD.si,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Cartoonito.mx,dmca,https://github.com/iptv-org/iptv/issues/16839 +CartoonitoLive.br,dmca,https://github.com/iptv-org/iptv/issues/16839 +CartoonitoLiveLatinAmerica.br,dmca,https://github.com/iptv-org/iptv/issues/16839 +CartoonNetwork.in,dmca,https://github.com/iptv-org/iptv/issues/16839 +CartoonNetwork.jp,dmca,https://github.com/iptv-org/iptv/issues/16839 +CartoonNetwork.mx,dmca,https://github.com/iptv-org/iptv/issues/16839 +CartoonNetwork.ru,dmca,https://github.com/iptv-org/iptv/issues/16839 +CartoonNetworkAsia.sg,dmca,https://github.com/iptv-org/iptv/issues/16839 +CartoonNetworkEast.us,dmca,https://github.com/iptv-org/iptv/issues/16839 +CartoonNetworkLive.br,dmca,https://github.com/iptv-org/iptv/issues/16839 +CartoonNetworkLive2.br,dmca,https://github.com/iptv-org/iptv/issues/16839 +CartoonNetworkLiveLatinAmerica.br,dmca,https://github.com/iptv-org/iptv/issues/16839 +CartoonNetworkLiveLatinAmerica2.br,dmca,https://github.com/iptv-org/iptv/issues/16839 +CentoXCentoTV.it,nsfw,https://github.com/iptv-org/iptv/issues/15723 +ChannelAdult.hk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +ChannelBlue.hk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +ChannelFire.hk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +CherryBomb.jp,nsfw,https://github.com/iptv-org/iptv/issues/15723 +CineManExExEx.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +CineManExExExTWO.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +CinemaPlus.co,nsfw,https://github.com/iptv-org/iptv/issues/15723 +CinemaxLatinAmerica.us,dmca,https://github.com/iptv-org/iptv/issues/16839 +CNN.us,dmca,https://github.com/iptv-org/iptv/issues/16839 +CNNBrasil.br,dmca,https://github.com/iptv-org/iptv/issues/16839 +CNNChile.cl,dmca,https://github.com/iptv-org/iptv/issues/16839 +CNNenEspanol.us,dmca,https://github.com/iptv-org/iptv/issues/16839 +CNNIndonesia.id,dmca,https://github.com/iptv-org/iptv/issues/16839 +CNNInternationalEurope.us,dmca,https://github.com/iptv-org/iptv/issues/16839 +CNNPakistan.pk,dmca,https://github.com/iptv-org/iptv/issues/16839 +CNNPortugal.pt,dmca,https://github.com/iptv-org/iptv/issues/16839 +CNNTurk.tr,dmca,https://github.com/iptv-org/iptv/issues/16839 +ColmaxTV.fr,nsfw,https://github.com/iptv-org/iptv/issues/15723 +CookingChannel.ca,dmca,https://github.com/iptv-org/iptv/issues/1831 +CookingChannel.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +Cum4KUHD.uk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +CumPerfection.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +DadCrush.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +DarkX.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +DAZN1.be,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +DAZN1.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +DAZN1.es,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +DAZN1HD.be,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +DAZN1HD.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +DAZN1HD.uk,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +DAZN2.be,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +DAZN2.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +DAZN2.es,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +DAZN2HD.be,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +DAZN2HD.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +DAZN3.es,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +DAZN4.es,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +DAZNF1.es,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +DAZNF14K.es,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +DAZNLaLiga.es,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +DAZNLaLiga2.es,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +DAZNLaLiga3.es,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +DAZNLaLiga4.es,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +DAZNLaLiga5.es,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +DAZNProLeague1.be,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +DAZNProLeague1HD.be,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +DAZNProLeague2.be,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +DAZNProLeague2HD.be,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +DAZNProLeague3.be,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +DAZNProLeague3HD.be,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +DeepLush.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +DeepThroatSirens.ca,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Desire.al,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Desire.uk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +DesireTV.kr,nsfw,https://github.com/iptv-org/iptv/issues/15723 +DevilsHomeHD.si,nsfw,https://github.com/iptv-org/iptv/issues/15723 +DiemaSport.bg,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +DiemaSport2.bg,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +DiemaSport24K.bg,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +DiemaSport3.bg,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +DiemaSport34K.bg,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +DirtyFlix.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +DirtyMasseur.ca,nsfw,https://github.com/iptv-org/iptv/issues/15723 +DirtyWivesClub.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +DiscoveryAsia.sg,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryAsiaTaiwan.tw,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.au,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.be,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.bg,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.br,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.ca,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.cl,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.cz,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.de,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.dk,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.ee,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.es,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.fi,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.fr,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.hu,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.id,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.ie,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.in,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.it,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.jp,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.kr,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.lv,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.mt,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.mx,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.nl,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.no,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.nz,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.pl,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.pt,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.ro,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.rs,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.ru,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.se,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.si,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.tr,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.tw,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannel.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannelEast.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannelHD.de,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannelHD.it,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannelMiddleEastAfrica.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannelPanregional.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannelPlus1.it,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannelPlus1.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannelPlus2.au,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannelSouth.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannelSoutheastAsia.sg,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryChannelWest.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryCivilization.br,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryCivilizationLatinAmerica.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryenEspanol.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryFamilia.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryFamily.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryFamilyAfrica.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryHistoria.pl,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryHistory.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryHistoryPlus1.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryHomeHealth.br,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryHomeHealth.cl,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryHomeHealth.mx,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryHomeHealthPanregional.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryHomeHealthSouth.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryKids.br,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryKids.cl,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryKids.in,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryKids.mx,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryKidsLive.br,dmca,https://github.com/iptv-org/iptv/issues/16839 +DiscoveryKidsLiveLatinAmerica.br,dmca,https://github.com/iptv-org/iptv/issues/16839 +DiscoveryKidsPanregional.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryLife.pl,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryLife.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryPlusExtra1.se,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryPlusExtra2.se,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryPlusExtra3.se,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryPlusExtra4.se,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryPlusExtra5.se,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryPlusExtra6.se,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryPlusExtra7.se,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryPlusExtra8.se,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryScience.br,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryScience.ca,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryScience.cz,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryScience.fr,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryScience.hu,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryScience.in,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryScience.it,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryScience.pl,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryScience.ru,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryScience.se,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryScience.tr,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryScience.tw,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryScience.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryScience.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryScienceLatinAmerica.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryScienceMiddleEast.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoverySciencePlus1.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryScienceSoutheastAsia.sg,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryTheater.br,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryTheaterLatinAmerica.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryTourismGuyana.us,dmca,https://github.com/iptv-org/iptv/issues/16839 +DiscoveryTurbo.au,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryTurbo.br,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryTurbo.in,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryTurbo.jp,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryTurbo.nz,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryTurbo.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryTurboPanregional.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryTurboPlus1.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryTurboPlus2.au,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryUltra.ru,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryVelocity.ca,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryWorld.br,dmca,https://github.com/iptv-org/iptv/issues/1831 +DiscoveryWorldLatinAmerica.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +DKISS.es,dmca,https://github.com/iptv-org/iptv/issues/1831 +DMAX.de,dmca,https://github.com/iptv-org/iptv/issues/1831 +DMAX.es,dmca,https://github.com/iptv-org/iptv/issues/1831 +DMAX.it,dmca,https://github.com/iptv-org/iptv/issues/1831 +DMAX.tr,dmca,https://github.com/iptv-org/iptv/issues/1831 +DMAX.tw,dmca,https://github.com/iptv-org/iptv/issues/1831 +DMAX.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +DMAXHD.it,dmca,https://github.com/iptv-org/iptv/issues/1831 +DMAXPlus1.it,dmca,https://github.com/iptv-org/iptv/issues/1831 +DMAXPlus1.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +DMAXSoutheastAsia.sg,dmca,https://github.com/iptv-org/iptv/issues/1831 +DorcelTV.nl,nsfw,https://github.com/iptv-org/iptv/issues/15723 +DorcelTVAfrica.nl,nsfw,https://github.com/iptv-org/iptv/issues/15723 +DorcelTVCanada.ca,nsfw,https://github.com/iptv-org/iptv/issues/15723 +DorcelTVHD.nl,nsfw,https://github.com/iptv-org/iptv/issues/15723 +DorcelXXX.nl,nsfw,https://github.com/iptv-org/iptv/issues/15723 +DPFanatics.uk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +DreamPornTV.ba,nsfw,https://github.com/iptv-org/iptv/issues/15723 +DuskTV.nl,nsfw,https://github.com/iptv-org/iptv/issues/15723 +DynamiteTV.jp,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Enter959.jp,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Eromania4K.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Eropulsde.de,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Erotic.rs,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Erotic2.rs,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Erotic3.rs,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Erotic4.rs,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Erotic5.rs,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Erotic6.rs,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Erotic7.rs,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Erotic8.rs,nsfw,https://github.com/iptv-org/iptv/issues/15723 +EroticaX.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +EroticSpice.ca,nsfw,https://github.com/iptv-org/iptv/issues/15723 +EroX.nl,nsfw,https://github.com/iptv-org/iptv/issues/15723 +EroXHD.nl,nsfw,https://github.com/iptv-org/iptv/issues/15723 +EroXXX.nl,nsfw,https://github.com/iptv-org/iptv/issues/15723 +EroXXXHD.nl,nsfw,https://github.com/iptv-org/iptv/issues/15723 +ESPN.ar,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +ESPN.au,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +ESPN.cl,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +ESPN.co,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +ESPN.pe,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +ESPN.us,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +ESPN2.ar,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +ESPN2.cl,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +ESPN2.co,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +ESPN2.pe,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +ESPN2.us,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +ESPN2Caribbean.us,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +ESPN2North.us,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +ESPN3.ar,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +ESPN3North.us,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +ESPN3South.us,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +ESPN4.cl,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +ESPN4North.us,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +ESPN4South.us,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +ESPNCaribbean.us,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +ESPNNorth.us,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +ESPNPremium.ar,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +EuroGirlsonGirls.cz,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Eurosport.in,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport.no,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport1.de,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport1.dk,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport1.es,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport1.fr,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport1.gr,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport1.hu,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport1.it,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport1.nl,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport1.no,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport1.pl,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport1.ro,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport1.ru,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport1.tr,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport1.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport1HD.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport2.de,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport2.dk,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport2.es,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport2.fr,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport2.gr,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport2.hu,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport2.it,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport2.nl,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport2.pl,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport2.ro,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport2.ru,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport2.tr,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport2.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport2HD.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport2Xtra.de,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport3.fr,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport360HD1.fr,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport360HD2.fr,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport360HD3.fr,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport360HD4.fr,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport360HD5.fr,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport360HD6.fr,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport360HD7.fr,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport360HD8.fr,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport360HD9.fr,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport4.fr,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport4K.fr,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport5.fr,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport6.fr,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport7.fr,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport8.fr,dmca,https://github.com/iptv-org/iptv/issues/1831 +Eurosport9.fr,dmca,https://github.com/iptv-org/iptv/issues/1831 +EurosportAsia.fr,dmca,https://github.com/iptv-org/iptv/issues/1831 +EVE.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +EVETaiwan.tw,dmca,https://github.com/iptv-org/iptv/issues/1831 +EvilAngelTV.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Exotic4K.uk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +EXTANSYTV4K.cz,nsfw,https://github.com/iptv-org/iptv/issues/15723 +EXTASYHD.cz,nsfw,https://github.com/iptv-org/iptv/issues/15723 +EXTASYTV.cz,nsfw,https://github.com/iptv-org/iptv/issues/15723 +ExtremeHD.si,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Exxxotica.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +ExxxoticaHD.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +ExxxtasyTV.ca,nsfw,https://github.com/iptv-org/iptv/issues/15723 +FamilyStrokes.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +FamilySwap.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +FAPTV.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +FAPTV2.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +FAPTV3.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +FAPTV4.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +FAPTVAmateur.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +FAPTVAnal.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +FAPTVBBW.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +FAPTVCompilation.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +FAPTVGay.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +FAPTVLesbian.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +FAPTVOlder.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +FAPTVParody.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +FAPTVTeaching.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +FAPTVTeens.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +FAPTVTrans.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +FashionTVMidnightSecrets.fr,nsfw,https://github.com/iptv-org/iptv/issues/15723 +FastTV.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +Fatafeat.ae,dmca,https://github.com/iptv-org/iptv/issues/1831 +FEM.no,dmca,https://github.com/iptv-org/iptv/issues/1831 +Flamingo.jp,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Focus.it,dmca,https://github.zendesk.com/attachments/token/FL9J24PDKdm0zzJJ3tKyXonmA/?name=2022-02-01-nagra.rtf +FocusHD.it,dmca,https://github.zendesk.com/attachments/token/FL9J24PDKdm0zzJJ3tKyXonmA/?name=2022-02-01-nagra.rtf +FoodNetwork.br,dmca,https://github.com/iptv-org/iptv/issues/1831 +FoodNetwork.ca,dmca,https://github.com/iptv-org/iptv/issues/1831 +FoodNetwork.hu,dmca,https://github.com/iptv-org/iptv/issues/1831 +FoodNetwork.it,dmca,https://github.com/iptv-org/iptv/issues/1831 +FoodNetwork.mx,dmca,https://github.com/iptv-org/iptv/issues/1831 +FoodNetwork.nz,dmca,https://github.com/iptv-org/iptv/issues/1831 +FoodNetwork.pl,dmca,https://github.com/iptv-org/iptv/issues/1831 +FoodNetwork.ro,dmca,https://github.com/iptv-org/iptv/issues/1831 +FoodNetwork.tw,dmca,https://github.com/iptv-org/iptv/issues/1831 +FoodNetwork.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +FoodNetwork.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +FoodNetworkAsia.sg,dmca,https://github.com/iptv-org/iptv/issues/1831 +FoodNetworkEast.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +FoodNetworkEMEA.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +FoodNetworkHD.it,dmca,https://github.com/iptv-org/iptv/issues/1831 +FoodNetworkPanregional.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +FoodNetworkPlus1.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +FoodNetworkWest.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +FoodTV.kr,dmca,https://github.com/iptv-org/iptv/issues/1831 +FoxyDollsHD.si,nsfw,https://github.com/iptv-org/iptv/issues/15723 +FrenchLover.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +FrenchLoverTV.fr,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Frisbee.it,dmca,https://github.com/iptv-org/iptv/issues/1831 +Giallo.it,dmca,https://github.com/iptv-org/iptv/issues/1831 +GialloHD.it,dmca,https://github.com/iptv-org/iptv/issues/1831 +GLAMHD.si,nsfw,https://github.com/iptv-org/iptv/issues/15723 +GlobalNews.ca,dmca,https://github.com/iptv-org/iptv/pull/6329 +GlobalNewsBC1.ca,dmca,https://github.com/iptv-org/iptv/pull/6329 +GolfTV.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +HappyChannel.tw,nsfw,https://github.com/iptv-org/iptv/issues/15723 +HBO1.ca,dmca,https://github.com/iptv-org/iptv/issues/16839 +HBO2LatinAmerica.us,dmca,https://github.com/iptv-org/iptv/issues/16839 +HBOFamilyLatinAmerica.us,dmca,https://github.com/iptv-org/iptv/issues/16839 +HBOMundiCaribbean.us,dmca,https://github.com/iptv-org/iptv/issues/16839 +HBOPlusLatinAmerica.us,dmca,https://github.com/iptv-org/iptv/issues/16839 +HBOSignatureLatinAmerica.us,dmca,https://github.com/iptv-org/iptv/issues/16839 +HBOXtremeLatinAmerica.us,dmca,https://github.com/iptv-org/iptv/issues/16839 +HGTV.br,dmca,https://github.com/iptv-org/iptv/issues/1831 +HGTV.ca,dmca,https://github.com/iptv-org/iptv/issues/1831 +HGTV.hu,dmca,https://github.com/iptv-org/iptv/issues/1831 +HGTV.it,dmca,https://github.com/iptv-org/iptv/issues/1831 +HGTV.nz,dmca,https://github.com/iptv-org/iptv/issues/1831 +HGTV.pl,dmca,https://github.com/iptv-org/iptv/issues/1831 +HGTV.ru,dmca,https://github.com/iptv-org/iptv/issues/1831 +HGTV.tw,dmca,https://github.com/iptv-org/iptv/issues/1831 +HGTV.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +HGTV.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +HGTVArabia.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +HGTVAsia.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +HGTVEast.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +HGTVHD.it,dmca,https://github.com/iptv-org/iptv/issues/1831 +HGTVPanregional.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +HGTVPlus1.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +HGTVSouthAfrica.za,dmca,https://github.com/iptv-org/iptv/issues/1831 +HGTVWest.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +HiPlay.tw,nsfw,https://github.com/iptv-org/iptv/issues/15723 +HLN.us,dmca,https://github.com/iptv-org/iptv/issues/16839 +HogarHGTV.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +HoneyTV.kr,nsfw,https://github.com/iptv-org/iptv/issues/15723 +HOT.pt,nsfw,https://github.com/iptv-org/iptv/issues/15723 +HOT1HD.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +HOT2HD.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +HotChannel.tw,nsfw,https://github.com/iptv-org/iptv/issues/15723 +HOTHD.pt,nsfw,https://github.com/iptv-org/iptv/issues/15723 +HOTMan.pt,nsfw,https://github.com/iptv-org/iptv/issues/15723 +HotPleasure.si,nsfw,https://github.com/iptv-org/iptv/issues/15723 +HOTTaboo.pt,nsfw,https://github.com/iptv-org/iptv/issues/15723 +HotwifePremium.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +HotXXLHD.si,nsfw,https://github.com/iptv-org/iptv/issues/15723 +HustlerHD.nl,nsfw,https://github.com/iptv-org/iptv/issues/15723 +HustlerTV.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +HustlerTVEurope.nl,nsfw,https://github.com/iptv-org/iptv/issues/15723 +IceFire.hk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +InvestigationDiscovery.au,dmca,https://github.com/iptv-org/iptv/issues/1831 +InvestigationDiscovery.br,dmca,https://github.com/iptv-org/iptv/issues/1831 +InvestigationDiscovery.ca,dmca,https://github.com/iptv-org/iptv/issues/1831 +InvestigationDiscovery.fr,dmca,https://github.com/iptv-org/iptv/issues/1831 +InvestigationDiscovery.hu,dmca,https://github.com/iptv-org/iptv/issues/1831 +InvestigationDiscovery.in,dmca,https://github.com/iptv-org/iptv/issues/1831 +InvestigationDiscovery.mx,dmca,https://github.com/iptv-org/iptv/issues/1831 +InvestigationDiscovery.nl,dmca,https://github.com/iptv-org/iptv/issues/1831 +InvestigationDiscovery.pl,dmca,https://github.com/iptv-org/iptv/issues/1831 +InvestigationDiscovery.ru,dmca,https://github.com/iptv-org/iptv/issues/1831 +InvestigationDiscovery.se,dmca,https://github.com/iptv-org/iptv/issues/1831 +InvestigationDiscovery.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +InvestigationDiscoveryAfrica.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +InvestigationDiscoveryEast.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +InvestigationDiscoveryEurope.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +InvestigationDiscoveryPanregional.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +InvestigationDiscoveryPlus1.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +InvestigationDiscoverySouth.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +InvestigationDiscoveryWest.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +Iskushenie.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +ITVNEurope.pl,dmca,https://github.com/iptv-org/iptv/issues/1831 +ITVNExtra.pl,dmca,https://github.com/iptv-org/iptv/issues/1831 +ITVNUSA.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +JasminTV.lu,nsfw,https://github.com/iptv-org/iptv/issues/15723 +JennyForYou.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +JennyLive.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +K2.it,dmca,https://github.com/iptv-org/iptv/issues/1831 +KDOCDT6.us,dmca,https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf +Kino18Plus.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Kino18PlusInternational.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +KinoshkaAdultHD.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +KinoXXX.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +kmpChannel.jp,nsfw,https://github.com/iptv-org/iptv/issues/15723 +KOFYDT6.us,dmca,https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf +KSTVErotica.ua,nsfw,https://github.com/iptv-org/iptv/issues/15723 +KSTVFantasyArt.ua,nsfw,https://github.com/iptv-org/iptv/issues/15723 +KSTVHotFilms.ua,nsfw,https://github.com/iptv-org/iptv/issues/15723 +KSTVLesbianLove.ua,nsfw,https://github.com/iptv-org/iptv/issues/15723 +KSTVSecret18Plus.ua,nsfw,https://github.com/iptv-org/iptv/issues/15723 +KUBEDT7.us,dmca,https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf +KWHEDT3.us,dmca,https://github.com/iptv-org/iptv/issues/9729 +Legal.si,nsfw,https://github.com/iptv-org/iptv/issues/15723 +LEOTV.cz,nsfw,https://github.com/iptv-org/iptv/issues/15723 +LEOTVGOLD.cz,nsfw,https://github.com/iptv-org/iptv/issues/15723 +LEOTVHD.cz,nsfw,https://github.com/iptv-org/iptv/issues/15723 +LibertyErotikaFHD.uk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Living.nz,dmca,https://github.com/iptv-org/iptv/issues/1831 +LocalNowBergenCounty.us,dmca,https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf +LocalNowLongIsland.us,dmca,https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf +LocalNowManhattan.us,dmca,https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf +LocalNowNewburgh.us,dmca,https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf +LocalNowNewYorkCity.us,dmca,https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf +LocalNowWhitePlains.us,dmca,https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf +LohasChannel.tw,nsfw,https://github.com/iptv-org/iptv/issues/15723 +LustPur.de,nsfw,https://github.com/iptv-org/iptv/issues/15723 +MagnoliaNetworkEast.us,dmca,https://github.com/iptv-org/iptv/issues/5994 +MagnoliaNetworkWest.us,dmca,https://github.com/iptv-org/iptv/issues/5994 +MaleflixxxTelevision.ca,nsfw,https://github.com/iptv-org/iptv/issues/15723 +ManX.be,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Match.ru,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +MatchFutbol1.ru,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +MatchFutbol2.ru,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +MatchFutbol3.ru,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +MatchPremier.ru,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +MeidenvanHollandHard.nl,nsfw,https://github.com/iptv-org/iptv/issues/15723 +MetArtHD.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +MiamiTV.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +MiamiTVLatino.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +MiamiTVMexico.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Midnight.kr,nsfw,https://github.com/iptv-org/iptv/issues/15723 +MidnightBlue.jp,nsfw,https://github.com/iptv-org/iptv/issues/15723 +MilfTVHD.si,nsfw,https://github.com/iptv-org/iptv/issues/15723 +MIxxxHD.si,nsfw,https://github.com/iptv-org/iptv/issues/15723 +MolaTV1.id,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +MolaTV2.id,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +MotorTrend.it,dmca,https://github.zendesk.com/attachments/token/r5abHyVOYbswCkNSmo67CP0Px/?name=2022-02-01-nagra-2.rtf +MotorTrendHD.it,dmca,https://github.zendesk.com/attachments/token/r5abHyVOYbswCkNSmo67CP0Px/?name=2022-02-01-nagra-2.rtf +MyCamTVAnal.cy,nsfw,https://github.com/iptv-org/iptv/issues/15723 +MyCamTVArab.cy,nsfw,https://github.com/iptv-org/iptv/issues/15723 +MyCamTVAsian.cy,nsfw,https://github.com/iptv-org/iptv/issues/15723 +MyCamTVBigAss.cy,nsfw,https://github.com/iptv-org/iptv/issues/15723 +MyCamTVBigTits.cy,nsfw,https://github.com/iptv-org/iptv/issues/15723 +MyCamTVBlonde.cy,nsfw,https://github.com/iptv-org/iptv/issues/15723 +MyCamTVBlowjob.cy,nsfw,https://github.com/iptv-org/iptv/issues/15723 +MyCamTVBrunette.cy,nsfw,https://github.com/iptv-org/iptv/issues/15723 +MyCamTVEbony.cy,nsfw,https://github.com/iptv-org/iptv/issues/15723 +MyCamTVLatina.cy,nsfw,https://github.com/iptv-org/iptv/issues/15723 +MyCamTVMedium.cy,nsfw,https://github.com/iptv-org/iptv/issues/15723 +MyCamTVMILF.cy,nsfw,https://github.com/iptv-org/iptv/issues/15723 +MyCamTVSkinny.cy,nsfw,https://github.com/iptv-org/iptv/issues/15723 +MyCamTVSquirt.cy,nsfw,https://github.com/iptv-org/iptv/issues/15723 +MyCamTVTeen.cy,nsfw,https://github.com/iptv-org/iptv/issues/15723 +MyCamTVWhite.cy,nsfw,https://github.com/iptv-org/iptv/issues/15723 +MyCamTVYoung.cy,nsfw,https://github.com/iptv-org/iptv/issues/15723 +N1.ba,dmca,https://github.com/iptv-org/iptv/issues/6486 +N1.hr,dmca,https://github.com/iptv-org/iptv/issues/6486 +N1.rs,dmca,https://github.com/iptv-org/iptv/issues/6486 +N1HD.ba,dmca,https://github.com/iptv-org/iptv/issues/6486 +N1HD.hr,dmca,https://github.com/iptv-org/iptv/issues/6486 +N1HD.rs,dmca,https://github.com/iptv-org/iptv/issues/6486 +Naughty.si,nsfw,https://github.com/iptv-org/iptv/issues/15723 +NetXXL.si,nsfw,https://github.com/iptv-org/iptv/issues/15723 +NightClub.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +NovaSport.bg,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +NovaSport.rs,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +NovaSport1.cz,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +NovaSport2.cz,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +NovaSport3.cz,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +NovaSport4.cz,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +Novasports1.gr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +Novasports2.gr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +Novasports3.gr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +Novasports4.gr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +Novasports5.gr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +Novasports6.gr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +Nove.it,dmca,https://github.com/iptv-org/iptv/issues/1831 +NoveHD.it,dmca,https://github.com/iptv-org/iptv/issues/1831 +NovePlus1.it,dmca,https://github.com/iptv-org/iptv/issues/1831 +NuartTV.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Olala.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +One.il,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +OrangeSport1.ro,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +OrangeSport2.ro,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +OrangeSport3.ro,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +OrangeSport4.ro,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +OSNMoviesPremiere.ae,nsfw,https://github.com/iptv-org/iptv/issues/15723 +OursHD1.tw,nsfw,https://github.com/iptv-org/iptv/issues/15723 +OursHD2.tw,nsfw,https://github.com/iptv-org/iptv/issues/15723 +OursHD3.tw,nsfw,https://github.com/iptv-org/iptv/issues/15723 +OWN.ca,dmca,https://github.com/iptv-org/iptv/issues/1831 +OWNEast.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +OWNWest.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +OXAHHD.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PandoraPerfectHD.tw,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PandoraPink.tw,nsfw,https://github.com/iptv-org/iptv/issues/15723 +ParadiseTV.jp,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PassieXXX.nl,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PassionXXX.nl,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PassionXXX2.nl,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Pattrn.us,dmca,https://github.com/iptv-org/iptv/issues/9729 +PenthouseAfterMidnight.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PenthouseBlack.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PenthouseGold.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PenthouseHD1.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PenthouseHD2.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PenthouseNaughtyNights.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PenthousePassion.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PenthousePassionHD.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PenthouseQuickies.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PenthouseRealityTV.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PenthouseTV.ca,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PenthouseTV.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PenthouseTVMonthlyOffer.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PhoenixMarieTV.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PinkOTV.it,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PlayboyChannel.jp,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PlayboyTV.br,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PlayboyTV.kr,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PlayboyTV.uk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PlayboyTV.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PlayboyTVAsia.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PlayboyTVenEspanol.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PlayboyTVEurope.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PlayboyTVIberia.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PlayboyTVLatinAmerica.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PlayboyTVLatinAmericaHD.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PlayboyTVMonthlyOffer.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PlayHouseHD.si,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PlaymenTV.ca,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Pogo.in,dmca,https://github.com/iptv-org/iptv/issues/16839 +PornhubTV.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PPTV.th,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +PrimaSport1.ro,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +PrimaSport2.ro,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +PrimaSport3.ro,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +PrimaSport4.ro,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +PrivateSpice.fr,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PrivateTV.nl,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PrivateTVHD.nl,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PublicAgent.ca,nsfw,https://github.com/iptv-org/iptv/issues/15723 +PureBabes.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +QUBEAdultFilms.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Quest.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +Quest.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +QuestHD.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +QuestPlus1.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +QuestRed.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +QuestRedPlus1.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +RainbowChannel.jp,nsfw,https://github.com/iptv-org/iptv/issues/15723 +RainbowChannel.tw,nsfw,https://github.com/iptv-org/iptv/issues/15723 +RealityKingsHD.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +RealityKingsTV.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +RealTime.it,dmca,https://github.com/iptv-org/iptv/issues/1831 +RealTimeAfrica.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +RealTimeHD.it,dmca,https://github.com/iptv-org/iptv/issues/1831 +RealTimePlus1.it,dmca,https://github.com/iptv-org/iptv/issues/1831 +RedCherry.jp,nsfw,https://github.com/iptv-org/iptv/issues/15723 +RedHotTV.ca,nsfw,https://github.com/iptv-org/iptv/issues/15723 +RedlightHD.nl,nsfw,https://github.com/iptv-org/iptv/issues/15723 +RedLips.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +REDxxxHD.si,nsfw,https://github.com/iptv-org/iptv/issues/15723 +RKPrime.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +RKTV.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Russiannight.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +RussiannightHD.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +S66Cams.uk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +SABCSport.za,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SAT1.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SatisfactionHD.lu,nsfw,https://github.com/iptv-org/iptv/issues/15723 +SCT.it,nsfw,https://github.com/iptv-org/iptv/issues/15723 +SetantaSportsGeorgia.ge,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SetantaSportsPlusGeorgia.ge,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SetantaSportsUkraine.ua,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SexArt.cy,nsfw,https://github.com/iptv-org/iptv/issues/15723 +SexationHD.si,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Sexprive.br,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Sextosenso.it,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Sextreme.br,nsfw,https://github.com/iptv-org/iptv/issues/15723 +SexWithMuslims.cz,nsfw,https://github.com/iptv-org/iptv/issues/15723 +SexyHot.br,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Shalun.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +ShalunHD.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Silk.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +SINematica.uk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +SkinemaxHD.ca,nsfw,https://github.com/iptv-org/iptv/issues/15723 +SKYHIGHSEXVR.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +SkyNews.uk,dmca,https://github.com/iptv-org/iptv/issues/7314 +SkyNewsHD.uk,dmca,https://github.com/iptv-org/iptv/issues/7314 +SkyNewsInternational.uk,dmca,https://github.com/iptv-org/iptv/issues/7314 +SkySport.it,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport1.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport10.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport10.it,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport10HD.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport11.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport11.it,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport12.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport13.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport14.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport1HD.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport2.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport2.it,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport24.it,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport24HD.it,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport2HD.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport2HD.it,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport3.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport3.it,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport3HD.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport3HD.it,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport4.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport4.it,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport4HD.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport4K.it,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport5.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport5.it,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport5HD.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport6.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport6.it,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport6HD.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport7.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport7.it,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport7HD.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport8.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport8.it,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport8HD.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport9.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport9.it,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySport9HD.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportAction.it,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportArena.it,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportArenaHD.it,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportBar1.it,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportBar2.it,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportBar3.it,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportBundesliga1.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportBundesliga10.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportBundesliga10HD.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportBundesliga1HD.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportBundesliga2.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportBundesliga2HD.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportBundesliga3.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportBundesliga3HD.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportBundesliga4.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportBundesliga4HD.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportBundesliga5.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportBundesliga5HD.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportBundesliga6.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportBundesliga6HD.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportBundesliga7.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportBundesliga7HD.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportBundesliga8.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportBundesliga8HD.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportBundesliga9.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportBundesliga9HD.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportBundesligaUHD.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportCalcio.it,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportCalcioHD.it,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportFootball.it,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportFootballHD.it,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportHD.it,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportKompakt1.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportKompakt2.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportKompakt3.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportKompakt4.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportKompakt5.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySports1.mx,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySports16.mx,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySports2.mx,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySports21.mx,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySports24.mx,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySports3.mx,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySports34.mx,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySports6.mx,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySports8.mx,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySports9.mx,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportsFootball.uk,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportsFootballHD.uk,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportsMainEvent.uk,dmca,https://github.com/iptv-org/iptv/issues/6973 +SkySportsMainEventHD.uk,dmca,https://github.com/iptv-org/iptv/issues/6973 +SkySportsMix.uk,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportsMixHD.uk,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportsPremierLeague.uk,dmca,https://github.com/iptv-org/iptv/issues/6973 +SkySportsPremierLeagueHD.uk,dmca,https://github.com/iptv-org/iptv/issues/6973 +SkySportUHD.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportUno.it,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkySportUnoHD.it,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkyTG24.it,dmca,https://github.com/iptv-org/iptv/pull/2294 +SkyTG24Eventi.it,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkyTG24HD.it,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SkyTG24PrimoPiano.it,dmca,https://github.com/iptv-org/iptv/pull/2294 +SonseeTV1.tw,nsfw,https://github.com/iptv-org/iptv/issues/15723 +SonseeTV2.tw,nsfw,https://github.com/iptv-org/iptv/issues/15723 +SonseeTV3.tw,nsfw,https://github.com/iptv-org/iptv/issues/15723 +SonseeTV4.tw,nsfw,https://github.com/iptv-org/iptv/issues/15723 +SonyMovies.us,dmca,https://github.com/iptv-org/iptv/issues/17874 +Splash.jp,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Sport1.de,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SportKlub1.hr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SportKlub1.rs,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SportKlub2.hr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SportKlub2.rs,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SportKlub3.hr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SportKlub3.rs,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SportKlub4.hr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SportKlub4.rs,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SportKlub5.hr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SportKlub5.rs,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SportKlub6.hr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SportKlub6.rs,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SportKlubHD.rs,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SportKlubStart.rs,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SportTV1.si,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SportTV2.si,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SportTV3.si,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SunBeachTV.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +SuperONE.hu,nsfw,https://github.com/iptv-org/iptv/issues/15723 +SuperONEHD.hu,nsfw,https://github.com/iptv-org/iptv/issues/15723 +SuperSport1.al,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SuperSport2.al,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SuperSport3.al,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SuperSport4.al,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SuperSport5.al,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SuperSport6.al,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SuperSport7.al,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SuperSportKosova1.xk,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SuperSportKosova2.xk,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +SuperSportKosova3.xk,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +TAPSports.ph,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +TBSEast.us,dmca,https://github.com/iptv-org/iptv/issues/16839 +TBSWest.us,dmca,https://github.com/iptv-org/iptv/issues/16839 +TCMEast.us,dmca,https://github.com/iptv-org/iptv/issues/16839 +TCMWest.us,dmca,https://github.com/iptv-org/iptv/issues/16839 +TelevisionX.uk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +TheGrioTV.us,dmca,https://github.com/iptv-org/iptv/issues/9729 +TheWeatherChannel.us,dmca,https://github.com/iptv-org/iptv/issues/9729 +Tiny4K.uk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +TivibuSpor.tr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +TivibuSpor2.tr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +TivibuSpor3.tr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +TivibuSpor4.tr,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +TLC.ar,dmca,https://github.com/iptv-org/iptv/issues/1831 +TLC.at,dmca,https://github.com/iptv-org/iptv/issues/1831 +TLC.au,dmca,https://github.com/iptv-org/iptv/issues/1831 +TLC.br,dmca,https://github.com/iptv-org/iptv/issues/1831 +TLC.de,dmca,https://github.com/iptv-org/iptv/issues/1831 +TLC.dk,dmca,https://github.com/iptv-org/iptv/issues/1831 +TLC.fi,dmca,https://github.com/iptv-org/iptv/issues/1831 +TLC.hu,dmca,https://github.com/iptv-org/iptv/issues/1831 +TLC.in,dmca,https://github.com/iptv-org/iptv/issues/1831 +TLC.mx,dmca,https://github.com/iptv-org/iptv/issues/1831 +TLC.nl,dmca,https://github.com/iptv-org/iptv/issues/1831 +TLC.no,dmca,https://github.com/iptv-org/iptv/issues/1831 +TLC.nz,dmca,https://github.com/iptv-org/iptv/issues/1831 +TLC.pl,dmca,https://github.com/iptv-org/iptv/issues/1831 +TLC.pt,dmca,https://github.com/iptv-org/iptv/issues/1831 +TLC.ro,dmca,https://github.com/iptv-org/iptv/issues/1831 +TLC.ru,dmca,https://github.com/iptv-org/iptv/issues/1831 +TLC.se,dmca,https://github.com/iptv-org/iptv/issues/1831 +TLC.tr,dmca,https://github.com/iptv-org/iptv/issues/1831 +TLC.tw,dmca,https://github.com/iptv-org/iptv/issues/1831 +TLC.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +TLCAfrica.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +TLCArabia.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +TLCBalkan.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +TLCEast.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +TLCHD.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +TLCLatinAmerica.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +TLCPanregional.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +TLCPlus1.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +TLCPlus2.au,dmca,https://github.com/iptv-org/iptv/issues/1831 +TLCSouth.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +TLCSoutheastAsia.sg,dmca,https://github.com/iptv-org/iptv/issues/1831 +TLCWest.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +TNTEast.us,dmca,https://github.com/iptv-org/iptv/issues/16839 +TNTSports.br,dmca,https://github.com/iptv-org/iptv/issues/16839 +TNTSports1.uk,dmca,https://github.com/iptv-org/iptv/issues/6973 +TNTSports10.uk,dmca,https://github.com/iptv-org/iptv/issues/6973 +TNTSports1HD.uk,dmca,https://github.com/iptv-org/iptv/issues/6973 +TNTSports2.br,dmca,https://github.com/iptv-org/iptv/issues/16839 +TNTSports2.uk,dmca,https://github.com/iptv-org/iptv/issues/6973 +TNTSports2HD.uk,dmca,https://github.com/iptv-org/iptv/issues/6973 +TNTSports3.br,dmca,https://github.com/iptv-org/iptv/issues/16839 +TNTSports3.uk,dmca,https://github.com/iptv-org/iptv/issues/6973 +TNTSports3HD.uk,dmca,https://github.com/iptv-org/iptv/issues/6973 +TNTSports4.br,dmca,https://github.com/iptv-org/iptv/issues/16839 +TNTSports4.uk,dmca,https://github.com/iptv-org/iptv/issues/6973 +TNTSports4HD.uk,dmca,https://github.com/iptv-org/iptv/issues/6973 +TNTSports5.br,dmca,https://github.com/iptv-org/iptv/issues/16839 +TNTSports5.uk,dmca,https://github.com/iptv-org/iptv/issues/6973 +TNTSports6.uk,dmca,https://github.com/iptv-org/iptv/issues/6973 +TNTSports7.uk,dmca,https://github.com/iptv-org/iptv/issues/6973 +TNTSports8.uk,dmca,https://github.com/iptv-org/iptv/issues/6973 +TNTSports9.uk,dmca,https://github.com/iptv-org/iptv/issues/6973 +TNTSportsBoxOffice.uk,dmca,https://github.com/iptv-org/iptv/issues/6973 +TNTSportsBoxOffice2.uk,dmca,https://github.com/iptv-org/iptv/issues/6973 +TNTSportsBoxOffice2HD.uk,dmca,https://github.com/iptv-org/iptv/issues/6973 +TNTSportsBoxOfficeHD.uk,dmca,https://github.com/iptv-org/iptv/issues/6973 +TNTSportsUltimate.uk,dmca,https://github.com/iptv-org/iptv/issues/6973 +TNTWest.us,dmca,https://github.com/iptv-org/iptv/issues/16839 +TransAngels.ca,nsfw,https://github.com/iptv-org/iptv/issues/15723 +TravelChannel.au,dmca,https://github.com/iptv-org/iptv/issues/1831 +TravelChannel.in,dmca,https://github.com/iptv-org/iptv/issues/1831 +TravelChannel.pl,dmca,https://github.com/iptv-org/iptv/issues/1831 +TravelChannel.tw,dmca,https://github.com/iptv-org/iptv/issues/1831 +TravelChannelEast.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +TravelChannelEMEA.uk,dmca,https://github.com/iptv-org/iptv/issues/1831 +TravelChannelSoutheastAsia.sg,dmca,https://github.com/iptv-org/iptv/issues/1831 +TravelChannelWest.us,dmca,https://github.com/iptv-org/iptv/issues/1831 +TrueAmateurs.ca,nsfw,https://github.com/iptv-org/iptv/issues/15723 +TrueAmateurs.uk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +truTVEast.us,dmca,https://github.com/iptv-org/iptv/issues/16839 +truTVWest.us,dmca,https://github.com/iptv-org/iptv/issues/16839 +TSN1.mt,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +TSN2.mt,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +TSN3.mt,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +TSN4.mt,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +TSN5.mt,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +TSN6.mt,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +TSN7.mt,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +TSN8.mt,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +TTV.pl,dmca,https://github.com/iptv-org/iptv/issues/1831 +TUSHY.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +TUSHYRAW.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +TV3Sport.dk,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +TVN.pl,dmca,https://github.com/iptv-org/iptv/issues/1831 +TVN24.pl,dmca,https://github.com/iptv-org/iptv/issues/1831 +TVN24BiS.pl,dmca,https://github.com/iptv-org/iptv/issues/1831 +TVN7.pl,dmca,https://github.com/iptv-org/iptv/issues/1831 +TVNFabula.pl,dmca,https://github.com/iptv-org/iptv/issues/1831 +TVNorge.no,dmca,https://github.com/iptv-org/iptv/issues/1831 +TVNStyle.pl,dmca,https://github.com/iptv-org/iptv/issues/1831 +TVNTurbo.pl,dmca,https://github.com/iptv-org/iptv/issues/1831 +TVP1.pl,dmca,https://github.com/iptv-org/iptv/issues/6973 +TVPSport.pl,dmca,https://github.com/iptv-org/iptv/issues/6973 +TVVarzish.tj,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +VanillaSkyChannel.jp,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Venus.ar,nsfw,https://github.com/iptv-org/iptv/issues/15723 +VENUS.jp,nsfw,https://github.com/iptv-org/iptv/issues/15723 +VenusHD.ar,nsfw,https://github.com/iptv-org/iptv/issues/15723 +VERAPORNGROUPSEX1.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +VERAPORNGROUPSEX2.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Viki.kr,nsfw,https://github.com/iptv-org/iptv/issues/15723 +VisitXTV.nl,nsfw,https://github.com/iptv-org/iptv/issues/15723 +VividREDHD.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +VividTouch.uk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +VividTV.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +VividTVEurope.uk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +VividTVMonthlyOffer.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +VixenHD.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +VixenTV.ca,nsfw,https://github.com/iptv-org/iptv/issues/15723 +VOX.no,dmca,https://github.com/iptv-org/iptv/issues/1831 +VSport1.fi,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +VSport1.no,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +VSport1.se,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +VSport2.fi,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +VSport2.no,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +VSport3.no,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +VSportExtra.se,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +VSportFootball.se,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +VSportLive1.se,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +VSportLive2.se,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +VSportLive3.se,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +VSportLive4.se,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +VSportLive5.se,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +VSportPlus.fi,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +VSportPlus.no,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +VSportPremium.se,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +VSportUltraHD.se,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +VTVCab1.vn,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +VTVCab7.vn,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +W14DKD4.us,dmca,https://github.com/iptv-org/iptv/issues/9729 +WDPNDT7.us,dmca,https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf +WeLiveTogether.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +WhiteBoxxx.ro,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Wicked.us,nsfw,https://github.com/iptv-org/iptv/issues/15723 +WNWTLD1.us,dmca,https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf +WRJKLP3.us,dmca,https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf +X1.al,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Xee.dk,dmca,https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md +XMO.nl,nsfw,https://github.com/iptv-org/iptv/issues/15723 +XpandedTV.uk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +XXL.fr,nsfw,https://github.com/iptv-org/iptv/issues/15723 +XXXCartoons.de,nsfw,https://github.com/iptv-org/iptv/issues/15723 +XXXLovesBerryHD.ru,nsfw,https://github.com/iptv-org/iptv/issues/15723 +XXXTazyHD.si,nsfw,https://github.com/iptv-org/iptv/issues/15723 +XYmax.uk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +XYmaxHD.uk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +XYmix.uk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +XYmixHD.uk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +XYplus.uk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +XYplusHD.uk,nsfw,https://github.com/iptv-org/iptv/issues/15723 +Zaptv.jp,nsfw,https://github.com/iptv-org/iptv/issues/15723 \ No newline at end of file From b7734a3b25f211f2eb2b20a7a93d232321ac3661 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Mon, 24 Feb 2025 13:14:42 +0300 Subject: [PATCH 5/5] Update CONTRIBUTING.md --- CONTRIBUTING.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 41db7d7c..1f94551c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -107,6 +107,7 @@ List of channels blocked at the request of copyright holders. | Field | Description | Required | Example | | ------- | ----------------------------------------------- | -------- | --------------------------------- | | channel | Channel ID | Required | `AnimalPlanetAfrica.us` | +| reason | Reason for blocking | Required | `dmca` | | ref | Link to removal request or DMCA takedown notice | Required | `https://example.com/issues/0000` | ## Channel Logo Guidelines