Files
epg/sites/entertainment.ie/__data__/no-content.html
2023-06-28 23:39:03 +03:00

1878 lines
150 KiB
HTML

<!DOCTYPE html>
<html lang="en" >
<head>
<title>TV Channel listings | TV Guide - RTE, BBC, TG4, TV3, UTV, Sky...</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Entertainment.ie, complete TV listings guide, Soap Watch, Recommended TV hightlights, Whats on now, TV Tonight, TV Trailers and clips, trending TV">
<meta name="keywords" content="entertainment, ireland, competitions, cinema, What&#039;s on now, TV listing, TV guide, TV Schedule, TV reminders, interactive, on demand, live tv, watch tv, tv trailer, TV tonight,RTE 1, RTE 2, BBC 1, BBC 2, TG4, TV3, UTV, Sky, Sky Atlantic, Soap watch, TV news, Sports, Drama, Movies, Recommended viewing, Programme schedules">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#FF5700">
<meta name="author" content="Entertainment.ie">
<meta property="dfp" content="4844766/Entertainment.ie_New" />
<meta property="dfpei" content="4844766/ei" />
<meta name="revised" content="28/06/2023 20:43:35">
<meta property="dfpSection" content="TV" />
<link rel="apple-touch-icon" href="https://entertainment.ie/images/apple-touch-icon.png">
<link rel="icon" sizes="192x192" href="https://entertainment.ie/images/android-192x192.png">
<meta name="robots" content="index, follow">
<meta property="fb:app_id" content="2788711801154650" />
<meta name="powered-by" content="Packed.House (https://www.packed.house/)" />
<link rel="canonical" href="https://entertainment.ie/tv/rte/" />
<meta property='og:title' content="TV Channel listings | TV Guide - RTE, BBC, TG4, TV3, UTV, Sky...">
<meta property='og:description' content="Entertainment.ie, complete TV listings guide, Soap Watch, Recommended TV hightlights, Whats on now, TV Tonight, TV Trailers and clips, trending TV">
<meta property='og:type' content="article">
<meta property='og:url' content="https://entertainment.ie/tv/rte/">
<meta property='og:site_name' content="Entertainment.ie">
<meta property='og:image' content="https://entertainment.ie/images/entertainment-ie.png" />
<meta property="og:image:type" content="image/jpeg" />
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@entertainmentIE">
<meta name="twitter:url" content="https://entertainment.ie/tv/rte">
<meta name="twitter:title" content="TV Channel listings | TV Guide - RTE, BBC, TG4, TV3, UTV, Sky...">
<meta name="twitter:description" content="Entertainment.ie, complete TV listings guide, Soap Watch, Recommended TV hightlights, Whats on now, TV Tonight, TV Trailers and clips, trending TV">
<meta name="twitter:image" content="https://entertainment.ie/images/entertainment-ie.png">
<script>
var consentManager = {
cmpProcessed: false,
vendorsConsent: {
google: {
id: 755,
isAllowed: false
}
},
nonIabVendorsConsent: {
facebook: {
id: 16,
isAllowed: false,
},
twitter: {
id: 17,
isAllowed: false,
},
xtremepush: {
id: 2,
isAllowed: false,
}
},
permutive: {
isAllowed: false,
},
xtremepush: {
isAllowed: false,
},
consentString: "",
sentEventFbPixel: false,
sentEventTwPixel: false,
limit: 150,
setCookie: function(name, value, expiry_days) {
var d = new Date();
d.setTime(d.getTime() + (expiry_days*24*60*60*1000));
var expires = "expires="+ d.toUTCString();
document.cookie = name + "=" + JSON.stringify(value) + ";" + expires + ";path=/";
},
setCookieString: function(name, value, expiry_days) {
var d = new Date();
d.setTime(d.getTime() + (expiry_days*24*60*60*1000));
var expires = "expires="+ d.toUTCString();
document.cookie = name + "=" + escape(value) + ";" + expires + ";path=/";
},
getCookie: function(name) {
var name = name + "=";
var decodedCookie = decodeURIComponent(document.cookie);
var ca = decodedCookie.split(';');
for(var i = 0; i <ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ') {
c = c.substring(1);
}
if (c.indexOf(name) == 0) {
return c.substring(name.length, c.length);
}
}
return "";
},
deleteCookie: function(name) {
document.cookie = name + "=;expires=Thu, 01 Jan 1970 00:00:00 GMT";
return "";
},
/**
* Is a given feature allowed to run, based on user consent settings?
*
* @param name
*
* @return Boolean
*/
isAllowed: function(name) {
if (name == 'permutive') {
return this.permutive.isAllowed;
} else if (name == 'xtremepush') {
return this.xtremepush.isAllowed;
} else if (this.nonIabVendorsConsent[name] != undefined) {
return this.nonIabVendorsConsent[name].isAllowed;
} else if (this.vendorsConsent[name] != undefined) {
return this.vendorsConsent[name].isAllowed;
} else {
console.log('Unknown permission: ' + name);
return false;
}
},
trackPublisherConsentLevel: function (consents) {
var total = false;
var partial = false;
var length = Object.keys(consents).length;
if (length > 0) {
total = true;
for (var i = 1; i <= length; i++) {
if (!consents[i]) {
total = false;
} else if (!total) {
partial = true;
break;
}
}
}
dataLayer.push({
'event':'ConsentPublisher',
'consentPublisher': total ? 'Total' : (partial ? 'Partial' : 'None')
});
return total;
},
trackVendorConsentLevel: function (consents) {
var total = false;
var partial = false;
var length = Object.keys(consents).length;
if (length > 0) {
total = true;
for (var i = 1; i <= length; i++) {
if (!consents[i]) {
total = false;
} else if (!total) {
partial = true;
break;
}
}
}
dataLayer.push({
'event':'ConsentVendor',
'consentVendor': total ? 'Total' : (partial ? 'Partial' : 'None')
});
return total;
},
setXtremepushConsent: function (value) {
if (typeof ga === 'function') {
xtremepush('set','subscription', value);
} else {
setTimeout(function() {
this.setXtremepushConsent(value);
}, 250);
}
},
hasBeenProcessed: function() {
return this.cmpProcessed;
},
/**
* Are we serving non-personalised ads?
* DFP syntax requires true for non-personalised, but we have isAllowed above.
* Littering the code with setNonPersonalised(!gdpr.isAllowed('dfp')) feels like
* an accident waiting to happen, so add a convenience wrapper here.
*
* @return int
*/
isServingNonPersonalisedAds: function() {
// Needs to be int, not boolean for dfp
if (this.isAllowed('google')) {
return false;
}
return true;
},
setConsentString: function (consentData) {
if (consentData) {
this.consentString = consentData;
localStorage.setItem('_cs', consentData);
}
},
getConsentString: function () {
return localStorage.getItem('_cs');
//return this.consentString;
},
isFromAmpPage: function () {
var regex = new RegExp("https?://(.*?)/amp/(.*?)-([0-9]+)(.*)", 'i');
return document.referrer.match(regex);
},
isSocialMediaReferrer: function(referrer) {
var twitter = new RegExp('(.*?)twitter(.*?)');
if (twitter.exec(referrer) != null) {
return true;
} else if (referrer == 't.co') {
return true;
}
return false
},
renderAds: function() {
if (window.cmp_processed) {
return;
}
if (typeof(window.dfpManager) !== 'undefined') {
//request has staging, adtest
const urlParams = new URLSearchParams(window.location.search);
const adtest = urlParams.get('adtest');
let staging = null;
window.dfpManager.start(consentManager.isServingNonPersonalisedAds(), adtest, staging);
window.cmp_processed = true;
}
if (typeof(googletag.pubads) === 'undefined') {
setTimeout(self.renderAds, 250);
return;
}
googletag.pubads().enableSingleRequest();
googletag.pubads().setPrivacySettings({nonPersonalizedAds: consentManager.isServingNonPersonalisedAds()});
googletag.pubads().refresh();
window.cmp_processed = true;
},
isEligible: function () {
var self = this;
var referrer = document.createElement('a');
referrer.href = document.referrer;
if ((self.isSocialMediaReferrer(referrer.hostname) && self.getCookie('social_referer') === "") ||
self.isFromAmpPage()) {
self.setCookie('social_referer', referrer.hostname, 7);
}
return (self.isSocialMediaReferrer(referrer.hostname) === false
&& self.getCookie('social_referer') === "");
},
setConsents: function(name, consent) {
if (this.vendorsConsent[name] == undefined) {
return false;
}
// Undefined consent value? Let's set it to false
if (consent === undefined) {
consent = false;
}
return this.vendorsConsent[name].isAllowed = consent;
},
setUserConsent: function (tcData) {
for (const [key, vendor] of Object.entries(this.vendorsConsent)) {
if (tcData.vendor.consents[vendor.id] == -1) {
// Vendor is not defined in vendorsConsent object or may not exists in the tcData;
continue;
}
// In the case of dfp, we need to check some publisher consents apart from the proper vendor consent
if (key == 'google') {
this.setConsents(key,
tcData.vendor.consents[vendor.id]
&& tcData.purpose.consents[1]
&& tcData.purpose.consents[3]
&& tcData.purpose.consents[4]
)
continue;
}
this.setConsents(key, tcData.vendor.consents[vendor.id]);
}
},
setNonIabConsents: function(name, consent) {
if (this.nonIabVendorsConsent[name] == undefined) {
return false;
}
return this.nonIabVendorsConsent[name].isAllowed = consent;
},
setUserNonIabConsent: function (consent) {
for (const [key, vendor] of Object.entries(this.nonIabVendorsConsent)) {
if (consent.nonIabVendorConsents[vendor.id] == undefined) {
continue;
}
this.setNonIabConsents(key, consent.nonIabVendorConsents[vendor.id]);
}
}
};
window.consentManager = consentManager;
</script>
<script type="text/javascript" async=true>
if (consentManager.isEligible()) {
var host = window.location.hostname;
var element = document.createElement('script');
var firstScript = document.getElementsByTagName('script')[0];
var url = 'https://cmp.quantcast.com'
.concat('/choice/', 'B5SB1j9zw5QGf', '/', host, '/choice.js?tag_version=V2');
var uspTries = 0;
var uspTriesLimit = 3;
element.async = true;
element.type = 'text/javascript';
element.src = url;
firstScript.parentNode.insertBefore(element, firstScript);
function makeStub() {
var TCF_LOCATOR_NAME = '__tcfapiLocator';
var queue = [];
var win = window;
var cmpFrame;
function addFrame() {
var doc = win.document;
var otherCMP = !!(win.frames[TCF_LOCATOR_NAME]);
if (!otherCMP) {
if (doc.body) {
var iframe = doc.createElement('iframe');
iframe.style.cssText = 'display:none';
iframe.name = TCF_LOCATOR_NAME;
doc.body.appendChild(iframe);
} else {
setTimeout(addFrame, 5);
}
}
return !otherCMP;
}
function tcfAPIHandler() {
var gdprApplies;
var args = arguments;
if (!args.length) {
return queue;
} else if (args[0] === 'setGdprApplies') {
if (
args.length > 3 &&
args[2] === 2 &&
typeof args[3] === 'boolean'
) {
gdprApplies = args[3];
if (typeof args[2] === 'function') {
args[2]('set', true);
}
}
} else if (args[0] === 'ping') {
var retr = {
gdprApplies: gdprApplies,
cmpLoaded: false,
cmpStatus: 'stub'
};
if (typeof args[2] === 'function') {
args[2](retr);
}
} else {
if(args[0] === 'init' && typeof args[3] === 'object') {
args[3] = { ...args[3], tag_version: 'V2' };
}
queue.push(args);
}
}
function postMessageEventHandler(event) {
var msgIsString = typeof event.data === 'string';
var json = {};
try {
if (msgIsString) {
json = JSON.parse(event.data);
} else {
json = event.data;
}
} catch (ignore) {}
var payload = json.__tcfapiCall;
if (payload) {
window.__tcfapi(
payload.command,
payload.version,
function(retValue, success) {
var returnMsg = {
__tcfapiReturn: {
returnValue: retValue,
success: success,
callId: payload.callId
}
};
if (msgIsString) {
returnMsg = JSON.stringify(returnMsg);
}
if (event && event.source && event.source.postMessage) {
event.source.postMessage(returnMsg, '*');
}
},
payload.parameter
);
}
}
while (win) {
try {
if (win.frames[TCF_LOCATOR_NAME]) {
cmpFrame = win;
break;
}
} catch (ignore) {}
if (win === window.top) {
break;
}
win = win.parent;
}
if (!cmpFrame) {
addFrame();
win.__tcfapi = tcfAPIHandler;
win.addEventListener('message', postMessageEventHandler, false);
}
};
makeStub();
var uspStubFunction = function() {
var arg = arguments;
if (typeof window.__uspapi !== uspStubFunction) {
setTimeout(function() {
if (typeof window.__uspapi !== 'undefined') {
window.__uspapi.apply(window.__uspapi, arg);
}
}, 500);
}
};
var checkIfUspIsReady = function() {
uspTries++;
if (window.__uspapi === uspStubFunction && uspTries < uspTriesLimit) {
console.warn('USP is not accessible');
} else {
clearInterval(uspInterval);
}
};
if (typeof window.__uspapi === 'undefined') {
window.__uspapi = uspStubFunction;
var uspInterval = setInterval(checkIfUspIsReady, 6000);
}
// This callback is triggered on each page load.
// First time this callback is called without CMP processed, it will return an empty consent string,
// so we need to check this to avoid processing data. First load will be manage by the `addEventListener` callback.
__tcfapi('getTCData', 0, (tcData, success) => {
if (success) {
if (tcData.tcString != "") {
processCmpData(tcData);
}
}
});
// This callback is triggered when CMP interface pops up
__tcfapi('addEventListener', 0, function(tcData, success) {
if (success && tcData.eventStatus == 'useractioncomplete') {
processCmpData(tcData);
}
});
}
function processCmpData(tcData) {
// Flag that CMP has been processed.
consentManager.cmpProcessed = true;
// Permutive disabling needed?
// if (tcData.publisher.consents[1] && tcData.publisher.consents[3]) {
// consentManager.permutive.isAllowed = true;
// }
if (consentManager.isAllowed('permutive')) {
// window.localStorage.removeItem('permutive-opt-out');
} else {
// window.localStorage.setItem('permutive-opt-out', 'true');
}
if (consentManager.isAllowed('xtremepush')) {
consentManager.setXtremepushConsent(true);
}
consentManager.setUserConsent(tcData);
consentManager.setConsentString(tcData.tcString);
consentManager.trackPublisherConsentLevel(tcData.publisher.consents);
consentManager.trackVendorConsentLevel(tcData.vendor.consents);
// If Publisher Purpose 1 is revoked, don't display ads
// https://support.google.com/admanager/answer/9805023?hl=en
if (consentManager.hasBeenProcessed() && tcData.purpose.consents[1]) {
consentManager.renderAds();
}
// Facebook and Twitter are non IAB vendors, so we need to check their consents using a different callback
__tcfapi('getNonIABVendorConsents', 0, function(consent, success) {
if (success && consent.gdprApplies) {
consentManager.setUserNonIabConsent(consent);
}
})
// Let the system now we have finished with CMP
window.cmp_processed = true;
}
</script>
<script>
let slotsRefresh = [
{name: 'div-gpt-top',count: 0, inview: 0},
{name: 'div-gpt-mob-sticky-header',count: 0, inview: 0}
];
var refsource = '';
if (document.referrer.match(/^https?:\/\/([^\/]+\.)?t\.co(\/|$)/i)) {
refsource = 'twitter';
} else if (document.referrer.match(/^https?:\/\/([^\/]+\.)?facebook\.com(\/|$)/i)) {
refsource = 'facebook';
}
window.googletag = window.googletag || {cmd: []};
var dfp_targets = new Object();
var dfp_mappings = new Object();
var dfp_placements = new Object();
var dfp_sequence = new Object();
if (refsource) {
dfp_targets.socref = refsource;
}
(function() {
var gads = document.createElement('script');
gads.async = true;
gads.type = 'text/javascript';
var useSSL = 'https:' == document.location.protocol;
gads.src = (useSSL ? 'https:' : 'http:') +
'//www.googletagservices.com/tag/js/gpt.js';
var node = document.getElementsByTagName('script')[0];
node.parentNode.insertBefore(gads, node);
})();
window.cmp_processed = true;
window.dfp_refresh_required = false;
googletag.cmd.push(function() {
googletag.pubads().setForceSafeFrame(false);
//top unit
dfp_mappings.mapTop = googletag.sizeMapping()
.addSize([970, 250], [[1, 1], [970, 250], [970, 90], [728, 90]])
.addSize([728, 90], [[1, 1], [728, 90]])
.addSize([0, 0], [[1, 1], [300, 250]])
.build();
// Home page MPU top right sidebar
dfp_mappings.mapRightSidebarTop = googletag.sizeMapping()
.addSize([0, 0], [[300, 250], [300, 600]])
.build();
// top of right column on almost all landing pages
dfp_mappings.mapRightSidebarMid = googletag.sizeMapping()
.addSize([728, 90], [[300, 250], [300, 600]])
.addSize([0, 0], [[300, 250]])
.build();
// e.g. 4th in a line of articles.
dfp_mappings.mapInIndex = googletag.sizeMapping()
.addSize([0, 0], [[300, 250], 'fluid'])
.build();
// A confusing case used only on videos page pagination
dfp_mappings.mapInIndexDesktop = googletag.sizeMapping()
.addSize([970, 90], [[970, 250], [970, 90], [728, 90]])
.addSize([728, 90], [728, 90])
.build();
// in article content mpus, possibly the only non-native space where we welcome fluid?
dfp_mappings.mapInContent = googletag.sizeMapping()
.addSize([1,1], [[300, 250], 'fluid'])
.build();
//interscroller only wants 1 size ever but should we disable it in larger resolutions?
dfp_mappings.mapInterscroller = googletag.sizeMapping()
.addSize([0, 0], [[768, 1230]])
.build();
// native river ads
dfp_mappings.mapNativeRiver = googletag.sizeMapping()
.addSize([768, 200], [[310, 289], 'fluid'])
.addSize([300, 250], [[300, 250], 'fluid'])
.addSize([0, 0], [[345, 309], 'fluid'])
.build();
// native rivers ads desktop, i think used when we need different css styles for two resolutions
dfp_mappings.mapNativeRiverDesktop = googletag.sizeMapping()
.addSize([0, 0], [[300, 250], 'fluid'])
.build();
//Removed from general pages but still in use in Where to Watch Mobile
dfp_mappings.mapMobileStickyBanner = googletag.sizeMapping()
.addSize([0, 0], [320, 50])
.build();
//Currently in test mode on trending and music only
dfp_mappings.mapMobileStickyHeader = googletag.sizeMapping()
.addSize([0, 0], [320, 50])
.build();
// now and next desktop. Two slots because the css is different?
dfp_mappings.mapNowNextNativeDesktop = googletag.sizeMapping()
.addSize([640, 108], ['fluid'])
.build();
// now and next native. Two slots because the css is different?
dfp_mappings.mapNowNextNativeMobile = googletag.sizeMapping()
.addSize([0, 0], ['fluid'])
.build();
// tv listings native. Two slots because the css is different?
dfp_mappings.mapTvNativeDesktop = googletag.sizeMapping()
.addSize([0, 0], ['fluid'])
.build();
// tv listings native desktop. Two slots because the css is different?
dfp_mappings.mapTvNativeMobile = googletag.sizeMapping()
.addSize([0, 0], ['fluid'])
.build();
// cinema listings native desktop. Two slots because the css is different?
dfp_mappings.mapCinemaListingsDesktop = googletag.sizeMapping()
.addSize([0, 0], ['fluid'])
.build();
// cinema listings native mobile. Two slots because the css is different?
dfp_mappings.mapCinemaListingsMobile = googletag.sizeMapping()
.addSize([0, 0], ['fluid'])
.build();
//used between cinemas and movies on cinema times pages. I think always MPU but maybe sometimes fluid?
dfp_mappings.mapCinemaTimes = googletag.sizeMapping()
.addSize([0, 0], [[300, 250], 'fluid'])
.build();
// desktop native ad for top of cinema page ("gold spot"?) not sure i ever saw this used
dfp_mappings.mapCinemaTimesTopDesktop = googletag.sizeMapping()
.addSize([0, 0], ['fluid'])
.build();
// mobile native ad for top of cinema page ("gold spot"?) not sure i ever saw this used
dfp_mappings.mapCinemaTimesTopMobile = googletag.sizeMapping()
.addSize([0, 0], ['fluid'])
.build();
// this seems to be the ad served in the fancybox when we click on "more info" in tv listings,
// now and next, etc. why is it called Christmas?!
// ***===>>> Because it was created to be used for christmas fancybox initially. I think :-)
// we can normalize it later
dfp_mappings.mapChristmasMobile = googletag.sizeMapping()
.addSize([0, 0], [[320, 50],'fluid'])
.build();
// A selection of Native ads for desktop
dfp_mappings.mapEventNativeListingDesktop = googletag.sizeMapping()
.addSize([640, 68], ['fluid'])
.build();
dfp_mappings.mapEventNativeListingMobile = googletag.sizeMapping()
.addSize([0, 0], ['fluid'])
.build();
dfp_mappings.mapEventNativeEvents_GoldspotDesktop = googletag.sizeMapping()
.addSize([640, 68], ['fluid'])
.build();
dfp_mappings.mapEventNativeEvents_GoldspotMobile = googletag.sizeMapping()
.addSize([1,1], ['fluid'])
.build();
// MPU shown in the Where to watch Movies and TV shows
dfp_mappings.mapMoviesMPU = googletag.sizeMapping()
.addSize([0, 0], [[300, 250]])
.build();
var dfpId = document.head.querySelector("[property=dfp]").content;
var dfpEiId = document.head.querySelector("[property=dfpei]").content;
var dfpSection = document.head.querySelector("[property=dfpSection]").content;
dfp_placements.top = googletag.defineSlot(dfpId+'/'+dfpSection+'/'+dfpSection+'_Top', [1, 1], 'div-gpt-top')
.defineSizeMapping(dfp_mappings.mapTop)
.addService(googletag.pubads());
dfp_placements.outStream = googletag.defineSlot(dfpId+'/Video/Video_OutStream', [1, 1], 'div-gpt-out-stream')
.addService(googletag.pubads());
dfp_placements.oop = googletag.defineOutOfPageSlot(dfpId+'/'+dfpSection+'/'+dfpSection+'_OutOfPage', 'div-gpt-oop')
.addService(googletag.pubads());
dfp_placements.interscroller = googletag.defineSlot(dfpId+'/'+dfpSection+'/'+dfpSection+'_Interscroller', [1, 1], 'div-gpt-isc')
.defineSizeMapping(dfp_mappings.mapInterscroller)
.addService(googletag.pubads());
if (document.body.clientWidth < 576) {
dfp_placements.mobileStickyHeader = googletag.defineSlot(dfpEiId+'/ei_mobile_banner_'+dfpSection, [1, 1], 'div-gpt-mob-sticky-header')
.defineSizeMapping(dfp_mappings.mapMobileStickyHeader)
.addService(googletag.pubads());
}
dfp_targets.kvpagetype = 'listingpage';
dfp_targets.kvcategory = 'tv';
dfp_targets.kvurl = 'tv/rte';
dfp_targets.kvsubsection = 'tv-listings';
dfp_targets.kvchannel = 'rte';
let provider = new URL(window.location.href).searchParams.get("provider");
if (provider == 'custom') {
dfp_targets.kvprovider = consentManager.getCookie('customProvider');
}
if (dfp_targets.kvprovider === undefined && ['virgin-media', 'sky', 'vodafone', 'custom'].indexOf(consentManager.getCookie('providerSelection')) > -1 && provider == null) {
let cookieProvider = consentManager.getCookie('providerSelection');
if (cookieProvider == 'custom') {
cookieProvider = consentManager.getCookie('customProvider');
}
dfp_targets.kvprovider = cookieProvider;
// Force it into url for xtremepush to pick up
var qstring = window.location.search;
if (qstring.length > 0) {
qstring += '&provider='+consentManager.getCookie('providerSelection');
} else {
qstring = '?provider='+consentManager.getCookie('providerSelection');
}
window.history.pushState('', '', window.location.pathname+qstring);
}
dfp_targets.consent_string = consentManager.getConsentString();
for (var key in dfp_targets) {
if (dfp_targets.hasOwnProperty(key)) {
googletag.pubads().setTargeting(key, dfp_targets[key]);
}
}
if (!consentManager.hasBeenProcessed() && consentManager.isEligible()) {
googletag.pubads().disableInitialLoad();
window.cmp_processed = false;
window.dfp_refresh_required = true;
}
googletag.pubads().enableSingleRequest();
googletag.pubads().setPrivacySettings({nonPersonalizedAds: consentManager.isServingNonPersonalisedAds()});
googletag.pubads().collapseEmptyDivs();
googletag.pubads().addEventListener('slotRenderEnded', function(event) {renderCallback(event);});
googletag.pubads().addEventListener('impressionViewable', function(event) {viewAbilityCallback(event);});
googletag.pubads().addEventListener('slotVisibilityChanged', function(event) {visibilityCallback(event);});
googletag.enableServices();
if (document.body.clientWidth < 576) {
googletag.display("div-gpt-mob-sticky-header");
}
var visibilityCallback = function(event) {
var slot = event.slot;
var slotName = slot.getSlotElementId();
var unitIdx = slotsRefresh.findIndex(e => slotName.indexOf(e.name) !== -1);
if (unitIdx !== -1) {
slotsRefresh[unitIdx].inview = event.inViewPercentage;
// console.group('Slot Visibility', slot.getSlotElementId(), 'changed.');
// console.log('Visible area:', event.inViewPercentage + '%');
// console.groupEnd();
}
}
var renderCallback = function(event) {
if (dfp_placements.interscroller == event.slot) {
if (event.isEmpty) {
// console.log('ISC callback');
if ($("#interscroller-ad" ).length) {
// console.log('Hiding Interscroller');
$('#interscroller-ad').addClass('d-none');
}
}else{
// I can see an Interscroller, lets hide first InContent
// and update iframe style a little
setTimeout(function() {
$('#ad-in-content').first().addClass('d-none');
$("#interscroller-ad iframe").css("width", "100%");
$("#interscroller-ad iframe", function(){
$("#interscroller-ad iframe").contents().find("head")
.append($("<style type='text/css'> img{width:100% !important; height: auto !important;} </style>"));
});
}, 1000);
}
}
if (event.slot.getAdUnitPath().indexOf('_Native_Desktop') !== -1) {
setTimeout(function() {
if ($('.three-first-articles').length){
if ($('#native-desktop-container div[id^="div-gpt-native-desktop-"]').is(':visible')) {
$('.three-first-articles > div.moveable').addClass('col-md-6').removeClass('col-md-4');
$('.heading-holder + .row > div > .row.posts-block').prepend( $('.three-first-articles > div.moveable') );
if ($('.heading-holder + .row > div > .row.posts-block > div').length) {
$('.heading-holder + .row > div > .row.posts-block > div')[$('.heading-holder + .row > div > .row.posts-block > div').length - 1].remove();
}
} else {
$('#native-desktop-container').parent().parent().remove();
//$('.heading-holder + .row > div > .row.posts-block').css('background','blue');
}
}{
if ($('#native-desktop-container div[id^="div-gpt-native-desktop-"]').is(':visible')) {
if ($('#native-desktop-container ~ div').length) {
$('#native-desktop-container ~ div')[$('#native-desktop-container ~ div').length - 1].remove();
}
} else {
$('#native-desktop-container').parent().remove();
}
}
}, 1500);
}
if (event.slot.getAdUnitPath().indexOf('_Native_Desktop') !== -1) {
setTimeout(function() {
if ($('.two-first-event-articles').length){
if ($('#native-desktop-container.events div[id^="div-gpt-native-desktop-"]').is(':visible')) {
//$('.two-first-event-articles > div.moveable').addClass('col-md-6').removeClass('col-md-4');
$('.heading-holder + .row > div > .row.posts-block').propertyend( $('.two-first-event-articles > div.moveable') );
if ($('.heading-holder + .row > div > .row.posts-block > div').length) {
$('.heading-holder + .row > div > .row.posts-block > div')[$('.heading-holder + .row > div > .row.posts-block > div').length - 1].remove();
}
} else {
$('#native-desktop-container.events').parent().parent().remove();
}
}{
if ($('#native-desktop-container div[id^="div-gpt-native-desktop-"]').is(':visible')) {
if ($('#native-desktop-container ~ div').length) {
$('#native-desktop-container ~ div')[$('#native-desktop-container ~ div').length - 1].remove();
}
} else {
$('#native-desktop-container').parent().remove();
}
}
}, 1500);
}
}
var viewAbilityCallback = function(event) {
var slotView = event.slot;
var slotName = slotView.getSlotElementId();
var refreshSeconds = (slotName == 'div-gpt-mob-sticky-header' ? 5000 : 10000);
var unitIdx = slotsRefresh.findIndex(e => slotName.indexOf(e.name) !== -1);
if (unitIdx !== -1) {
if (slotsRefresh[unitIdx].count === 0) {
// console.log('==*** The ' + slotName + ' slot returned as displayed.');
slotsRefresh[unitIdx].count++;
// console.log('==*** Refreshing ' + slotName + ' in '+ refreshSeconds.toString() +' seconds');
setTimeout(function() {
if (slotsRefresh[unitIdx].inview >= 50 ) {
googletag.pubads().refresh([slotView]);
$('#div-sticky').addClass('active');
// console.log('==*** '+slotName+' has ' +slotsRefresh[unitIdx].inview+ '%');
// console.log('==*** Refreshed '+slotName+' ' +slotsRefresh[unitIdx].count+ ' time');
}
}, refreshSeconds);
}
}
}
});
/**
* Handle oop-triggered js
*/
function setBackground(data)
{
if ($(window).width() > 1280) {
if ($('#skin-wrapper').length){
var adContainer = document.getElementById('skin-wrapper');
var linkLayer = document.createElement('a');
linkLayer.setAttribute('id', 'skin-dfp');
linkLayer.setAttribute('href', data.click_tracker);
linkLayer.setAttribute('target', '_blank');
linkLayer.classList.add('active');
adContainer.appendChild(linkLayer);
var backgroundDiv = document.createElement('div');
backgroundDiv.setAttribute('id', 'div-gpt-background_skin');
linkLayer.appendChild(backgroundDiv);
var skin_img = document.createElement('img');
skin_img.setAttribute('src', data.background_url);
skin_img.setAttribute('id', 'SkinImage');
backgroundDiv.appendChild(skin_img);
if (data.impressionTracker.length) {
var impresion_DFP = document.createElement('img');
impresion_DFP.setAttribute('src', data.impressionTracker);
impresion_DFP.setAttribute('id', 'ImpressionTracker');
impresion_DFP.style.position = 'absolute';
impresion_DFP.style.bottom = 0;
backgroundDiv.appendChild(impresion_DFP);
}
if (data.thirdPartyImpressionTracker.length) {
var impresion_thirdParty = document.createElement('img');
impresion_thirdParty.setAttribute('src', data.thirdPartyImpressionTracker);
impresion_thirdParty.setAttribute('id', 'ThirdPartyImpressionTracker');
impresion_thirdParty.style.position = 'absolute';
impresion_thirdParty.style.bottom = 0;
backgroundDiv.appendChild(impresion_thirdParty);
}
// Stick skin under nav
var bottomBar = document.getElementsByClassName('bottom-bar')[0].getBoundingClientRect();
adContainer.style.top = bottomBar.top + bottomBar.height+'px';
}
}
}
</script>
<link rel="stylesheet" href="/css/app.css?id=57dddf4f17036a1f4299">
<link rel="stylesheet" href="/css/tv.css?id=9dcc26270ee207849497">
<link rel="stylesheet" href="/css/filters.css?id=a5498be4e22646d722c9">
<script async src="https://fundingchoicesmessages.google.com/i/pub-7645609775037221?ers=1" nonce="whhqsbprPa0KSoFgdjbvdQ"></script><script nonce="whhqsbprPa0KSoFgdjbvdQ">(function() {function signalGooglefcPresent() {if (!window.frames['googlefcPresent']) {if (document.body) {const iframe = document.createElement('iframe'); iframe.style = 'width: 0; height: 0; border: none; z-index: -1000; left: -1000px; top: -1000px;'; iframe.style.display = 'none'; iframe.name = 'googlefcPresent'; document.body.appendChild(iframe);} else {setTimeout(signalGooglefcPresent, 0);}}}signalGooglefcPresent();})();</script>
<!-- Data Layer -->
<script>
dataLayer=[];
dataLayer.push({
"authorName": "Entertainment.ie",
"pageTitle": "TV Channel listings | TV Guide - RTE, BBC, TG4, TV3, UTV, Sky..."
});
</script>
<!-- End Data Layer -->
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-W889X7M');</script>
<!-- End Google Tag Manager -->
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-W889X7M"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) --> <script>
window.fbAsyncInit = function() {
FB.init({
appId : 2788711801154650,
autoLogAppEvents : true,
xfbml : true,
version : 'v3.1'
});
};
if (consentManager.isAllowed('facebook')) {
(function(d, s, id){
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "https://connect.facebook.net/en_US/sdk.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
}
</script>
<div id="wrapper">
<header id="header" class="" itemscope="itemscope" itemtype="https://schema.org/WPHeader">
<div class="top-bar">
<div class="nav-opener"><a class="opener" href="#"></a></div>
<div class="container">
<strong class="logo"><a href="https://entertainment.ie/"><img src="https://entertainment.ie/images/entertainment-ie-logo2x.png" alt="Entertainment.ie" width="266" height="30"></a></strong>
<div class="header-holder">
<ul class="social-icons">
<li><a class="facebook" rel="noopener" href="https://facebook.com/entertainment.ie"><svg class="icon"><use xlink:href="#facebook"></use></svg></a></li>
<li><a class="twitter" rel="noopener" href="https://twitter.com/entertainmentIE"><svg class="icon"><use xlink:href="#twitter"></use></svg></a></li>
<li><a class="instagram" rel="noopener" href="https://instagram.com/entertainmentie"><svg class="icon"><use xlink:href="#instagram"></use></svg></a></li>
<li><a class="youtube" rel="noopener" href="https://www.youtube.com/user/Entertainmentie?sub_confirmation=1"><svg class="icon"><use xlink:href="#youtube-play"></use></svg></a></li>
</ul>
<a href="/on-demand/watchlist/" class="my-watchlist my-watchlist d-none d-md-inline-flex">My Watchlist</a>
<user-name></user-name>
</div>
</div>
</div>
<nav id="account-nav">
<btn-login class="btn-login"></btn-login>
</nav>
<div class="wrap-div">
<div class="middle-bar">
<div class="container">
<strong class="logo-icon d-none d-md-block"><a href="https://entertainment.ie/"><img src="https://entertainment.ie/images/entertainment-logo-icon2x.png" alt="Entertainment.ie"></a></strong>
<nav id="nav" role="navigation" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement">
<form method="POST" class="form-search" action="/search">
<div class="input-holder">
<input required type="search" name="q" class="form-control" value="" placeholder="Search...">
<button class="btn-search" type="submit"><svg class="icon"><use xlink:href="#search"></use></svg><span class="d-none">Search</span></button>
</div>
</form>
<ul class="nav-bar">
<li>
<a class="" href="https://entertainment.ie/">Home</a>
<ul class="seconde-level show-only-on-desktop"></ul>
</li>
<li class="show-only-on-mobile">
<a class="" href="https://entertainment.ie/on-demand/where-to-watch/?utm_source=entie&utm_medium=nav&utm_campaign=wheretowatch">Where to Watch</a>
</li>
<li>
<a class="active" href="https://entertainment.ie/tv/">TV</a>
<ul class="seconde-level tv-subnav">
<li class=""><a href="https://entertainment.ie/tv/">TV Home</a></li>
<li class="">
<a href="https://entertainment.ie/tv/all-channels/all-types/page/1/">TV Listings
</a>
</li>
<li class="filter-channels-link "><a href="https://entertainment.ie/tv/whats-on-now/">Now &amp; Next</a></li>
<li class=""><a href="https://entertainment.ie/tv/tonight/">Tonight's TV</a></li>
<li class=" active "><a href="https://entertainment.ie/tv/tv-news/">TV News</a></li>
<li class=""><a href="https://entertainment.ie/tv/todays-tv-highlights/">TV Highlights</a></li>
<li class="filter-channels-link "><a href="https://entertainment.ie/tv/soap-watch/">Soaps <span class="desk-hidden">Watch</span></a></li>
<li class="filter-channels-link "><a href="https://entertainment.ie/tv/sports/">Sports on TV</a></li>
<li class="filter-channels-link "><a href="https://entertainment.ie/tv/movies/">Movies on TV</a></li>
</ul>
</li>
<li class="">
<a class="" href="https://entertainment.ie/cinema/">Cinema</a>
<ul class="seconde-level">
<li class=""><a href="https://entertainment.ie/cinema/">Cinema Home</a></li>
<li class=" cinema-listing-link">
<a href="https://entertainment.ie/cinema/cinema-listings/">Cinema Listings
</a>
</li>
<li class=""><a href="https://entertainment.ie/movies/movie-reviews/">Movie Reviews</a></li>
<li class=""><a href="https://entertainment.ie/movies/movie-news/">Movie News</a></li>
<li class=""><a href="https://entertainment.ie/videos/trailers/">Trailers</a></li>
<li class=""><a href="https://entertainment.ie/movies/coming-soon/">Coming Soon</a></li>
<li class=""><a href="https://entertainment.ie/cinemathon/">Cinemathon</a></li>
</ul>
</li>
<li>
<a class="" href="https://entertainment.ie/on-demand/">On Demand</a>
<ul class="seconde-level">
<li class=""><a href="https://entertainment.ie/on-demand/">On Demand News</a></li>
<li class=""><a href="https://entertainment.ie/on-demand/where-to-watch/?utm_source=entie&utm_medium=nav&utm_campaign=wheretowatch">Where to Watch</a></li>
<li class=""><a href="https://entertainment.ie/on-demand/watchlist/">My Watchlist</a></li>
<li class=""><a href="https://entertainment.ie/on-demand/recommended/">Recommended</a></li>
</ul>
</li>
<li>
<a class="" href="https://entertainment.ie/movies/">Movies</a>
<ul class="seconde-level">
<li class=""><a href="https://entertainment.ie/movies/movie-reviews/">Movie Reviews</a></li>
<li class=""><a href="https://entertainment.ie/movies/movie-news/">Movie News</a></li>
<li class=""><a href="https://entertainment.ie/videos/trailers/">Trailers</a></li>
<li class=""><a href="https://entertainment.ie/movies/coming-soon/">Coming Soon</a></li>
<li class=" cinema-listing-link">
<a href="https://entertainment.ie/cinema/cinema-listings/">Cinema Listings
</a>
</li>
</ul>
</li>
<li>
<a class="" href="https://entertainment.ie/gaming/">Gaming</a>
<ul class="seconde-level">
<li class=""><a href="https://entertainment.ie/gaming/">Home</a></li>
<li class=""><a href="https://entertainment.ie/gaming/game-reviews/">Game Reviews</a></li>
</ul>
</li>
<li class="show-only-on-mobile">
<a href="https://entertainment.ie/trending/">Trending</a>
</li>
<li>
<a class="" href="https://entertainment.ie/music/">Music</a>
<ul class="seconde-level show-only-on-desktop"></ul>
</li>
<li class="d-md-none d-lg-block">
<a class="" href="https://entertainment.ie/reviews/">Reviews</a>
</li>
<li>
<a class="" href="https://entertainment.ie/events/">Events</a>
<ul class="seconde-level">
<li class=""><a href="https://entertainment.ie/events/">Home</a></li>
<li class="">
<a href="https://entertainment.ie/events/listing/all/dublin/all/">Events Listings
</a>
</li>
<li class=""><a href="https://entertainment.ie/event-news/">Event News</a></li>
<li class=""><a href="https://entertainment.ie/events/submit-listing/">Submit a Listing</a></li>
</ul>
</li>
<li class="show-only-on-mobile">
<a class="" href="https://entertainment.ie/competitions/">Competitions</a>
<ul class="seconde-level">
<li class=""><a href="https://entertainment.ie/competitions/">Competitions Home</a></li>
</ul>
</li>
<li class="show-only-on-mobile">
<a class="" href="https://entertainment.ie/photos/">Photos</a>
<ul class="seconde-level show-only-on-desktop"></ul>
</li>
<li class="show-only-on-mobile">
<a class="" href="/quizzes">Quizzes</a>
<ul class="seconde-level show-only-on-desktop"></ul>
</li>
<li class="show-only-on-mobile">
<a class="" href="https://entertainment.ie/videos/">Video</a>
<ul class="seconde-level">
<li class=""><a href="https://entertainment.ie/videos/">Home</a></li>
<li class=""><a href="https://entertainment.ie/videos/trailers/">Trailers</a></li>
<li class=""><a href="https://entertainment.ie/videos/the-filum-show/">The Filum Show</a></li>
<li class=""><a href="https://entertainment.ie/videos/the-telly-show/">The Telly Show</a></li>
<li class=""><a href="https://entertainment.ie/videos/the-thrones-show/">The Thrones Show</a></li>
<li class=""><a href="https://entertainment.ie/videos/interviews/">Interviews</a></li>
<li class=""><a href="https://entertainment.ie/videos/movies/">Movies</a></li>
<li class=""><a href="https://entertainment.ie/videos/tv/">TV</a></li>
</ul>
</li>
<li class="show-only-on-mobile">
<a class="" href="https://entertainment.ie/podcasts/">Podcasts</a>
<ul class="seconde-level">
<li class=""><a href="https://entertainment.ie/podcasts/">Podcasts Home</a></li>
<li class="">
<a href="https://entertainment.ie/podcasts/the-revisit/">The Revisit</a>
</li>
<li class="">
<a href="https://entertainment.ie/podcasts/the-filum-show/">The Filum Show</a>
</li>
<li class="">
<a href="https://entertainment.ie/podcasts/the-telly-show/">The Telly Show</a>
</li>
<li class="">
<a href="https://entertainment.ie/podcasts/on-the-line/">On The Line</a>
</li>
</ul>
</li>
<li class="show-only-on-mobile ">
<a class="auth-link" href="https://entertainment.ie/my-account/sign-in/">My Account</a>
<ul class="seconde-level">
<li><a href="https://entertainment.ie/my-account/sign-in/">Login</a></li>
<li><a href="https://entertainment.ie/my-account/">Edit details</a></li>
<li><a href="https://entertainment.ie/my-account/register/">Register</a></li>
<li><a href="https://entertainment.ie/my-account/">Customise TV Listings</a></li>
<li><a href="https://entertainment.ie/my-account/">Customise Cinemas</a></li>
<li><a href="#">Sign Out</a></li>
</ul>
</li>
<li class="dropdown ">
<a class="" href="#">More <span class="caret show-on-tablet-and-desktop"></span></a>
<ul class="seconde-level more-menu">
<li class="show-on-tablet-and-desktop">
<a href="https://entertainment.ie/trending/">Trending</a>
</li>
<li class="show-on-tablet-and-desktop">
<a class="" href="https://entertainment.ie/competitions/">Competitions</a>
</li>
<li class="show-on-tablet-and-desktop">
<a class="" href="https://entertainment.ie/photos/">Photos</a>
</li>
<li class="show-on-tablet-and-desktop">
<a class="" href="/quizzes">Quizzes</a>
</li>
<li class="show-on-tablet-and-desktop">
<a class="" href="https://entertainment.ie/videos/">Video</a>
</li>
<li class="show-on-tablet-and-desktop">
<a class="" href="https://entertainment.ie/podcasts/">Podcasts</a>
</li>
<li class="show-on-tablet-and-desktop ">
<a class="auth-link" href="https://entertainment.ie/my-account/sign-in/">My Account</a>
</li>
<li class="">
<a href="https://entertainment.ie/lotto/">Lotto</a>
</li>
<li class="">
<a href="https://entertainment.ie/content/apps/">Apps</a>
</li>
<li class="">
<a href="https://entertainment.ie/content/contact-us/">Contact Us</a>
</li>
<li class="">
<a href="https://entertainment.ie/content/meet-the-team/">Meet the Team</a>
</li>
<li class="">
<a href="https://entertainment.ie/content/general-terms/">Terms &amp; Conditions</a>
</li>
<li class="">
<a href="https://entertainment.ie/content/privacy/">Privacy Policy</a>
</li>
<li class="">
<a href="https://entertainment.ie/content/cookies/">Cookies Policy</a>
</li>
</ul>
</li>
</ul>
</nav>
<a class="search-opener" href="#">
<svg class="icon">
<use xlink:href="#search"></use>
</svg>
</a>
<form method="POST" class="search-form" action="/search">
<input required type="search" name="q" value="" class="form-control" placeholder="Search">
<button class="btn-search" type="submit">
<svg class="icon">
<use xlink:href="#search"></use>
</svg>
<span class="d-none">Search</span>
</button>
</form>
</div>
</div>
<div class="bottom-bar">
<div class="container">
<div class="slide-nav">
<div class="where-to-watch">
<a class="page-link " href="https://entertainment.ie/on-demand/where-to-watch/?utm_source=entie&utm_medium=nav&utm_campaign=wheretowatch">Where to Watch</a>
</div>
<div>
<a class="page-link active"
href="https://entertainment.ie/tv/all-channels/">TV Listings</a>
</div>
<div>
<a class="page-link filter-channels-link "
href="https://entertainment.ie/tv/whats-on-now/">Now &amp; Next</a>
</div>
<div>
<a class="page-link "
href="https://entertainment.ie/tv/tonight/">Tonight's TV</a>
</div>
<div><a class="page-link "
href="https://entertainment.ie/tv/tv-news/">TV News</a></div>
<div><a class="page-link "
href="https://entertainment.ie/tv/tv-reviews/">TV Reviews</a></div>
<div>
<a class="page-link "
href="https://entertainment.ie/tv/todays-tv-highlights/">TV Highlights</a>
</div>
<div>
<a class="page-link "
href="https://entertainment.ie/tv/movies/">Movies</a>
</div>
<div>
<a class="page-link "
href="https://entertainment.ie/tv/sports/">Sports</a>
</div>
<div>
<a class="page-link "
href="https://entertainment.ie/tv/soap-watch/">Soaps</a>
</div>
<svg class="icon">
<use xlink:href="#arrow-right"></use>
</svg>
</div>
</div>
</div>
</div>
<div class="text-center d-sm-none" id="container-div-gpt-mob-sticky-header"><div class="text-center banner d-sm-none" id="div-gpt-mob-sticky-header"></div><div id="div-sticky" class="close"><svg class="icon"><use xlink:href="#close"></use></svg></div></div>
</header>
<ads-oop></ads-oop>
<main id="main">
<div class="main-holder">
<div id="skin-wrapper" class="d-none d-md-block"></div>
<ads-top-page-desktop></ads-top-page-desktop>
<div class="container">
<div class="river-block">
<div id="video-widget-mobile" class="d-block d-sm-none" style="margin:-40px 0 10px">
<article class="post brid-widget">
<div id="mobile-bbw-container-blade" style="background: #3a3a3a;height: 0;padding-bottom: 56.3%;"></div>
<div class="video-detail style">
<h4>Videos on entertainment.ie</h4>
<strong class="title-movie">Watch the most popular videos on entertainment.ie</strong>
<a class="link" href="https://entertainment.ie/videos/">Watch More</a>
</div>
</article>
</div>
</div>
<div class="tv-filter-container">
<tv-filter
:channels ='[{&quot;id&quot;:47,&quot;slug&quot;:&quot;rte-one&quot;,&quot;order&quot;:100,&quot;external_id&quot;:&quot;143d4228-56a3-5e30-8711-9daa81c9e1f8&quot;,&quot;name&quot;:&quot;RTÉ One&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/rte-one-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:101},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:101},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:101}]},{&quot;id&quot;:48,&quot;slug&quot;:&quot;rte2&quot;,&quot;order&quot;:200,&quot;external_id&quot;:&quot;fa7bb768-4371-56fb-9baf-b5df79d58013&quot;,&quot;name&quot;:&quot;RTÉ2&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/rte2-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:102},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:102},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:102}]},{&quot;id&quot;:75,&quot;slug&quot;:&quot;virgin-media-one&quot;,&quot;order&quot;:300,&quot;external_id&quot;:&quot;20d68f4c-36f8-53a9-8dc1-62942edb4f3e&quot;,&quot;name&quot;:&quot;Virgin Media One&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/virgin-media-one-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:103},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:103},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:103}]},{&quot;id&quot;:71,&quot;slug&quot;:&quot;tg4&quot;,&quot;order&quot;:400,&quot;external_id&quot;:&quot;be8cb77d-3b9f-587e-ae82-5c61cadf2d27&quot;,&quot;name&quot;:&quot;TG4&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/tg4-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:104},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:104},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:104}]},{&quot;id&quot;:77,&quot;slug&quot;:&quot;virgin-media-two&quot;,&quot;order&quot;:500,&quot;external_id&quot;:&quot;be1b745c-ee53-56e8-925b-a89e9c018103&quot;,&quot;name&quot;:&quot;Virgin Media Two&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/virgin-media-two-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:105},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:105},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:105}]},{&quot;id&quot;:76,&quot;slug&quot;:&quot;virgin-media-three&quot;,&quot;order&quot;:600,&quot;external_id&quot;:&quot;50611520-f212-5a5e-b43d-26cca0af256c&quot;,&quot;name&quot;:&quot;Virgin Media Three&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/virgin-media-three-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:106},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:116},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:110}]},{&quot;id&quot;:163,&quot;slug&quot;:&quot;virgin-media-four&quot;,&quot;order&quot;:625,&quot;external_id&quot;:&quot;379131ee-d018-5af1-bae8-8a2e7f6e7df4&quot;,&quot;name&quot;:&quot;Virgin Media Four&quot;,&quot;logo&quot;:&quot;https:\/\/images.entertainment.ie\/storage\/lmstelevision\/tv-logos\/88ef47d067515c5f3d4ff5db0fa95569.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:148}]},{&quot;id&quot;:155,&quot;slug&quot;:&quot;virgin-media-more&quot;,&quot;order&quot;:650,&quot;external_id&quot;:&quot;6ea99f94-d96a-56e1-86ee-da0e297b7d48&quot;,&quot;name&quot;:&quot;Virgin Media More&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/lmstelevision\/tv-logos\/d663ea39299f564314a9c1fcbb06312a.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:100}]},{&quot;id&quot;:4,&quot;slug&quot;:&quot;bbc-one-ni&quot;,&quot;order&quot;:700,&quot;external_id&quot;:&quot;02c72929-e949-5e13-82be-2c3710674cff&quot;,&quot;name&quot;:&quot;BBC One NI&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/bbc-one-northern-ireland-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:108},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:141},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:108}]},{&quot;id&quot;:5,&quot;slug&quot;:&quot;bbc-two-northern-ireland&quot;,&quot;order&quot;:800,&quot;external_id&quot;:&quot;245470c0-ad75-54be-95ed-ecdb9085c849&quot;,&quot;name&quot;:&quot;BBC Two NI&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/bbc-two-northern-ireland-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:109},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:142},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:139}]},{&quot;id&quot;:164,&quot;slug&quot;:&quot;bbc-three&quot;,&quot;order&quot;:850,&quot;external_id&quot;:&quot;835250ea-7d32-54d9-a787-40c875234b59&quot;,&quot;name&quot;:&quot;BBC Three&quot;,&quot;logo&quot;:&quot;https:\/\/images.entertainment.ie\/storage\/lmstelevision\/tv-logos\/80215119ba12d8c9e7b26e5d03105f49.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:169}]},{&quot;id&quot;:3,&quot;slug&quot;:&quot;bbc-four&quot;,&quot;order&quot;:900,&quot;external_id&quot;:&quot;f2fb2e91-2578-5975-a7cc-dd048186ea52&quot;,&quot;name&quot;:&quot;BBC Four&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/bbc-four-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:117},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:833},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:124}]},{&quot;id&quot;:11,&quot;slug&quot;:&quot;channel-4&quot;,&quot;order&quot;:1000,&quot;external_id&quot;:&quot;fd66055a-5bc7-51e8-8421-df88e60c98b3&quot;,&quot;name&quot;:&quot;Channel 4&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/channel-4-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:111},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:135},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:111}]},{&quot;id&quot;:25,&quot;slug&quot;:&quot;e4&quot;,&quot;order&quot;:1100,&quot;external_id&quot;:&quot;b5442f3a-c482-50d1-96d5-f25fd16f3e37&quot;,&quot;name&quot;:&quot;E4&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/e4-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:112},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:136},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:114}]},{&quot;id&quot;:36,&quot;slug&quot;:&quot;more4&quot;,&quot;order&quot;:1200,&quot;external_id&quot;:&quot;d4e9648c-12e6-586a-9265-f2878a610884&quot;,&quot;name&quot;:&quot;More4&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/more4-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:118},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:137},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:115}]},{&quot;id&quot;:165,&quot;slug&quot;:&quot;e4-extra&quot;,&quot;order&quot;:1225,&quot;external_id&quot;:&quot;e4a58de4-249b-5f69-a678-43480b84cb14&quot;,&quot;name&quot;:&quot;E4 Extra&quot;,&quot;logo&quot;:&quot;https:\/\/images.entertainment.ie\/storage\/lmstelevision\/tv-logos\/6fa0d9865dcf40990aa82b5d7e80c833.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:138}]},{&quot;id&quot;:162,&quot;slug&quot;:&quot;4music&quot;,&quot;order&quot;:1250,&quot;external_id&quot;:&quot;a4539d2a-1cee-52f5-a00e-d68835ce3e9f&quot;,&quot;name&quot;:&quot;4Music&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/lmstelevision\/tv-logos\/6d08676be6111fd9e5bad3827adf509c.png&quot;,&quot;platforms&quot;:[]},{&quot;id&quot;:58,&quot;slug&quot;:&quot;sky-showcase&quot;,&quot;order&quot;:1300,&quot;external_id&quot;:&quot;97f1b34a-7cb5-5410-bbf2-9bec1b0e9f03&quot;,&quot;name&quot;:&quot;Sky Showcase&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/lmstelevision\/tv-logos\/9a04da10c0fe20bf4bcdc9d05e67ac32.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:114},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:106}]},{&quot;id&quot;:67,&quot;slug&quot;:&quot;sky-max&quot;,&quot;order&quot;:1400,&quot;external_id&quot;:&quot;942593c3-5602-5a2e-9d29-8574a86fc5d4&quot;,&quot;name&quot;:&quot;Sky Max&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/lmstelevision\/tv-logos\/2ab9cdda3ec0fb958d025a5ae63e55ae.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:115},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:113}]},{&quot;id&quot;:152,&quot;slug&quot;:&quot;sky-replay&quot;,&quot;order&quot;:1450,&quot;external_id&quot;:&quot;538e4786-ea3b-5ab2-8336-94d0077a17b1&quot;,&quot;name&quot;:&quot;Sky Replay&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/lmstelevision\/tv-logos\/b900c85109af8e9def5bf4cc8bc4440e.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:145}]},{&quot;id&quot;:87,&quot;slug&quot;:&quot;sky-atlantic&quot;,&quot;order&quot;:1501,&quot;external_id&quot;:&quot;5c56dba8-10dd-5b7e-aa9d-0317867ec2c9&quot;,&quot;name&quot;:&quot;Sky Atlantic&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/lmstelevision\/tv-logos\/76556423738f7910a05d04acad192749.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:108}]},{&quot;id&quot;:110,&quot;slug&quot;:&quot;sky-comedy&quot;,&quot;order&quot;:1550,&quot;external_id&quot;:&quot;3d16f8ad-b930-5094-a5fe-7139e468a74e&quot;,&quot;name&quot;:&quot;Sky Comedy&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/lmstelevision\/tv-logos\/62dc5fdfeb978b96af8fcc74fe6f5062.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:114}]},{&quot;id&quot;:68,&quot;slug&quot;:&quot;sky-witness&quot;,&quot;order&quot;:1601,&quot;external_id&quot;:&quot;6e9dc822-69e5-5568-996a-ccce413791c2&quot;,&quot;name&quot;:&quot;Sky Witness&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/lmstelevision\/tv-logos\/d9c44d717a5ae4382b565cc33f704ae0.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:124},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:107}]},{&quot;id&quot;:49,&quot;slug&quot;:&quot;sky-arts&quot;,&quot;order&quot;:1700,&quot;external_id&quot;:&quot;eb5f203b-bdc5-5d30-a700-5cabb4d6a085&quot;,&quot;name&quot;:&quot;Sky Arts&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/lmstelevision\/tv-logos\/1c6396ef4553c37a3729b9389bdee65e.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:141},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:130}]},{&quot;id&quot;:111,&quot;slug&quot;:&quot;sky-documentaries&quot;,&quot;order&quot;:1710,&quot;external_id&quot;:&quot;d905c697-22eb-5d35-8e98-84bd08c3ad90&quot;,&quot;name&quot;:&quot;Sky Documentaries&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/lmstelevision\/tv-logos\/7599abb10b68be95e920e1377b11764d.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:121}]},{&quot;id&quot;:32,&quot;slug&quot;:&quot;sky-history&quot;,&quot;order&quot;:1720,&quot;external_id&quot;:&quot;9a4b80a8-7844-5be0-822f-98457b693eaa&quot;,&quot;name&quot;:&quot;Sky History&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/lmstelevision\/tv-logos\/a2656c6b7a769f2cef5769d091e607be.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:217},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:123},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:227}]},{&quot;id&quot;:130,&quot;slug&quot;:&quot;sky-history-2&quot;,&quot;order&quot;:1730,&quot;external_id&quot;:&quot;49e71e68-3f34-5f74-8c40-59f34c42bb55&quot;,&quot;name&quot;:&quot;Sky History 2&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/lmstelevision\/tv-logos\/b4686615eedea7f3df9b51b179914cdf.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:196}]},{&quot;id&quot;:113,&quot;slug&quot;:&quot;sky-nature&quot;,&quot;order&quot;:1740,&quot;external_id&quot;:&quot;c7cb366a-a0d0-5f8e-a1e3-828ae6a2a336&quot;,&quot;name&quot;:&quot;Sky Nature&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/lmstelevision\/tv-logos\/dc274bba1ed6bacf8254d5e7805e6265.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:124}]},{&quot;id&quot;:44,&quot;slug&quot;:&quot;sky-crime&quot;,&quot;order&quot;:1800,&quot;external_id&quot;:&quot;af9e4bd4-1414-5ef4-b77a-50461be96967&quot;,&quot;name&quot;:&quot;Sky Crime&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/lmstelevision\/tv-logos\/c9a893d19beae133aef294380da33d72.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:136},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:122}]},{&quot;id&quot;:102,&quot;slug&quot;:&quot;utv&quot;,&quot;order&quot;:1900,&quot;external_id&quot;:&quot;e4ccd1fb-d4f5-5bf4-8b42-ce684d836508&quot;,&quot;name&quot;:&quot;UTV&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/lmstelevision\/tv-logos\/7faf03fd4d4ca55b171c6eac9c6e7623.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:2001}]},{&quot;id&quot;:90,&quot;slug&quot;:&quot;itv2&quot;,&quot;order&quot;:1950,&quot;external_id&quot;:&quot;64b0d836-b2b1-5a9c-a077-99fbd5dff799&quot;,&quot;name&quot;:&quot;ITV2&quot;,&quot;logo&quot;:&quot;https:\/\/images.entertainment.ie\/storage\/lmstelevision\/tv-logos\/3f124379b70c4f7ed540f0dee2291506.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:2002}]},{&quot;id&quot;:34,&quot;slug&quot;:&quot;itv3&quot;,&quot;order&quot;:2000,&quot;external_id&quot;:&quot;8dc66a04-043a-5c8e-aab3-a32343bd2016&quot;,&quot;name&quot;:&quot;ITV3&quot;,&quot;logo&quot;:&quot;https:\/\/images.entertainment.ie\/storage\/lmstelevision\/tv-logos\/53b27cd4510de1ba8e9c6bcb3fce669f.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:131},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:2003}]},{&quot;id&quot;:35,&quot;slug&quot;:&quot;itv4&quot;,&quot;order&quot;:2100,&quot;external_id&quot;:&quot;76c14546-b2bd-51d4-9760-4b24820686e2&quot;,&quot;name&quot;:&quot;ITV4&quot;,&quot;logo&quot;:&quot;https:\/\/images.entertainment.ie\/storage\/lmstelevision\/tv-logos\/9d5ef19f46d4f64348c0a743a1151ff0.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:132},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:2004}]},{&quot;id&quot;:12,&quot;slug&quot;:&quot;comedy-central&quot;,&quot;order&quot;:2301,&quot;external_id&quot;:&quot;b13e2396-4327-569c-8e7a-18cead510f39&quot;,&quot;name&quot;:&quot;Comedy Central&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/comedy-central-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:127},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:112},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:113}]},{&quot;id&quot;:13,&quot;slug&quot;:&quot;comedy-central-extra&quot;,&quot;order&quot;:2401,&quot;external_id&quot;:&quot;feb61960-12f0-5643-a83e-03a30bf22baf&quot;,&quot;name&quot;:&quot;Comedy Central Extra&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/comedy-central-extra-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:134},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:127},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:127}]},{&quot;id&quot;:24,&quot;slug&quot;:&quot;e-entertainment&quot;,&quot;order&quot;:2501,&quot;external_id&quot;:&quot;98ea0e09-d0fa-5bf5-92d5-d5f0212de38c&quot;,&quot;name&quot;:&quot;E! Entertainment&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/e-entertainment-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:147},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:151},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:128}]},{&quot;id&quot;:14,&quot;slug&quot;:&quot;dave&quot;,&quot;order&quot;:2700,&quot;external_id&quot;:&quot;715f4b2b-b1a9-5ce4-aaa0-7de29db1bbfe&quot;,&quot;name&quot;:&quot;Dave&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/dave-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:122},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:111},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:121}]},{&quot;id&quot;:31,&quot;slug&quot;:&quot;gold&quot;,&quot;order&quot;:2800,&quot;external_id&quot;:&quot;83a00f21-a841-5d34-8566-522c17c13253&quot;,&quot;name&quot;:&quot;GOLD&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/gold-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:120},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:110},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:120}]},{&quot;id&quot;:78,&quot;slug&quot;:&quot;w&quot;,&quot;order&quot;:2901,&quot;external_id&quot;:&quot;51cb8909-a482-5fdf-9570-9e147e485568&quot;,&quot;name&quot;:&quot;W&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/lmstelevision\/tv-logos\/f529e9f5148cbbc1bd023e7f85981b46.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:160},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:132},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:131}]},{&quot;id&quot;:1,&quot;slug&quot;:&quot;alibi&quot;,&quot;order&quot;:3001,&quot;external_id&quot;:&quot;e0d7df16-df4b-5bc6-bd59-25711dc11018&quot;,&quot;name&quot;:&quot;Alibi&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/alibi-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:151},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:109},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:130}]},{&quot;id&quot;:69,&quot;slug&quot;:&quot;sky-sci-fi&quot;,&quot;order&quot;:3101,&quot;external_id&quot;:&quot;d9b5db39-47b5-5378-bbbc-c595c11e6cc1&quot;,&quot;name&quot;:&quot;Sky Sci-Fi&quot;,&quot;logo&quot;:&quot;https:\/\/images.entertainment.ie\/storage\/lmstelevision\/tv-logos\/e5ead65e5dd29ee583210841f67f7e5c.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:129},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:152},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:117}]},{&quot;id&quot;:166,&quot;slug&quot;:&quot;legend&quot;,&quot;order&quot;:3150,&quot;external_id&quot;:&quot;b0de8819-bf12-5ea4-8eb1-3f0c1998766a&quot;,&quot;name&quot;:&quot;Legend&quot;,&quot;logo&quot;:&quot;https:\/\/images.entertainment.ie\/storage\/lmstelevision\/tv-logos\/4ac95da921f603ae8b38f5a5a0b9bf8d.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:160}]},{&quot;id&quot;:95,&quot;slug&quot;:&quot;horrorxtra&quot;,&quot;order&quot;:3201,&quot;external_id&quot;:&quot;fa9f1e59-ad66-5bdb-8bbb-74a3590c27c2&quot;,&quot;name&quot;:&quot;HorrorXtra&quot;,&quot;logo&quot;:&quot;https:\/\/images.entertainment.ie\/storage\/lmstelevision\/tv-logos\/7241722013120cf13486e02f4ac1b3ca.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:146},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:317}]},{&quot;id&quot;:23,&quot;slug&quot;:&quot;drama&quot;,&quot;order&quot;:3301,&quot;external_id&quot;:&quot;30050daf-5792-5ca4-90f9-f2f776be9d1f&quot;,&quot;name&quot;:&quot;Drama&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/drama-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:164},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:158},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:125}]},{&quot;id&quot;:153,&quot;slug&quot;:&quot;great-tv&quot;,&quot;order&quot;:3325,&quot;external_id&quot;:&quot;a4338e0a-ccc0-5a01-a6aa-f8ece805bb75&quot;,&quot;name&quot;:&quot;Great! TV&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/lmstelevision\/tv-logos\/51a61c7a10f48735d721edddf359c09f.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:157}]},{&quot;id&quot;:101,&quot;slug&quot;:&quot;channel-5&quot;,&quot;order&quot;:3350,&quot;external_id&quot;:&quot;bbc2a081-fc85-5c05-8ff0-4438cc97de2c&quot;,&quot;name&quot;:&quot;Channel 5&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/lmstelevision\/tv-logos\/3dbbd404a23af38d25ec4f59db711292.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:2005}]},{&quot;id&quot;:10,&quot;slug&quot;:&quot;challenge&quot;,&quot;order&quot;:3401,&quot;external_id&quot;:&quot;fc6db614-ca44-5bdb-8aa8-dea9e62e409c&quot;,&quot;name&quot;:&quot;Challenge&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/challenge-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:157},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:160}]},{&quot;id&quot;:96,&quot;slug&quot;:&quot;cbs-reality&quot;,&quot;order&quot;:3500,&quot;external_id&quot;:&quot;78098f21-bf32-5904-b18b-aed05a18658e&quot;,&quot;name&quot;:&quot;CBS Reality&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/lmstelevision\/tv-logos\/207e1c21f41f63bdf1562b9071ec9a23.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:130},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:146}]},{&quot;id&quot;:97,&quot;slug&quot;:&quot;cbs-drama&quot;,&quot;order&quot;:3600,&quot;external_id&quot;:&quot;0b5b3562-9967-5141-a4be-5cd5f91537d1&quot;,&quot;name&quot;:&quot;CBS Drama&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/lmstelevision\/tv-logos\/48ad436dbd66abc142854708c63e0621.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:163},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:147}]},{&quot;id&quot;:43,&quot;slug&quot;:&quot;pick&quot;,&quot;order&quot;:3700,&quot;external_id&quot;:&quot;1a83cd94-9972-5ecf-9243-853212ca1fe1&quot;,&quot;name&quot;:&quot;Pick&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/pick-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:133},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:159}]},{&quot;id&quot;:56,&quot;slug&quot;:&quot;sky-cinema-premiere&quot;,&quot;order&quot;:3801,&quot;external_id&quot;:&quot;3a84612c-318d-56a1-8a39-bcff1bd6c2e8&quot;,&quot;name&quot;:&quot;Sky Cinema Premiere&quot;,&quot;logo&quot;:&quot;https:\/\/images.entertainment.ie\/storage\/lmstelevision\/tv-logos\/8e7dea4d3fee75b95b4c6ad4b0af089e.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:320},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:301},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:301}]},{&quot;id&quot;:92,&quot;slug&quot;:&quot;sky-cinema-gangsters&quot;,&quot;order&quot;:3901,&quot;external_id&quot;:&quot;9be8c0d5-f80c-5d36-bdf9-3121696c1e63&quot;,&quot;name&quot;:&quot;Sky Cinema Gangsters&quot;,&quot;logo&quot;:&quot;https:\/\/images.entertainment.ie\/storage\/lmstelevision\/tv-logos\/0d0489db41d5aaa8e081dfc06b13ea0f.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:306},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:302},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:312}]},{&quot;id&quot;:55,&quot;slug&quot;:&quot;sky-cinema-hits&quot;,&quot;order&quot;:4000,&quot;external_id&quot;:&quot;7a0ef048-db38-5fa8-ab55-a88ada173c61&quot;,&quot;name&quot;:&quot;Sky Cinema Hits&quot;,&quot;logo&quot;:&quot;https:\/\/images.entertainment.ie\/storage\/lmstelevision\/tv-logos\/1a9e3e7a274ef3f40942fc6a23003760.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:318},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:303},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:303}]},{&quot;id&quot;:151,&quot;slug&quot;:&quot;sky-cinema-greats&quot;,&quot;order&quot;:4100,&quot;external_id&quot;:&quot;0660b266-a44e-5358-b6f3-ae000a373c77&quot;,&quot;name&quot;:&quot;Sky Cinema Greats&quot;,&quot;logo&quot;:&quot;https:\/\/images.entertainment.ie\/storage\/lmstelevision\/tv-logos\/8235cd0e852dfc8b3107a74d0af97780.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:304},{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:304}]},{&quot;id&quot;:52,&quot;slug&quot;:&quot;sky-cinema-superheroes&quot;,&quot;order&quot;:4200,&quot;external_id&quot;:&quot;33017888-1cb5-5edc-9236-079eb7562f47&quot;,&quot;name&quot;:&quot;Sky Cinema Superheroes&quot;,&quot;logo&quot;:&quot;https:\/\/images.entertainment.ie\/storage\/lmstelevision\/tv-logos\/7ebeb425cc6fb28e629416ddf49173e1.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:305},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:305},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:305}]},{&quot;id&quot;:54,&quot;slug&quot;:&quot;sky-cinema-family&quot;,&quot;order&quot;:4300,&quot;external_id&quot;:&quot;5e2571e6-9dec-53a2-8b64-bbcb163aee65&quot;,&quot;name&quot;:&quot;Sky Cinema Family&quot;,&quot;logo&quot;:&quot;https:\/\/images.entertainment.ie\/storage\/lmstelevision\/tv-logos\/59f98b313f45a7ed47b7fb512de5fbd5.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:303},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:306},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:306}]},{&quot;id&quot;:50,&quot;slug&quot;:&quot;sky-cinema-batman&quot;,&quot;order&quot;:4400,&quot;external_id&quot;:&quot;09b1e188-e4c1-5092-bc91-351e7d6dec63&quot;,&quot;name&quot;:&quot;Sky Cinema Batman&quot;,&quot;logo&quot;:&quot;https:\/\/images.entertainment.ie\/storage\/lmstelevision\/tv-logos\/a6db70d993203a8cae340ccdf975f07b.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:302},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:307},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:307}]},{&quot;id&quot;:51,&quot;slug&quot;:&quot;sky-cinema-comedy&quot;,&quot;order&quot;:4500,&quot;external_id&quot;:&quot;a873b416-374c-5b7f-a3b5-5b8f705ba6d7&quot;,&quot;name&quot;:&quot;Sky Cinema Comedy&quot;,&quot;logo&quot;:&quot;https:\/\/images.entertainment.ie\/storage\/lmstelevision\/tv-logos\/7b279f0c25c6472c8f880978ced481eb.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:301},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:308},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:308}]},{&quot;id&quot;:57,&quot;slug&quot;:&quot;sky-cinema-thriller&quot;,&quot;order&quot;:4600,&quot;external_id&quot;:&quot;c82001ae-f9ae-596b-bd5d-4618cc1387c0&quot;,&quot;name&quot;:&quot;Sky Cinema Thriller&quot;,&quot;logo&quot;:&quot;https:\/\/images.entertainment.ie\/storage\/lmstelevision\/tv-logos\/b7d7a55424ad7242ba953a2c6b8c2c90.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:309},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:309},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:311}]},{&quot;id&quot;:53,&quot;slug&quot;:&quot;sky-cinema-drama&quot;,&quot;order&quot;:4700,&quot;external_id&quot;:&quot;474851cf-ece0-545a-9276-d26375ee263b&quot;,&quot;name&quot;:&quot;Sky Cinema Drama&quot;,&quot;logo&quot;:&quot;https:\/\/images.entertainment.ie\/storage\/lmstelevision\/tv-logos\/783dc627fb54d468d030a77380b6bcfd.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:308},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:310},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:310}]},{&quot;id&quot;:91,&quot;slug&quot;:&quot;sky-cinema-sci-fi-horror&quot;,&quot;order&quot;:4800,&quot;external_id&quot;:&quot;8a550912-3479-5619-8104-ff9fa4fbb8b0&quot;,&quot;name&quot;:&quot;Sky Cinema Sci-Fi - Horror&quot;,&quot;logo&quot;:&quot;https:\/\/images.entertainment.ie\/storage\/lmstelevision\/tv-logos\/b3a804a99181fe376dbba8645b4a80fc.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:304},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:311},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:311}]},{&quot;id&quot;:29,&quot;slug&quot;:&quot;film4&quot;,&quot;order&quot;:4900,&quot;external_id&quot;:&quot;51b4a470-009c-5a13-bb8d-1f1090796c3c&quot;,&quot;name&quot;:&quot;FilmFour&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/film4-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:323},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:313},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:315}]},{&quot;id&quot;:70,&quot;slug&quot;:&quot;tcm&quot;,&quot;order&quot;:5000,&quot;external_id&quot;:&quot;648255fa-460b-55ab-94e9-63af0fd4ed5d&quot;,&quot;name&quot;:&quot;Turner Classic Movies&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/tcm-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:327},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:315}]},{&quot;id&quot;:98,&quot;slug&quot;:&quot;great-movies-romance&quot;,&quot;order&quot;:5100,&quot;external_id&quot;:&quot;5815be9a-a1b7-5e1c-9d78-4e8b66adb0ed&quot;,&quot;name&quot;:&quot;Great! Movies Romance&quot;,&quot;logo&quot;:&quot;https:\/\/images.entertainment.ie\/storage\/lmstelevision\/tv-logos\/8a835a296e10d7bd7659095369cba3a8.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:329},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:319}]},{&quot;id&quot;:99,&quot;slug&quot;:&quot;great-movies&quot;,&quot;order&quot;:5200,&quot;external_id&quot;:&quot;090bad0a-74be-5cd9-a5be-881ac8161789&quot;,&quot;name&quot;:&quot;Great! Movies&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/lmstelevision\/tv-logos\/ce21b8bd24c2dec9203e660537135d87.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:321}]},{&quot;id&quot;:154,&quot;slug&quot;:&quot;great-action&quot;,&quot;order&quot;:5250,&quot;external_id&quot;:&quot;887b5cf2-34b3-52d3-ad41-3abe278d6977&quot;,&quot;name&quot;:&quot;Great! Action&quot;,&quot;logo&quot;:&quot;https:\/\/images.entertainment.ie\/storage\/lmstelevision\/tv-logos\/a8c4a3d90e532e2837fa6120a5e69023.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:323}]},{&quot;id&quot;:65,&quot;slug&quot;:&quot;sky-sports-mix&quot;,&quot;order&quot;:5301,&quot;external_id&quot;:&quot;dfdb7b1f-c45d-5bfe-bb34-226c7dc59d92&quot;,&quot;name&quot;:&quot;Sky Sports Mix&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/sky-sports-mix-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:409},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:145}]},{&quot;id&quot;:64,&quot;slug&quot;:&quot;sky-sports-main-event&quot;,&quot;order&quot;:5401,&quot;external_id&quot;:&quot;4a456557-c479-5190-bedc-ae061c5771c2&quot;,&quot;name&quot;:&quot;Sky Sports Main Event&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/sky-sports-main-event-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:401},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:401},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:401}]},{&quot;id&quot;:66,&quot;slug&quot;:&quot;sky-sports-premier-league-roi&quot;,&quot;order&quot;:5501,&quot;external_id&quot;:&quot;477f9ec1-d610-509c-b218-71fe1b95cc58&quot;,&quot;name&quot;:&quot;Sky Sports Premier League ROI&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/sky-sports-premier-league-roi-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:405},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:402},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:402}]},{&quot;id&quot;:62,&quot;slug&quot;:&quot;sky-sports-football&quot;,&quot;order&quot;:5601,&quot;external_id&quot;:&quot;42899af8-f668-579a-ae1f-eaf567de0665&quot;,&quot;name&quot;:&quot;Sky Sports Football&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/sky-sports-football-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:407},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:403},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:403}]},{&quot;id&quot;:61,&quot;slug&quot;:&quot;sky-sports-cricket&quot;,&quot;order&quot;:5701,&quot;external_id&quot;:&quot;054dd24d-cedd-5a73-bfd6-0df4d6a25c41&quot;,&quot;name&quot;:&quot;Sky Sports Cricket&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/sky-sports-cricket-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:402},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:404},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:404}]},{&quot;id&quot;:63,&quot;slug&quot;:&quot;sky-sports-golf&quot;,&quot;order&quot;:5801,&quot;external_id&quot;:&quot;a679a3b0-ea3a-5359-9b29-f37f62280e41&quot;,&quot;name&quot;:&quot;Sky Sports Golf&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/sky-sports-golf-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:404},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:405},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:405}]},{&quot;id&quot;:59,&quot;slug&quot;:&quot;sky-sports-nfl&quot;,&quot;order&quot;:5901,&quot;external_id&quot;:&quot;4e7565b2-292c-5b52-b76a-d27e0e573f3f&quot;,&quot;name&quot;:&quot;Sky Sports NFL&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/lmstelevision\/tv-logos\/5a904f64dedaf3d80a03301d23d35b9e.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:403},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:407},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:407}]},{&quot;id&quot;:60,&quot;slug&quot;:&quot;sky-sports-arena-hd&quot;,&quot;order&quot;:6001,&quot;external_id&quot;:&quot;eb333143-2ec7-52f8-bc66-b318c4aa5aac&quot;,&quot;name&quot;:&quot;Sky Sports Arena HD&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/sky-sports-arena-hd-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:436},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:862},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:406}]},{&quot;id&quot;:26,&quot;slug&quot;:&quot;eurosport-1&quot;,&quot;order&quot;:6301,&quot;external_id&quot;:&quot;b2f56084-9c8e-5ab5-8a14-067414b1d800&quot;,&quot;name&quot;:&quot;Eurosport 1&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/eurosport-1-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:423},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:410},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:415}]},{&quot;id&quot;:27,&quot;slug&quot;:&quot;eurosport-2&quot;,&quot;order&quot;:6401,&quot;external_id&quot;:&quot;ed6262e5-4732-52ce-a719-dee6547c2206&quot;,&quot;name&quot;:&quot;Eurosport 2&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/eurosport-2-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:425},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:411},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:416}]},{&quot;id&quot;:156,&quot;slug&quot;:&quot;sky-sports-f1&quot;,&quot;order&quot;:6500,&quot;external_id&quot;:&quot;455e1b1b-cdc6-54f1-9dce-8c6ab2fa16f7&quot;,&quot;name&quot;:&quot;Sky Sports F1&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/lmstelevision\/tv-logos\/f3c384c797e8d49a72469999af763fc7.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:406},{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:411}]},{&quot;id&quot;:79,&quot;slug&quot;:&quot;bt-sport-1&quot;,&quot;order&quot;:6501,&quot;external_id&quot;:&quot;0e28fe4a-9473-5ea0-955d-eba6f0e8c705&quot;,&quot;name&quot;:&quot;BT Sport 1&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/bt-sport-1-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:413},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:411}]},{&quot;id&quot;:80,&quot;slug&quot;:&quot;bt-sport-2&quot;,&quot;order&quot;:6601,&quot;external_id&quot;:&quot;d90b2d7c-af93-5d8d-a176-66daf48c7a09&quot;,&quot;name&quot;:&quot;BT Sport 2&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/bt-sport-2-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:414},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:412}]},{&quot;id&quot;:81,&quot;slug&quot;:&quot;bt-sport-3&quot;,&quot;order&quot;:6701,&quot;external_id&quot;:&quot;2a4a9d4f-2cf7-5acf-81a8-4f3b474b844d&quot;,&quot;name&quot;:&quot;BT Sport 3&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/bt-sport-3-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:417},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:413}]},{&quot;id&quot;:82,&quot;slug&quot;:&quot;bt-sportespn&quot;,&quot;order&quot;:6801,&quot;external_id&quot;:&quot;ef96324e-87a9-5de8-bbbd-411d927549ca&quot;,&quot;name&quot;:&quot;BT Sport\/ESPN&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/bt-sportespn-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:423},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:414}]},{&quot;id&quot;:157,&quot;slug&quot;:&quot;premier-sports-1&quot;,&quot;order&quot;:6850,&quot;external_id&quot;:&quot;c0e7c419-f2ca-5042-a0cf-c49b1c3a0720&quot;,&quot;name&quot;:&quot;Premier Sports 1&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/lmstelevision\/tv-logos\/9ec570fbdc82b613baeaddf1de974395.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:412}]},{&quot;id&quot;:158,&quot;slug&quot;:&quot;premier-sports-2&quot;,&quot;order&quot;:6900,&quot;external_id&quot;:&quot;3ea27dc2-561b-5932-8aad-cc26b53ae3f8&quot;,&quot;name&quot;:&quot;Premier Sports 2&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/lmstelevision\/tv-logos\/be1053602b884b605b72eaf9eb6fa7e5.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:421}]},{&quot;id&quot;:159,&quot;slug&quot;:&quot;la-liga-tv&quot;,&quot;order&quot;:6950,&quot;external_id&quot;:&quot;bd3dc64b-35fc-5846-b98e-86ebaddcc28a&quot;,&quot;name&quot;:&quot;La Liga TV&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/lmstelevision\/tv-logos\/e796952abfe31906a99130287383165c.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:427}]},{&quot;id&quot;:160,&quot;slug&quot;:&quot;free-sports&quot;,&quot;order&quot;:7000,&quot;external_id&quot;:&quot;b3410009-76c0-5263-bbd7-f982d4fab53e&quot;,&quot;name&quot;:&quot;Free Sports&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/lmstelevision\/tv-logos\/3582fddcc895e3cd9c800ec3e557091e.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:422}]},{&quot;id&quot;:161,&quot;slug&quot;:&quot;box-nation&quot;,&quot;order&quot;:7050,&quot;external_id&quot;:&quot;dbeb5fed-e7f3-58b7-bc05-6bedc62bd578&quot;,&quot;name&quot;:&quot;Box Nation&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/lmstelevision\/tv-logos\/b76935147cf60475e713a643b5f76712.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:435}]},{&quot;id&quot;:86,&quot;slug&quot;:&quot;home&quot;,&quot;order&quot;:7200,&quot;external_id&quot;:&quot;dc5ee50c-ffc7-534b-878a-867a3fc9dcad&quot;,&quot;name&quot;:&quot;Home&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/home-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:162}]},{&quot;id&quot;:45,&quot;slug&quot;:&quot;really&quot;,&quot;order&quot;:7300,&quot;external_id&quot;:&quot;fd22499a-bc88-5836-a639-7fad80310d7f&quot;,&quot;name&quot;:&quot;Really&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/really-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:165},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:155},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:129}]},{&quot;id&quot;:72,&quot;slug&quot;:&quot;tlc&quot;,&quot;order&quot;:7700,&quot;external_id&quot;:&quot;a48438f4-a999-5da5-8799-6761e3728cec&quot;,&quot;name&quot;:&quot;TLC&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/tlc-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:121},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:140},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:118}]},{&quot;id&quot;:40,&quot;slug&quot;:&quot;national-geographic&quot;,&quot;order&quot;:7800,&quot;external_id&quot;:&quot;af107972-5014-53b4-9cba-85802323e740&quot;,&quot;name&quot;:&quot;National Geographic&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/national-geographic-channel-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:215},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:129},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:225}]},{&quot;id&quot;:15,&quot;slug&quot;:&quot;discovery-channel&quot;,&quot;order&quot;:7900,&quot;external_id&quot;:&quot;3d70e024-4435-5cec-b070-84ff71a8581e&quot;,&quot;name&quot;:&quot;Discovery Channel&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/discovery-channel-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:208},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:220}]},{&quot;id&quot;:2,&quot;slug&quot;:&quot;animal-planet&quot;,&quot;order&quot;:8000,&quot;external_id&quot;:&quot;a4f95c8d-ec00-52bc-8b54-dcc6914a0884&quot;,&quot;name&quot;:&quot;Animal Planet&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/animal-planet-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:213},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:190},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:222}]},{&quot;id&quot;:16,&quot;slug&quot;:&quot;discovery-history&quot;,&quot;order&quot;:8100,&quot;external_id&quot;:&quot;84331c37-ef13-540e-97b8-f6d04171761f&quot;,&quot;name&quot;:&quot;Discovery History&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/discovery-history-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:212},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:171},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:228}]},{&quot;id&quot;:18,&quot;slug&quot;:&quot;discovery-science&quot;,&quot;order&quot;:8200,&quot;external_id&quot;:&quot;9b0cda01-050d-52b2-afb7-dac498b63066&quot;,&quot;name&quot;:&quot;Discovery Science&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/discovery-science-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:211},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:167},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:224}]},{&quot;id&quot;:20,&quot;slug&quot;:&quot;discovery-turbo&quot;,&quot;order&quot;:8300,&quot;external_id&quot;:&quot;2afa5a8f-dcfa-5cf4-a063-f5dfc10a9846&quot;,&quot;name&quot;:&quot;Discovery Turbo&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/discovery-turbo-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:156},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:188},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:223}]},{&quot;id&quot;:100,&quot;slug&quot;:&quot;national-geographic-wild&quot;,&quot;order&quot;:8401,&quot;external_id&quot;:&quot;301a8fcd-f41a-5a01-965a-642c6ba0f68e&quot;,&quot;name&quot;:&quot;National Geographic Wild&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/lmstelevision\/tv-logos\/b82a5055d2b63303e80f030b5e3e7a07.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:216},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:165},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:226}]},{&quot;id&quot;:33,&quot;slug&quot;:&quot;investigation-discovery&quot;,&quot;order&quot;:8601,&quot;external_id&quot;:&quot;1d374c86-0414-5d5e-9fd3-eaef8a14da9b&quot;,&quot;name&quot;:&quot;Investigation Discovery&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/investigation-discovery-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:504},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:154}]},{&quot;id&quot;:22,&quot;slug&quot;:&quot;dmax&quot;,&quot;order&quot;:8801,&quot;external_id&quot;:&quot;9bb6a4bf-ecfb-53f9-b495-6b12575dbdb7&quot;,&quot;name&quot;:&quot;DMAX&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/dmax-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:214},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:178},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:126}]},{&quot;id&quot;:83,&quot;slug&quot;:&quot;eden&quot;,&quot;order&quot;:8901,&quot;external_id&quot;:&quot;e111fb1a-e3f4-5e78-bc1b-54343dbe2f5f&quot;,&quot;name&quot;:&quot;Eden&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/eden-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:166}]},{&quot;id&quot;:89,&quot;slug&quot;:&quot;yesterday&quot;,&quot;order&quot;:9001,&quot;external_id&quot;:&quot;d1c48f93-3ae1-5c35-9338-31d5f7227c7b&quot;,&quot;name&quot;:&quot;Yesterday&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/yesterday-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:161},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:229}]},{&quot;id&quot;:37,&quot;slug&quot;:&quot;mtv&quot;,&quot;order&quot;:9301,&quot;external_id&quot;:&quot;e0a3096b-d09e-54ad-a2d1-c926005ec375&quot;,&quot;name&quot;:&quot;MTV&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/mtv-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:701},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:119}]},{&quot;id&quot;:8,&quot;slug&quot;:&quot;cbbc&quot;,&quot;order&quot;:9701,&quot;external_id&quot;:&quot;1f6ecdb4-985e-5ab3-adfc-022a5f63c6d1&quot;,&quot;name&quot;:&quot;CBBC&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/cbbc-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:608},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:613},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:610}]},{&quot;id&quot;:9,&quot;slug&quot;:&quot;cbeebies&quot;,&quot;order&quot;:9801,&quot;external_id&quot;:&quot;27b85aec-51fc-5c55-a483-24ff7c70186b&quot;,&quot;name&quot;:&quot;CBeebies&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/cbeebies-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:609},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:614},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:611}]},{&quot;id&quot;:46,&quot;slug&quot;:&quot;rte-jr&quot;,&quot;order&quot;:9901,&quot;external_id&quot;:&quot;f8aeda9a-c829-5806-911e-ca0b18eebce7&quot;,&quot;name&quot;:&quot;RTÉ Jr&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/rte-jr-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:600},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:623},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:600}]},{&quot;id&quot;:7,&quot;slug&quot;:&quot;cartoon-network&quot;,&quot;order&quot;:10001,&quot;external_id&quot;:&quot;c9690e37-0878-566a-98a4-a8522ae8870d&quot;,&quot;name&quot;:&quot;Cartoon Network&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/cartoon-network-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:620},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:601},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:603}]},{&quot;id&quot;:6,&quot;slug&quot;:&quot;boomerang&quot;,&quot;order&quot;:10100,&quot;external_id&quot;:&quot;9b7f3740-1e34-5049-aa64-4726fccf7cc4&quot;,&quot;name&quot;:&quot;Boomerang&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/boomerang-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:603},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:604}]},{&quot;id&quot;:41,&quot;slug&quot;:&quot;nickelodeon&quot;,&quot;order&quot;:10200,&quot;external_id&quot;:&quot;3eabb761-96d7-5129-9d79-63f3128fe335&quot;,&quot;name&quot;:&quot;Nickelodeon&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/nickelodeon-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:604},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:629},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:605}]},{&quot;id&quot;:42,&quot;slug&quot;:&quot;nicktoons&quot;,&quot;order&quot;:10300,&quot;external_id&quot;:&quot;62c0f2d7-fccf-5fea-948c-cf92ceb4122e&quot;,&quot;name&quot;:&quot;Nicktoons&quot;,&quot;logo&quot;:&quot;https:\/\/s3.eu-west-1.amazonaws.com\/entertainmentie\/storage\/television\/tv-logos\/nicktoons-tvlogo.png&quot;,&quot;platforms&quot;:[{&quot;platform&quot;:&quot;virgin-media&quot;,&quot;epg&quot;:606},{&quot;platform&quot;:&quot;sky&quot;,&quot;epg&quot;:606},{&quot;platform&quot;:&quot;vodafone&quot;,&quot;epg&quot;:606}]}]'
:types ='[{&quot;id&quot;:16,&quot;type&quot;:&quot;Movie&quot;},{&quot;id&quot;:17,&quot;type&quot;:&quot;Sport&quot;},{&quot;id&quot;:18,&quot;type&quot;:&quot;Sport-Soccer&quot;},{&quot;id&quot;:19,&quot;type&quot;:&quot;Sport-GAA&quot;},{&quot;id&quot;:20,&quot;type&quot;:&quot;Entertainment&quot;},{&quot;id&quot;:21,&quot;type&quot;:&quot;Reality&quot;},{&quot;id&quot;:22,&quot;type&quot;:&quot;Comedy&quot;},{&quot;id&quot;:23,&quot;type&quot;:&quot;Soap&quot;},{&quot;id&quot;:24,&quot;type&quot;:&quot;Drama&quot;},{&quot;id&quot;:25,&quot;type&quot;:&quot;Documentary&quot;},{&quot;id&quot;:26,&quot;type&quot;:&quot;Lifestyle&quot;},{&quot;id&quot;:27,&quot;type&quot;:&quot;Factual&quot;},{&quot;id&quot;:28,&quot;type&quot;:&quot;Music&quot;},{&quot;id&quot;:29,&quot;type&quot;:&quot;Arts&quot;},{&quot;id&quot;:30,&quot;type&quot;:&quot;Kids&quot;},{&quot;id&quot;:31,&quot;type&quot;:&quot;Other&quot;}]'
:days ='{&quot;28-06-2023&quot;:&quot;Today&quot;,&quot;29-06-2023&quot;:&quot;Tomorrow&quot;,&quot;30-06-2023&quot;:&quot;Fri 30 Jun&quot;,&quot;01-07-2023&quot;:&quot;Sat 1 Jul&quot;,&quot;02-07-2023&quot;:&quot;Sun 2 Jul&quot;,&quot;03-07-2023&quot;:&quot;Mon 3 Jul&quot;,&quot;04-07-2023&quot;:&quot;Tue 4 Jul&quot;}'
:times = '{&quot;all-day&quot;:&quot;All Day&quot;,&quot;day&quot;:&quot;Daytime&quot;,&quot;evening-night&quot;:&quot;Evening &amp; Night&quot;,&quot;after-midnight&quot;:&quot;After Midnight&quot;}'
selected-channel = 'rte'
selected-type = '' selected-day = '29-06-2023'
selected-time = 'all-day' ></tv-filter>
</div>
<div class="river-block style listing-block">
<div class="row">
<div class="col-lg-8 offset-lg-0 col-md-10 offset-md-1">
<div class="tv-provider-container">
<tv-provider-filter ></tv-provider-filter>
</div>
<div class="content-bar">
<a class="tab-opener" href="javascript:;">Thursday 29 June</a>
<div class="tab-slide">
<ul class="tabset">
<li>
<a href="https://entertainment.ie/tv/all-channels/?">
Today
</a>
</li> <li>
<a class="active" href="https://entertainment.ie/tv/all-channels/?time=all-day&amp;date=29-06-2023">
Thu<span class="d-md-none">rsday</span> 29
<span class="d-md-none">June</span>
</a>
</li> <li>
<a href="https://entertainment.ie/tv/all-channels/?time=all-day&amp;date=30-06-2023">
Fri<span class="d-md-none">day</span> 30
<span class="d-md-none">June</span>
</a>
</li> <li>
<a href="https://entertainment.ie/tv/all-channels/?time=all-day&amp;date=01-07-2023">
Sat<span class="d-md-none">urday</span> 1
<span class="d-md-none">July</span>
</a>
</li> <li>
<a href="https://entertainment.ie/tv/all-channels/?time=all-day&amp;date=02-07-2023">
Sun<span class="d-md-none">day</span> 2
<span class="d-md-none">July</span>
</a>
</li> <li>
<a href="https://entertainment.ie/tv/all-channels/?time=all-day&amp;date=03-07-2023">
Mon<span class="d-md-none">day</span> 3
<span class="d-md-none">July</span>
</a>
</li> <li>
<a href="https://entertainment.ie/tv/all-channels/?time=all-day&amp;date=04-07-2023">
Tue<span class="d-md-none">sday</span> 4
<span class="d-md-none">July</span>
</a>
</li> </ul>
</div>
</div>
<div class="tab-content channels-wrapper">
<div id="tab1-0">
</div>
<span class="tv-legend"><strong>TV legend:</strong> (R) = Repeat showing (S) = Subtitles available</span>
</div>
</div>
<aside id="sidebar-primary-sidebar" class="col-lg-4 sidebar-wrap d-md-none d-lg-block" role="complementary" aria-label="Primary Sidebar Sidebar" itemscope="itemscope" itemtype="https://schema.org/WPSideBar">
<div class="sidebar-container">
<div id="video-widget" class="d-none d-lg-block">
<article class="post brid-widget">
<div id="mobile-bbw-container-sidebar" class="listings"></div>
<div class="video-detail style">
<h4>Videos on entertainment.ie</h4>
<strong class="title-movie">Watch the most popular videos on entertainment.ie</strong>
<a class="link" href="https://entertainment.ie/videos/">Watch More</a>
</div>
</article>
</div>
<div id="ad-right-sidebar-tonights-tv-top" itemscope="" itemtype="https://schema.org/WPAdBlock" data-adid="div-gpt-right-sidebar-tonights-tv-top" data-type="code">
<div class="text-center post lazy-ad" id="div-gpt-right-sidebar-tonights-tv-top-1785420709" data-slot="Tonights_RHS" data-mapping="mapRightSidebarMid" data-dfp-target="[]" data-sequence="true" data-parent=""></div>
</div>
</div>
</aside>
</div>
</div>
</div>
</div>
</main>
<footer id="footer">
<div class="container">
<div class="footer-holder">
<strong class="footer-logo"><a href="https://entertainment.ie/"><img data-src="https://entertainment.ie/images/footer-logo2x.png" alt="Entertainment.ie" width="228" height="26" class="lazyload"></a></strong>
<p>&copy; 2023 <a href="https://www.packed.house/">Packed House Ltd.</a></p>
<p>Partners: <a href="https://www.beaut.ie/">beaut.ie</a>&nbsp;| &nbsp;<a href="https://www.thesportschronicle.com/">thesportschronicle.com</a> | <a href="https://www.familyfriendlyhq.ie">familyfriendlyhq.ie</a> </p>
</div>
<div class="links-block">
<div class="links-holder">
<div class="links-col">
<h5><a href="https://entertainment.ie/tv/">TV</a></h5>
<ul class="nav-links">
<li>
<a href="https://entertainment.ie/tv/all-channels/all-types/page/1/">TV Listings
</a>
</li>
<li><a href="https://entertainment.ie/tv/whats-on-now/">Now &amp; Next</a></li>
<li><a href="https://entertainment.ie/tv/tv-news/">TV News</a></li>
<li><a href="https://entertainment.ie/tv/todays-tv-highlights/">TV Highlights</a></li>
<li><a href="https://entertainment.ie/tv/tv-reviews/">TV Reviews</a></li>
<li><a href="https://entertainment.ie/on-demand/">On Demand</a></li>
<li><a href="https://entertainment.ie/tv/soap-watch/">Soaps <span class="desk-hidden">Watch</span></a></li>
<li><a href="https://entertainment.ie/tv/sports/">Sports on TV</a></li>
<li><a href="https://entertainment.ie/tv/movies/">Movies on TV</a></li>
<li><a href="https://entertainment.ie/tv/tonight/">Tonight's TV</a></li>
</ul>
</div>
<div class="links-col">
<h5><a href="https://entertainment.ie/movies/">Movies</a></h5>
<ul class="nav-links">
<li><a href="https://entertainment.ie/movies/movie-reviews/">Movie Reviews</a></li>
<li><a href="https://entertainment.ie/movies/movie-news/">Movie News</a></li>
<li><a href="https://entertainment.ie/videos/trailers/">Trailers</a></li>
<li><a href="https://entertainment.ie/movies/coming-soon/">Coming Soon</a></li>
</ul>
<h5><a href="https://entertainment.ie/cinema/">Cinema</a></h5>
<ul class="nav-links">
<li>
<a href="https://entertainment.ie/cinema/cinema-listings/">Cinema Listings
</a>
</li>
</ul>
<h5><a href="https://entertainment.ie/videos/">Videos</a></h5>
<ul class="nav-links">
<li><a href="https://entertainment.ie/videos/trailers/">Trailers</a></li>
<li><a href="https://entertainment.ie/videos/interviews/">Interviews</a></li>
<li><a href="https://entertainment.ie/videos/movies/">Movies</a></li>
<li><a href="https://entertainment.ie/videos/tv/">TV</a></li>
</ul>
</div>
<div class="links-col">
<h5><a href="https://entertainment.ie/podcasts/">Podcasts</a></h5>
<ul class="nav-links">
<li>
<a href="https://entertainment.ie/podcasts/the-revisit/">The Revisit</a>
</li>
<li>
<a href="https://entertainment.ie/podcasts/the-filum-show/">The Filum Show</a>
</li>
<li>
<a href="https://entertainment.ie/podcasts/the-telly-show/">The Telly Show</a>
</li>
<li>
<a href="https://entertainment.ie/podcasts/on-the-line/">On The Line</a>
</li>
</ul>
<h5><a href="https://entertainment.ie/music/">Music</a></h5>
<h5><a href="https://entertainment.ie/events/">Events</a></h5>
<ul class="nav-links">
<li>
<a href="https://entertainment.ie/events/listing/all/dublin/all/">Drive In Events Listings
</a>
</li>
<li><a href="https://entertainment.ie/event-news/">Event News</a></li>
<li><a href="https://entertainment.ie/events/submit-listing/">Submit a Listing</a></li>
</ul>
</div>
<div class="links-col">
<h5><a href="https://entertainment.ie/competitions/">Competitions</a></h5>
<h5><a href="https://entertainment.ie/trending/">Trending</a></h5>
<h5><a href="https://entertainment.ie/gaming/">Gaming</a></h5>
<ul class="nav-links">
<li><a href="https://entertainment.ie/gaming/game-reviews/">Game Reviews</a></li>
</ul>
<h5><a href="https://entertainment.ie/photos/">Photos</a></h5>
<h5>More</h5>
<ul class="nav-links">
<li><a href="https://entertainment.ie/my-account/sign-in/">My Account</a></li>
<li><a href="https://entertainment.ie/lotto/">Lotto</a></li>
<li><a href="/quizzes">Quizzes</a></li>
</ul>
</div>
</div>
<div class="social-area">
<div class="nav-links icons-holder">
<h5>Connect</h5>
<ul class="ml-0 social-icons">
<li><a class="facebook" rel="noopener" href="https://facebook.com/entertainment.ie"><svg class="icon"><use xlink:href="#facebook"></use></svg></a></li>
<li><a class="twitter" rel="noopener" href="https://twitter.com/entertainmentIE"><svg class="icon"><use xlink:href="#twitter"></use></svg></a></li>
<li><a class="instagram" rel="noopener" href="https://instagram.com/entertainmentie"><svg class="icon"><use xlink:href="#instagram"></use></svg></a></li>
</ul>
</div>
<div class="nav-links icons-holder">
<h5><a href="https://entertainment.ie/content/apps/"><strong>Mobile Apps</strong></a></h5>
<ul class="ml-0 social-icons">
<li><a href="https://itunes.apple.com/ie/app/cinema-guide-ireland/id399770408?mt=8" rel="noopener"><figure><img data-src="https://entertainment.ie/images/image35.png" alt="Cinema Guide Ireland" width="35" height="35" class="lazyload"></figure></a></li>
<li><a href="https://itunes.apple.com/ie/app/tv-guide-ireland/id462753256?ls=1&amp;mt=8" rel="noopener"><figure><img data-src="https://entertainment.ie/images/image36.png" alt="TV Guide Ireland" width="35" height="35" class="lazyload"></figure></a></li>
</ul>
</div>
</div>
</div>
<div class="nav-holder">
<h5 class="d-md-none">other info</h5>
<ul class="footer-nav">
<li><a href="https://entertainment.ie/content/contact-us/">Contact Us</a></li>
<li><a href="https://entertainment.ie/content/meet-the-team/">Our Team</a></li>
<li><a href="https://entertainment.ie/content/general-terms/">Terms &amp; Conditions</a></li>
<li><a href="https://entertainment.ie/content/privacy/">Privacy Policy</a></li>
<li><a href="https://entertainment.ie/content/cookies/">Cookie Policy</a></li>
<li><a href="https://entertainment.ie/site-directory/">Site directory</a></li>
</ul>
</div>
</div>
</footer>
<div class="popup-holder">
<div id="popup" class="lightbox popup-block">
<div class="column-block">
<div class="column-wrap">
<h1></h1>
<div class="time-holder">
<div class="icon-box">
<figure>
<img src="" alt="">
</figure>
</div>
<span class="time-text"></span>
</div>
<div class="image-wrap show-img d-md-none">
<figure>
<picture>
<source data-srcset="">
<img src="" alt="">
</picture>
</figure>
</div>
<strong></strong>
<p></p>
<span class="episode"></span>
<ul class="ml-0 social-icons">
<li><a class="facebook" rel="noopener" href="#"><svg class="icon"><use xlink:href="#facebook"></use></svg></a></li>
<li><a class="twitter" rel="noopener" href="#"><svg class="icon"><use xlink:href="#twitter"></use></svg></a></li>
<li><a class="shape" rel="noopener" href="#"><svg class="icon"><use xlink:href="#shape"></use></svg></a></li>
<li class="d-md-none"><a class="whatsapp" rel="noopener" href="#"><span class="icon-whatsapp"></span></a></li>
</ul>
</div>
<div class="column-wrap">
<div class="image-wrap show-img d-none d-md-block">
<figure>
<picture>
<source data-srcset="">
<img src="" alt="">
</picture>
</figure>
</div>
<div class="image-wrap ad">
<div id="modaltv" itemscope="" itemtype="https://schema.org/WPAdBlock" data-adid="" data-type="code">
<div class="text-center post lazy-ad" id="" data-slot="" data-mapping="" data-dfp-target="" data-sequence="" data-parent=""></div>
</div>
</div>
</div>
</div>
</div>
</div>
<login-modal></login-modal>
<forgot-modal></forgot-modal>
</div>
<script src="/js/core.js?id=bed85a43728e617a0052" defer></script>
<script src="/js/tv-listings.js?id=1b234f708e8572e01475" defer></script>
<svg width="0" height="0" class="hidden">
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 29 32" id="thumbs-down">
<title>thumbs-down</title>
<path d="M4.571 10.286c0 0.625-0.518 1.143-1.143 1.143-0.643 0-1.143-0.518-1.143-1.143 0-0.643 0.5-1.143 1.143-1.143 0.625 0 1.143 0.5 1.143 1.143zM7.429 19.429v-11.429c0-0.625-0.518-1.143-1.143-1.143h-5.143c-0.625 0-1.143 0.518-1.143 1.143v11.429c0 0.625 0.518 1.143 1.143 1.143h5.143c0.625 0 1.143-0.518 1.143-1.143zM27.589 16.768c0.607 0.679 0.982 1.714 0.982 2.661-0.018 1.857-1.571 3.429-3.429 3.429h-4.946c0.143 0.571 0.321 0.75 0.518 1.143 0.464 0.929 1 1.964 1 3.429 0 1.375 0 4.571-4 4.571-0.304 0-0.589-0.125-0.804-0.339-0.768-0.75-0.982-1.857-1.179-2.911-0.214-1.036-0.411-2.107-1.107-2.804-0.554-0.554-1.161-1.321-1.804-2.143-0.786-1.036-2.5-3.161-3.161-3.214-0.589-0.054-1.089-0.554-1.089-1.143v-11.446c0-0.625 0.536-1.125 1.143-1.143 0.625-0.018 1.696-0.393 2.821-0.786 1.929-0.661 4.339-1.5 6.893-1.5h2.304c1.571 0.018 2.75 0.482 3.518 1.393 0.679 0.804 0.982 1.893 0.875 3.232 0.446 0.429 0.786 1.018 0.964 1.679 0.196 0.714 0.196 1.429 0 2.089 0.536 0.714 0.804 1.554 0.768 2.446 0 0.25-0.071 0.786-0.268 1.357z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 29 32" id="thumbs-up">
<title>thumbs-up</title>
<path d="M4.571 24c0-0.625-0.518-1.143-1.143-1.143-0.643 0-1.143 0.518-1.143 1.143 0 0.643 0.5 1.143 1.143 1.143 0.625 0 1.143-0.5 1.143-1.143zM7.429 14.857v11.429c0 0.625-0.518 1.143-1.143 1.143h-5.143c-0.625 0-1.143-0.518-1.143-1.143v-11.429c0-0.625 0.518-1.143 1.143-1.143h5.143c0.625 0 1.143 0.518 1.143 1.143zM28.571 14.857c0 0.946-0.375 1.964-0.982 2.661 0.196 0.571 0.268 1.107 0.268 1.357 0.036 0.893-0.232 1.732-0.768 2.446 0.196 0.661 0.196 1.375 0 2.089-0.179 0.661-0.518 1.25-0.964 1.679 0.107 1.339-0.196 2.429-0.875 3.232-0.768 0.911-1.946 1.375-3.518 1.393h-2.304c-2.554 0-4.964-0.839-6.893-1.5-1.125-0.393-2.196-0.768-2.821-0.786-0.607-0.018-1.143-0.518-1.143-1.143v-11.446c0-0.589 0.5-1.089 1.089-1.143 0.661-0.054 2.375-2.179 3.161-3.214 0.643-0.821 1.25-1.589 1.804-2.143 0.696-0.696 0.893-1.768 1.107-2.804 0.196-1.054 0.411-2.161 1.179-2.911 0.214-0.214 0.5-0.339 0.804-0.339 4 0 4 3.196 4 4.571 0 1.464-0.518 2.5-1 3.429-0.196 0.393-0.375 0.571-0.518 1.143h4.946c1.857 0 3.429 1.571 3.429 3.429z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17 32" id="arrow-right">
<title>arrow-right</title>
<path d="M15.955 16.572l0.046 0.050-0.847 0.818-13.429 14.561-1.725-1.668 12.685-13.76-12.685-13.76 1.725-1.668 13.429 14.561 0.845 0.818z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19 32" id="arrow-left">
<title>arrow-left</title>
<path d="M0.813 16.657l-0.047-0.039 0.869-0.763 13.944-13.721 1.789 1.57-0.842 0.83-12.325 12.126 13.167 12.952-1.789 1.57-0.842-0.832-13.11-12.889-0.861-0.755z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 32" id="eye">
<title>eye</title>
<path d="M47.446 19.303c-4.699-7.973-13.462-13.303-23.446-13.303-9.988 0-18.75 5.333-23.446 13.303-0.348 0.581-0.554 1.282-0.554 2.031s0.206 1.45 0.564 2.049l-0.010-0.018c4.699 7.973 13.462 13.302 23.446 13.302 9.988 0 18.75-5.333 23.446-13.303 0.348-0.581 0.554-1.282 0.554-2.031s-0.206-1.45-0.564-2.049l0.010 0.018zM24 32.667c-8.546 0-16.008-4.558-20-11.333 3.68-6.244 10.306-10.606 18.014-11.251 0.816 0.84 1.32 1.986 1.32 3.251 0 2.577-2.089 4.667-4.667 4.667s-4.667-2.089-4.667-4.667l0-0.004c-0.851 1.59-1.333 3.407-1.333 5.337 0 6.259 5.074 11.333 11.333 11.333s11.333-5.074 11.333-11.333c0-2.586-0.867-4.969-2.325-6.876 4.633 1.929 8.492 5.302 10.991 9.543-3.992 6.775-11.454 11.333-20 11.333z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" id="eye-slash">
<title>eye-slash</title>
<path d="M9.911 23.839l1.393-2.518c-2.071-1.5-3.304-3.911-3.304-6.464 0-1.411 0.375-2.804 1.089-4.018-2.786 1.429-5.107 3.679-6.804 6.304 1.857 2.875 4.482 5.286 7.625 6.696zM16.857 10.286c0-0.464-0.393-0.857-0.857-0.857-2.982 0-5.429 2.446-5.429 5.429 0 0.464 0.393 0.857 0.857 0.857s0.857-0.393 0.857-0.857c0-2.054 1.679-3.714 3.714-3.714 0.464 0 0.857-0.393 0.857-0.857zM23.339 6.875c0 0.036 0 0.125-0.018 0.161-3.768 6.732-7.5 13.5-11.268 20.232l-0.875 1.589c-0.107 0.179-0.304 0.286-0.5 0.286-0.321 0-2.018-1.036-2.393-1.25-0.179-0.107-0.286-0.286-0.286-0.5 0-0.286 0.607-1.25 0.786-1.554-3.464-1.571-6.375-4.25-8.429-7.464-0.232-0.357-0.357-0.786-0.357-1.232 0-0.429 0.125-0.875 0.357-1.232 3.536-5.429 9.054-9.054 15.643-9.054 1.071 0 2.161 0.107 3.214 0.304l0.964-1.732c0.107-0.179 0.286-0.286 0.5-0.286 0.321 0 2 1.036 2.375 1.25 0.179 0.107 0.286 0.286 0.286 0.482zM24 14.857c0 3.321-2.054 6.286-5.143 7.464l5-8.964c0.089 0.5 0.143 1 0.143 1.5zM32 17.143c0 0.464-0.125 0.839-0.357 1.232-0.554 0.911-1.25 1.786-1.946 2.589-3.5 4.018-8.321 6.464-13.696 6.464l1.321-2.357c5.196-0.446 9.607-3.607 12.393-7.929-1.321-2.054-3.018-3.857-5.036-5.25l1.125-2c2.214 1.482 4.446 3.714 5.839 6.018 0.232 0.393 0.357 0.768 0.357 1.232z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" id="newspaper">
<title>newspaper</title>
<path d="M28 8v-4h-28v22c0 1.105 0.895 2 2 2h27c1.657 0 3-1.343 3-3v-17h-4zM26 26h-24v-20h24v20zM4 10h20v2h-20zM16 14h8v2h-8zM16 18h8v2h-8zM16 22h6v2h-6zM4 14h10v10h-10z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" id="display">
<title>display</title>
<path d="M0 2v20h32v-20h-32zM30 20h-28v-16h28v16zM21 24h-10l-1 4-2 2h16l-2-2z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" id="ticket">
<title>ticket</title>
<path d="M18 10l4 4-8 8-4-4zM31.298 9.297l-2.297-2.297-1 1c-0.512 0.512-1.219 0.828-2 0.828-1.562 0-2.829-1.266-2.829-2.828 0-0.781 0.317-1.489 0.829-2.001l1-1-2.297-2.297c-0.936-0.936-2.469-0.936-3.405 0l-18.595 18.595c-0.936 0.936-0.936 2.469 0 3.405l2.297 2.297 0.999-0.999c0.512-0.513 1.22-0.83 2.001-0.83 1.562 0 2.828 1.266 2.828 2.828 0 0.781-0.317 1.489-0.829 2.001l-1 1 2.297 2.297c0.936 0.936 2.469 0.936 3.405 0l18.595-18.595c0.936-0.937 0.936-2.469 0-3.406zM14 26l-8-8 12-12 8 8-12 12z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" id="video-camera">
<title>video-camera</title>
<path d="M12 9c0-2.761 2.239-5 5-5s5 2.239 5 5c0 2.761-2.239 5-5 5s-5-2.239-5-5zM0 9c0-2.761 2.239-5 5-5s5 2.239 5 5c0 2.761-2.239 5-5 5s-5-2.239-5-5zM24 19v-3c0-1.1-0.9-2-2-2h-20c-1.1 0-2 0.9-2 2v10c0 1.1 0.9 2 2 2h20c1.1 0 2-0.9 2-2v-3l8 5v-14l-8 5zM20 24h-16v-6h16v6z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" id="search">
<title>search</title>
<path d="M23.845 26.707l-7.153-7.153c-0.027-0.027-0.054-0.054-0.081-0.081-3.314 2.166-7.739 1.799-10.61-1.072-0.010-0.010-0.020-0.020-0.030-0.030l0.002 0.002c-0.014-0.013-0.030-0.029-0.046-0.045-3.252-3.252-3.273-8.511-0.064-11.789l0.003-0.003c3.281-3.213 8.54-3.192 11.792 0.060 0.016 0.016 0.032 0.032 0.048 0.048l-0.002-0.002c0.010 0.010 0.021 0.021 0.033 0.033 2.802 2.802 3.219 7.084 1.253 10.328l-0.032 0.049q0.060 0.060 0.125 0.113l7.153 7.153c0.658 0.658 0.658 1.726 0 2.384s-1.726 0.658-2.384 0v0zM7.74 16.604c0.010 0.010 0.022 0.022 0.033 0.034 2.272 2.272 5.946 2.287 8.236 0.045l0.002-0.002c2.245-2.293 2.23-5.968-0.043-8.241-0.011-0.011-0.022-0.022-0.033-0.033l0.002 0.002c-0.010-0.010-0.021-0.021-0.032-0.033-2.272-2.272-5.947-2.287-8.237-0.044l-0.002 0.002c-2.245 2.292-2.23 5.966 0.041 8.237 0.011 0.011 0.023 0.023 0.034 0.034l-0.002-0.002z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 32" id="user">
<title>user</title>
<path d="M15 17.34c-6.987 0.011-12.649 5.673-12.66 12.659v0.001h25.32c-0.011-6.987-5.673-12.649-12.659-12.66h-0.001zM4.4 19.4c1.56-1.576 3.466-2.807 5.596-3.567l0.104-0.033c-2.283-1.582-3.76-4.189-3.76-7.14 0-4.783 3.877-8.66 8.66-8.66s8.66 3.877 8.66 8.66c0 2.952-1.477 5.558-3.731 7.122l-0.029 0.019c5.926 2.073 10.1 7.616 10.1 14.134 0 0.023-0 0.046-0 0.069v-0.004 2h-30v-2c0-4 1.56-7.78 4.4-10.6zM21.32 8.68c0.006-0.106 0.010-0.231 0.010-0.356 0-3.502-2.838-6.34-6.34-6.34s-6.34 2.838-6.34 6.34c0 0.125 0.004 0.25 0.011 0.373l-0.001-0.017c0.194 3.345 2.954 5.984 6.33 5.984s6.136-2.639 6.329-5.967l0.001-0.017z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17 32" id="facebook">
<title>facebook</title>
<path d="M16.304 0h-4.053c-0.101-0.005-0.219-0.008-0.338-0.008-3.986 0-7.217 3.231-7.217 7.217 0 0.232 0.011 0.461 0.032 0.688l-0.002-0.029v3.638h-4.087c-0.354 0.004-0.639 0.292-0.639 0.646 0 0.003 0 0.005 0 0.008v-0 5.26c-0 0.002-0 0.005-0 0.007 0 0.354 0.285 0.642 0.639 0.646h4.087v13.276c-0 0.002-0 0.005-0 0.007 0 0.354 0.285 0.642 0.639 0.646h5.329c0.354-0.004 0.639-0.292 0.639-0.646 0-0.003 0-0.005-0-0.008v0-13.276h4.769c0.354-0.004 0.639-0.292 0.639-0.646 0-0.003 0-0.005-0-0.008v0-5.26c0-0.001 0-0.002 0-0.003 0-0.179-0.071-0.341-0.186-0.46l0 0c-0.115-0.118-0.275-0.191-0.452-0.191-0 0-0 0-0.001 0h-4.769v-3.078c0-1.478 0.346-2.229 2.232-2.229h2.737c0.354-0.004 0.639-0.292 0.639-0.646 0-0.003 0-0.005-0-0.008v0-4.888c0-0.004 0-0.008 0-0.012 0-0.354-0.284-0.641-0.636-0.646h-0z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" id="instagram">
<title>instagram</title>
<path d="M25.812 32h-19.629c-3.414-0.005-6.181-2.773-6.183-6.188v-19.629c0.004-3.413 2.77-6.179 6.183-6.183h19.629c3.414 0.004 6.18 2.77 6.186 6.183v19.629c-0.003 3.416-2.77 6.184-6.185 6.188h-0zM3.116 12.714v13.098c0.001 1.693 1.374 3.066 3.067 3.067h19.629c1.694 0 3.068-1.373 3.069-3.067v-13.099h-4.775c0.409 0.976 0.646 2.111 0.646 3.301 0 4.833-3.918 8.75-8.75 8.75s-8.75-3.918-8.75-8.75c0-1.19 0.238-2.325 0.668-3.359l-0.021 0.058zM15.999 10.367c-0.005-0-0.011-0-0.018-0-3.121 0-5.65 2.53-5.65 5.65s2.53 5.651 5.651 5.651c3.121 0 5.651-2.53 5.651-5.651 0-1.241-0.4-2.388-1.078-3.32l0.011 0.016c-1.035-1.424-2.693-2.341-4.566-2.347h-0.001zM28.295 3.684h-0.704l-4.719 0.012 0.019 5.423 5.397-0.016z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 32" id="shape">
<title>shape</title>
<path d="M19.691 32c-9.501 0-17.224-5.522-17.224-12.309-0-0.013-0-0.029-0-0.044 0-0.217 0.011-0.432 0.032-0.644l-0.002 0.027c-1.5-0.848-2.497-2.433-2.497-4.25 0-0.004 0-0.008 0-0.012v0.001c0-2.725 2.209-4.934 4.934-4.934v0c0.012-0 0.026-0 0.040-0 1.070 0 2.058 0.35 2.857 0.942l-0.013-0.009c3.123-2.026 6.928-3.256 11.016-3.323l0.018-0 2.86-6.703c0.195-0.439 0.628-0.74 1.131-0.74 0.002 0 0.003 0 0.005 0h-0c0.1 0 0.197 0.012 0.29 0.034l-0.009-0.002 7.022 1.643c0.669-1.027 1.812-1.696 3.111-1.696 2.044 0 3.701 1.657 3.701 3.701s-1.657 3.701-3.701 3.701c-1.907 0-3.478-1.443-3.679-3.296l-0.001-0.016-6.015-1.401-2.065 4.843c3.808 0.223 7.292 1.436 10.251 3.382l-0.079-0.049c0.804-0.616 1.825-0.987 2.932-0.987 0.010 0 0.020 0 0.030 0h-0.002c2.725 0 4.934 2.209 4.934 4.934v0c-0.001 1.882-1.073 3.513-2.64 4.317l-0.027 0.013v0.032c0 0.165 0.017 0.345 0.017 0.54 0.002 6.785-7.725 12.307-17.226 12.307zM14.732 24.401c-0.674 0.010-1.216 0.558-1.216 1.233 0 0.402 0.193 0.76 0.491 0.985l0.003 0.002c1.574 1.152 3.548 1.843 5.683 1.843s4.11-0.691 5.711-1.862l-0.027 0.019c0.312-0.227 0.513-0.59 0.513-1.001 0-0.273-0.089-0.525-0.239-0.73l0.002 0.003c-0.227-0.312-0.59-0.513-1.001-0.513-0.273 0-0.525 0.089-0.73 0.239l0.003-0.002c-1.174 0.86-2.646 1.377-4.24 1.377s-3.066-0.516-4.26-1.391l0.020 0.014c-0.195-0.136-0.438-0.217-0.699-0.217-0.005 0-0.010 0-0.015 0h0.001zM25.834 16.012c-1.363 0-2.467 1.105-2.467 2.467s1.105 2.467 2.467 2.467c1.363 0 2.467-1.105 2.467-2.467v0c0-0.004 0-0.008 0-0.012 0-1.359-1.099-2.462-2.457-2.467h-0.001zM13.525 16.012c-1.363 0-2.467 1.105-2.467 2.467s1.105 2.467 2.467 2.467c1.363 0 2.467-1.105 2.467-2.467v0c0-0.004 0-0.008 0-0.012 0-1.359-1.099-2.462-2.457-2.467h-0.001zM33.229 2.467c-0.681 0-1.234 0.552-1.234 1.234s0.552 1.234 1.234 1.234c0.681 0 1.234-0.552 1.234-1.234v0c0-0.681-0.552-1.234-1.234-1.234v0z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" id="twitch">
<title>twitch</title>
<path d="M16 7.75v7.75h-2.589v-7.75h2.589zM23.107 7.75v7.75h-2.589v-7.75h2.589zM23.107 21.321l4.518-4.536v-14.196h-21.321v18.732h5.821v3.875l3.875-3.875h7.107zM30.214 0v18.089l-7.75 7.75h-5.821l-3.875 3.875h-3.875v-3.875h-7.107v-20.679l1.946-5.161h26.482z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 39 32" id="twitter">
<title>twitter</title>
<path d="M34.734 5.060c1.671-1.009 2.927-2.56 3.537-4.406l0.016-0.057c-1.477 0.889-3.196 1.567-5.026 1.935l-0.104 0.017c-1.478-1.564-3.567-2.537-5.883-2.537-4.468 0-8.089 3.622-8.089 8.089 0 0.645 0.075 1.272 0.218 1.873l-0.011-0.055c-6.731-0.346-12.651-3.544-16.62-8.4l-0.033-0.041c-0.686 1.163-1.091 2.563-1.091 4.057 0 2.795 1.417 5.259 3.572 6.712l0.029 0.018c-1.353-0.042-2.611-0.412-3.708-1.033l0.040 0.021c0 0.033 0 0.070 0 0.103 0.004 3.894 2.76 7.144 6.427 7.91l0.053 0.009c-0.638 0.18-1.37 0.284-2.126 0.284-0.538 0-1.065-0.052-1.574-0.153l0.051 0.008c1.064 3.235 4.028 5.541 7.54 5.609l0.008 0c-2.727 2.156-6.216 3.459-10.008 3.459-0.012 0-0.024 0-0.035-0h0.002c-0.677-0-1.343-0.042-1.998-0.122l0.079 0.008c3.491 2.274 7.764 3.626 12.352 3.626 0.011 0 0.021 0 0.032-0h-0.002c0.047 0 0.102 0.001 0.157 0.001 12.608 0 22.828-10.221 22.828-22.828 0-0.055-0-0.11-0.001-0.165l0 0.008c0-0.349 0-0.7-0.022-1.046 1.588-1.156 2.925-2.543 3.994-4.126l0.037-0.058c-1.351 0.619-2.919 1.069-4.563 1.272l-0.078 0.008z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" id="youtube-play">
<title>youtube-play</title>
<path d="M12.696 20.143l8.643-4.464-8.643-4.518v8.982zM16 4.75c6.732 0 11.196 0.321 11.196 0.321 0.625 0.071 2 0.071 3.214 1.357 0 0 0.982 0.964 1.268 3.179 0.339 2.589 0.321 5.179 0.321 5.179v2.429s0.018 2.589-0.321 5.179c-0.286 2.196-1.268 3.179-1.268 3.179-1.214 1.268-2.589 1.268-3.214 1.339 0 0-4.464 0.339-11.196 0.339v0c-8.321-0.071-10.875-0.321-10.875-0.321-0.714-0.125-2.321-0.089-3.536-1.357 0 0-0.982-0.982-1.268-3.179-0.339-2.589-0.321-5.179-0.321-5.179v-2.429s-0.018-2.589 0.321-5.179c0.286-2.214 1.268-3.179 1.268-3.179 1.214-1.286 2.589-1.286 3.214-1.357 0 0 4.464-0.321 11.196-0.321v0z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 58 58" id="more-squares">
<path d="M16.0588235,41.9411765 L16.0588235,57 L1,57 L1,41.9411765 L16.0588235,41.9411765 Z M36.5294118,41.9411765 L36.5294118,57 L21.4705882,57 L21.4705882,41.9411765 L36.5294118,41.9411765 Z M16.0588235,21.4705882 L16.0588235,36.5294118 L1,36.5294118 L1,21.4705882 L16.0588235,21.4705882 Z M36.5294118,21.4705882 L36.5294118,36.5294118 L21.4705882,36.5294118 L21.4705882,21.4705882 L36.5294118,21.4705882 Z M57,21.4705882 L57,36.5294118 L41.9411765,36.5294118 L41.9411765,21.4705882 L57,21.4705882 Z M16.0588235,1 L16.0588235,16.0588235 L1,16.0588235 L1,1 L16.0588235,1 Z M36.5294118,1 L36.5294118,16.0588235 L21.4705882,16.0588235 L21.4705882,1 L36.5294118,1 Z M57,1 L57,16.0588235 L41.9411765,16.0588235 L41.9411765,1 L57,1 Z" id="Combined-Shape"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 41 30" id="filter">
<path d="M9.71125815,19.9050195 C12.1269287,19.9050195 14.1810346,21.6525822 14.6634579,23.9375896 L39.5923436,23.9370462 C40.1456971,23.9370462 40.62,24.4113492 40.62,24.9647026 C40.62,25.518056 40.1456971,25.992359 39.5923436,25.992359 L14.6894803,25.9922513 C14.2580062,28.2766023 12.1954625,30.0234823 9.71125815,30.0234823 C7.29622847,30.0234823 5.24257166,28.2768468 4.75944271,25.9927308 L1.64765638,25.992359 C1.09430294,25.992359 0.62,25.518056 0.62,24.9647026 C0.62,24.3322987 1.09430294,23.8579957 1.64765638,23.8579957 L4.77133336,23.8572343 C5.27543883,21.5645634 7.31554021,19.9050195 9.71125815,19.9050195 Z M9.71125815,21.9603322 C8.06727591,21.9603322 6.73340031,23.2782855 6.70771674,24.9161066 L6.70688778,24.8856521 C6.71659264,24.963291 6.71795739,25.038547 6.71171338,25.110835 L6.7073395,24.9642509 C6.7073395,26.6243112 8.05119784,27.9681695 9.71125815,27.9681695 C11.3713184,27.9681695 12.7151768,26.6243112 12.7151768,24.9642509 C12.7151768,23.3041906 11.3713184,21.9603322 9.71125815,21.9603322 Z M28.7619747,10.1027586 C31.1772952,10.1027586 33.2311558,11.8498149 33.7139646,14.1343354 L39.5923436,14.1347854 C40.1456971,14.1347854 40.62,14.6090883 40.62,15.1624418 C40.62,15.7157952 40.1456971,16.1900981 39.5923436,16.1900981 L33.7171012,16.1906379 C33.2481071,18.4746716 31.2459443,20.2212214 28.7619747,20.2212214 C26.3470042,20.2212214 24.2933889,18.4746716 23.8101948,16.1906379 L1.6481081,16.1900981 C1.09475466,16.1900981 0.620451717,15.7157952 0.620451717,15.1624418 C0.620451717,14.6090883 1.09475466,14.1347854 1.6481081,14.1347854 L23.8099848,14.1343354 C24.2927935,11.8498149 26.3466541,10.1027586 28.7619747,10.1027586 Z M28.7619747,12.1580714 C27.1019144,12.1580714 25.758056,13.5019297 25.758056,15.16199 C25.758056,16.8220503 27.1019144,18.1659087 28.7619747,18.1659087 C30.422035,18.1659087 31.7658933,16.8220503 31.7658933,15.16199 C31.7658933,13.5019297 30.422035,12.1580714 28.7619747,12.1580714 Z M9.71125815,0.38 C12.1265787,0.38 14.1804393,2.12705624 14.6632481,4.41157679 L39.5923436,4.41112331 C40.1456971,4.41112331 40.62,4.88542625 40.62,5.43877969 C40.62,5.99213312 40.1456971,6.46643607 39.5923436,6.46643607 L14.6666239,6.46671327 C14.1980719,8.7513185 12.1956505,10.4984628 9.71125815,10.4984628 C7.29587673,10.4984628 5.24197346,8.7513185 4.75923171,6.46671327 L1.64765638,6.46643607 C1.09430294,6.46643607 0.62,5.99213312 0.62,5.43877969 C0.62,4.88542625 1.09430294,4.41112331 1.64765638,4.41112331 L4.75926822,4.41157679 C5.24207699,2.12705624 7.29593761,0.38 9.71125815,0.38 Z M9.71125815,2.43531276 C8.05119784,2.43531276 6.7073395,3.7791711 6.7073395,5.4392314 C6.7073395,7.09929171 8.05119784,8.44315005 9.71125815,8.44315005 C11.3713184,8.44315005 12.7151768,7.09929171 12.7151768,5.4392314 C12.7151768,3.7791711 11.3713184,2.43531276 9.71125815,2.43531276 Z" id="Combined-Shape"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" id="close">
<title>close</title>
<path d="M16 13.338l-11.314-11.314-2.262 2.262 11.314 11.314-11.314 11.314 2.262 2.262 11.314-11.314 11.314 11.314 2.262-2.262-11.314-11.314 11.314-11.314-2.262-2.262-11.314 11.314z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" id="setting">
<title>setting</title>
<path d="M17.851 32h-3.304c-0.933 0-1.202-0.295-2.83-4.341l-0.815-0.323c-3.457 1.554-3.881 1.554-4.135 1.554h-0.529l-0.418-0.384-2.334-2.282c-0.673-0.674-0.662-1.067 1.101-5.068l-0.311-0.753c-4.124-1.482-4.46-1.77-4.46-2.724v-3.233c0-0.95 0.274-1.192 4.435-2.81l0.325-0.753c-1.775-3.748-1.908-4.317-1.184-5.024l2.716-2.643 0.559-0.017c1.572 0.285 2.977 0.797 4.256 1.506l-0.071-0.036 0.813-0.322c1.512-4.026 1.803-4.348 2.751-4.348h3.3c0.945 0 1.187 0.268 2.832 4.329l0.813 0.337c3.445-1.566 3.873-1.566 4.14-1.566h0.524l0.407 0.384 2.342 2.281c0.684 0.673 0.674 1.069-1.099 5.068l0.322 0.766c4.145 1.475 4.448 1.738 4.448 2.714v3.228c0 0.948-0.301 1.217-4.435 2.81l-0.325 0.766c1.861 3.927 1.886 4.322 1.197 5.011l-2.728 2.655-0.561 0.012c-1.572-0.288-2.976-0.804-4.254-1.517l0.070 0.036-0.815 0.337c-1.51 4.028-1.8 4.349-2.746 4.349zM10.843 24.516v0l2.862 1.158 0.214 0.515c0.458 1.118 1.027 2.494 1.377 3.214h1.807c0.308-0.697 0.833-2.021 1.276-3.199l0.194-0.527 2.862-1.179 0.492 0.214c1.238 0.53 2.605 1.081 3.325 1.347l1.254-1.234c-0.325-0.798-0.953-2.177-1.399-3.12l-0.251-0.525 1.194-2.835 0.515-0.202c1.052-0.409 2.479-0.987 3.287-1.347v-1.702c-0.788-0.345-2.244-0.889-3.263-1.248l-0.539-0.19-1.192-2.846 0.227-0.514c0.155-0.362 0.963-2.214 1.334-3.224l-1.256-1.219c-1.054 0.402-3.007 1.286-3.226 1.386l-0.514 0.226-2.862-1.147-0.216-0.515c-0.418-1.049-1.010-2.45-1.377-3.214h-1.797c-0.322 0.726-0.842 2.039-1.266 3.199l-0.205 0.537-2.862 1.158-0.505-0.214c-1.126-0.482-2.526-1.041-3.324-1.329l-1.259 1.234c0.3 0.737 0.919 2.096 1.399 3.12l0.251 0.514-1.185 2.849-0.514 0.202c-0.537 0.209-2.357 0.919-3.288 1.347v1.709c0.768 0.337 2.199 0.86 3.265 1.246l0.551 0.19 1.179 2.847-0.226 0.505c-0.451 1.032-1.039 2.428-1.339 3.218l1.254 1.233c0.727-0.29 2.071-0.862 3.229-1.401l0.515-0.226zM16.127 22.002c-3.263-0.068-5.881-2.729-5.881-6.001 0-3.315 2.687-6.003 6.003-6.003 3.314 0 6 2.685 6.003 5.998v0c-0.031 3.324-2.733 6.006-6.061 6.006-0.021 0-0.043-0-0.064-0l0.003 0zM16.127 12.573c-1.838 0.062-3.305 1.567-3.305 3.415 0 1.887 1.53 3.416 3.416 3.416 1.884 0 3.412-1.525 3.416-3.407v-0c-0.032-1.894-1.575-3.417-3.473-3.417-0.018 0-0.037 0-0.055 0l0.003-0z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" id="star-empty">
<title>star-empty</title>
<path d="M32 12.408l-11.056-1.607-4.944-10.018-4.944 10.018-11.056 1.607 8 7.798-1.889 11.011 9.889-5.199 9.889 5.199-1.889-11.011 8-7.798zM16 23.547l-6.983 3.671 1.334-7.776-5.65-5.507 7.808-1.134 3.492-7.075 3.492 7.075 7.807 1.134-5.65 5.507 1.334 7.776-6.983-3.671z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" id="star-full">
<title>star-full</title>
<path d="M32 12.408l-11.056-1.607-4.944-10.018-4.944 10.018-11.056 1.607 8 7.798-1.889 11.011 9.889-5.199 9.889 5.199-1.889-11.011 8-7.798z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" id="star-half">
<title>star-half</title>
<path d="M32 12.408l-11.056-1.607-4.944-10.018-4.944 10.018-11.056 1.607 8 7.798-1.889 11.011 9.889-5.199 9.889 5.199-1.889-11.011 8-7.798zM16 23.547l-0.029 0.015 0.029-17.837 3.492 7.075 7.807 1.134-5.65 5.507 1.334 7.776-6.983-3.671z"></path>
</symbol>
</svg>
</body>
</html>