• DELETE FROM KEYWORDS WHERE ID_DOMAINE=12393483
  • DoneDoneDone

    URL:www.the42.ie

    Connection: keep-alive
    Date: Thu, 31 Oct 2024 06:22:21 GMT
    Content-Length: 110
    Content-Type: text/html
    Location: https://www.the42.ie:443/
    Server: awselb/2.0
    
    
    Location => https://www.the42.ie:443/
    Status => 302
    <html>
    <head><title>302 Found</title></head>
    

    (vide) Tentative en https

    https://www.the42.ie:443/

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"  class="theme--the42 new-tag-design-feature-flag new-masthead-design-feature-flag new-compact-masthead-design-feature-flag active-publication-masthead layout-redesign redesign-desktop-breakpoint homepage" style="" lang="en" xml:lang="en" xmlns:og="http://opengraphprotocol.org/schema/">
        <head>
    
            <script>
      document.cookie = "__adblocker=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/";
      var setNptTechAdblockerCookie = function(adblocker) {
        var d = new Date();
        d.setTime(d.getTime() + 60 * 5 * 1000);
        document.cookie = "__adblocker=" + (adblocker ? "true" : "false") + "; expires=" + d.toUTCString() + "; path=/";
      };
      var script = document.createElement("script");
      script.setAttribute("async", true);
      script.setAttribute("src", "//www.npttech.com/advertising.js");
      script.setAttribute("onerror", "setNptTechAdblockerCookie(true);");
      document.getElementsByTagName("head")[0].appendChild(script);
    </script>
    <script type="application/json" id="piano-consent-mode">{"requireConsent":false}</script>
    <script>
        const consentMode = JSON.parse(document.getElementById("piano-consent-mode").innerHTML);
    
        window.pdl = window.pdl || {};
        window.pdl.requireConsent = consentMode.requireConsent;
    </script>
    
            <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
            <title>The 42</title>
            <script src="//d2wy8f7a9ursnm.cloudfront.net/v7/bugsnag.min.js"></script>
    <script type="text/javascript"  src="//b0.thejournal.ie/bugsnag/js/bugsnag-fallback-dummy-object.js"></script>
    <script type="application/json" id="bugsnagConfig">{"apiKey":"d8ea1607a1890612140d557a3e0159b8","releaseStage":"production","appVersion":"20241030144120"}</script>
    <script>
        let bugsnagConfig = JSON.parse(document.getElementById("bugsnagConfig").innerHTML);
        Bugsnag.start(bugsnagConfig)
    </script>
            
        <!-- OneTrust Cookies Consent Notice start -->
        <script src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js"
                type="text/javascript"
                charset="UTF-8"
                data-domain-script="00023fda-6a2f-4679-ab09-7eec70245165"
        ></script>
    
        <script type="text/javascript">
    
            if (!String.prototype.startsWith) {
                try {
                    Object.defineProperty(String.prototype, 'startsWith', {
                        value: function (search, rawPos) {
                            var pos = rawPos > 0 ? rawPos | 0 : 0;
                            return this.substring(pos, pos + search.length) === search;
                        }
                    });
                } catch (e) {
                    String.prototype.startsWith = function (search, rawPos) {
                        var pos = rawPos > 0 ? rawPos | 0 : 0;
                        return this.substring(pos, pos + search.length) === search;
                    };
                }
            }
    
            var CookieConsentListener = {};
            var CookieConsentRepository = {};
            var CookieConsentBanner = {};
    
            (function()
            {
                function CookieConsent(functional, performance, targeting)
                {
                    this.functional = functional;
                    this.performance = performance;
                    this.targeting = targeting;
                }
    
                /**
                 * @returns {CookieConsent}
                 */
                CookieConsent.makeDefaultNoConsent = function()
                {
                    var functional = false, performance = false, targeting = false;
                    return new CookieConsent(functional, performance, targeting);
                };
    
                /**
                 * @returns {CookieConsent}
                 */
                CookieConsentRepository.fetch = function()
                {
                    var rawConsentCookie = document.cookie
                        .split('; ')
                        .filter(function (row) {
                            return row.startsWith('OptanonConsent');
                        })[0];
    
                    if (rawConsentCookie === undefined) {
                        return CookieConsent.makeDefaultNoConsent();
                    }
    
                    var consentCookie = new QueryString(rawConsentCookie.substring(15));
    
                    var consentGroups = consentCookie.get('groups');
    
                    if (!consentCookie.has('groups')) {
                        return CookieConsent.makeDefaultNoConsent();
                    }
    
                    var consentByCategory = {};
    
                    consentGroups.split(",").forEach(function (category) {
                        var parts = category.split(":");
                        consentByCategory[parts[0]] = parts[1] === "1";
                    });
    
                    var functional = consentByCategory.C0003 === true;
                    var performance = consentByCategory.C0002 === true;
                    var targeting = consentByCategory.C0004 === true;
    
                    return new CookieConsent(functional, performance, targeting);
                };
    
                CookieConsentRepository.hasUserDecided = function ()
                {
                    var alertBoxCookie = document.cookie
                        .split('; ')
                        .filter(function (row) {
                            return row.startsWith('OptanonAlertBoxClosed');
                        })[0];
    
                    return alertBoxCookie !== undefined;
                };
    
                function QueryString(stringValue)
                {
                    this.valuesByKey = {};
    
                    var keyValuePairs = stringValue.split("&");
    
                    for (var i = 0; i < keyValuePairs.length; i++) {
                        var keyValuePair = keyValuePairs[i].split("=");
                        var key = decodeURIComponent(keyValuePair[0]);
                        var value = decodeURIComponent(keyValuePair[1]);
                        this.valuesByKey[key] = value;
                    }
                }
    
                QueryString.prototype.get = function (key)
                {
                    return this.valuesByKey[key];
                }
    
                QueryString.prototype.has = function (key)
                {
                    return this.valuesByKey.hasOwnProperty(key);
                }
    
                CookieConsentListener = {
                    functional: [],
                    performance: [],
                    targeting: [],
                };
    
                CookieConsentListener.onFunctionalConsentChange = function(callback)
                {
                    CookieConsentListener.functional.push(callback);
                };
    
                CookieConsentListener.onPerformanceConsentChange = function(callback)
                {
                    CookieConsentListener.performance.push(callback);
                };
    
                CookieConsentListener.onTargetingConsentChange = function(callback)
                {
                    CookieConsentListener.targeting.push(callback);
                };
    
                var previousConsent = CookieConsentRepository.fetch();
    
                CookieConsentListener.triggerChange = function()
                {
                    var consent = CookieConsentRepository.fetch();
    
                    var key;
    
                    if (previousConsent.functional !== consent.functional) {
                        for (key in CookieConsentListener.functional) {
                            CookieConsentListener.functional[key](consent.functional);
                        }
                    }
    
                    if (previousConsent.performance !== consent.performance) {
                        for (key in CookieConsentListener.performance) {
                            CookieConsentListener.performance[key](consent.performance);
                        }
                    }
    
                    if (previousConsent.targeting !== consent.targeting) {
                        for (key in CookieConsentListener.targeting) {
                            CookieConsentListener.targeting[key](consent.targeting);
                        }
                    }
    
                    previousConsent = consent;
                };
    
                CookieConsentBanner.pagesWhereBannerIsHidden = [
                    "/cookies-privacy-policy/",
                ];
    
                CookieConsentBanner.hide = function () {
                    document.getElementById("onetrust-consent-sdk").style.display = "none";
                };
    
                CookieConsentBanner.show = function () {
                    document.getElementById("onetrust-consent-sdk").style.display = "block";
                };
    
                CookieConsentBanner.onCookiePreferencesClick = function (callback) {
                    if (document.getElementById("ot-sdk-btn") !== null) {
                        document.getElementById("ot-sdk-btn").addEventListener("click", callback);
                    }
                }
    
                CookieConsentBanner.whenReady = function () {
                    var waitedForMs = 0;
                    var intervalDelayInMs = 10;
    
                    return new Promise(function (resolve, reject) {
                        var waitForOneTrust = setInterval(function () {
                            if (document.readyState === "loading") {
                                return;
                            }
    
                            waitedForMs += intervalDelayInMs;
    
                            if (!window.OneTrust) {
                                if (waitedForMs <= 2000) {
                                    return;
                                } else {
                                    clearInterval(waitForOneTrust);
    
                                    reject("After " + waitedForMs + "ms, OneTrust is not available");
                                }
                            }
    
                            clearInterval(waitForOneTrust);
    
                            resolve();
                        }, intervalDelayInMs)
                    });
                }
    
                CookieConsentBanner.onClose = function () {
                    var intervalDelayInMs = 10;
    
                    return new Promise(function (resolve, reject) {
                        var waitForClosed = setInterval(function () {
    
                            if (
                                !window.OneTrust
                                || typeof window.OneTrust.IsAlertBoxClosed !== "function"
                                || !window.OneTrust.IsAlertBoxClosed()
                            ) {
                                return;
                            }
    
                            clearInterval(waitForClosed);
    
                            resolve();
                        }, intervalDelayInMs)
                    });
                }
            }());
    
            function bootYoutubeIframes()
            {
                function consentYes()
                {
                    var iframes = document.getElementsByClassName('youtube-player');
                    for (var i = 0; i < iframes.length; i++) {
                        var src = iframes[i].getAttribute('data-src');
                        iframes[i].setAttribute('src', src);
                    }
                }
    
                function consentNo()
                {
                    var iframes = document.getElementsByClassName('youtube-player');
                    for (var i = 0; i < iframes.length; i++) {
                        iframes[i].setAttribute('src', '');
                    }
                }
    
                var consent = CookieConsentRepository.fetch();
                if (consent.targeting) {
                    consentYes();
                }
    
                CookieConsentListener.onTargetingConsentChange(function(hasTargetingConsent) {
                    if (hasTargetingConsent) {
                        consentYes();
                        return;
                    }
                    consentNo();
                });
            }
    
            function bootVimeoIframes()
            {
                function consentYes()
                {
                    var iframes = document.getElementsByClassName('vimeo-player');
                    for (var i = 0; i < iframes.length; i++) {
                        var src = iframes[i].getAttribute('data-src');
                        iframes[i].setAttribute('src', src);
                    }
                }
    
                function consentNo()
                {
                    var iframes = document.getElementsByClassName('vimeo-player');
                    for (var i = 0; i < iframes.length; i++) {
                        iframes[i].setAttribute('src', '');
                    }
                }
    
                var consent = CookieConsentRepository.fetch();
                if (consent.functional) {
                    consentYes();
                }
    
                CookieConsentListener.onFunctionalConsentChange(function(hasFunctionalConsent) {
                    if (hasFunctionalConsent) {
                        consentYes();
                        return;
                    }
                    consentNo();
                });
            }
    
            document.addEventListener("DOMContentLoaded", function(){
                bootYoutubeIframes();
                bootVimeoIframes();
            });
    
            window.addEventListener("message", function (event) {
                if (event.data === "openCookieConsentDialog") {
                    OneTrust.ToggleInfoDisplay();
                }
            }, false);
    
            function OptanonWrapper()
            {
                const pageUrlPath = (new URL(window.location.href)).pathname;
    
                if (CookieConsentBanner.pagesWhereBannerIsHidden.includes(pageUrlPath)) {
                    CookieConsentBanner.hide();
                }
    
                CookieConsentBanner.onCookiePreferencesClick(function () {
                    CookieConsentBanner.show();
                });
    
                OneTrust.OnConsentChanged(function (e) {
                    CookieConsentListener.triggerChange();
                });
            }
        </script>
    
            
        <script>
    
            !function(f,b,e,v,n,t,s)
            {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
                n.callMethod.apply(n,arguments):n.queue.push(arguments)};
                if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
                n.queue=[];t=b.createElement(e);t.async=!0;
                t.src=v;s=b.getElementsByTagName(e)[0];
                s.parentNode.insertBefore(t,s)}(window, document,'script',
                'https://connect.facebook.net/en_US/fbevents.js');
    
            (function () {
    
                function consentYes() {
                    fbq('consent', 'grant');
                }
    
                function consentNo() {
                    fbq('consent', 'revoke');
                }
    
                function boot() {
    
                    var consent = CookieConsentRepository.fetch();
                    if (consent.targeting) {
                        consentYes();
                    } else {
                        consentNo();
                    }
    
                    fbq('init', '417668522941443');
                    fbq('track', 'PageView');
    
                    CookieConsentListener.onTargetingConsentChange(function(hasTargetingConsent) {
                        if (hasTargetingConsent) {
                            consentYes();
                            return;
                        }
                        consentNo();
                    });
                }
    
                boot();
    
            })();
        </script>
                                <link rel="apple-touch-icon" sizes="180x180" href="//b0.thejournal.ie/redesign/i/the42/apple-touch-icon.png">
                <link rel="icon" type="image/png" sizes="32x32" href="//b0.thejournal.ie/redesign/i/the42/favicon-32x32.png">
                <link rel="icon" type="image/png" sizes="16x16" href="//b0.thejournal.ie/redesign/i/the42/favicon-16x16.png">
                <link rel="manifest" href="/site.webmanifest">
                <link rel="mask-icon" href="//b0.thejournal.ie/responsive/i/the42/safari-pinned-tab.svg" color="#07188a">
                <meta name="msapplication-TileColor" content="#da532c">
                <meta name="theme-color" content="#ffffff">
            
            <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i" rel="stylesheet">
            <meta name="apple-itunes-app" content="app-id=529792907">
    <script type="text/javascript">
        document.documentElement.className+=' js';
        var ajaxurl = '//www.the42.ie/ajax.php';
        var stats_url = 'https://www.the42.ie/statsscript.php';
        var current_url = 'www.the42.ie/';
        var load_time = '2024-10-31 06:22:21';
        var current_post_id = 0;
        var current_post_permalink = '';
        var stats_key = "061d96373440e88eb397c94f5ceb68db";
        var wp_logged_in = false;
        var current_title = "";
    
        window.jrnl_social_connected = false;
    
        var _sf_startpt=(new Date()).getTime()
    
        var app_cookie_domain = '.the42.ie';
        var session_domain = "https://www.thejournal.ie";
        var root_domain = "thejournal.ie";
    </script>
    <script type="text/javascript" src="https://www.thejournal.ie/utils/sync_session_cookie.php?domain=.the42.ie&loggedin=0"></script>
    <script type="text/javascript">
        var sync_sess = "https://www.thejournal.ie/utils/sync_session_cookie.php?domain=.the42.ie&loggedin=0";
    </script>
    <script type="text/javascript">
        document.domain = "the42.ie";
    
        window.on_front = true;
                    window.authenticator = '';
        window.login_expires = 1888122141;
    
                    window.fbAsyncInit = function() {
                    FB.init({appId: "116141121768215", status: true, cookie: true,
                    xfbml: true});
                                            if(typeof sync_with_server != 'undefined')
                            {
                                sync_with_server();
                            }
                                        };
                (function(d){
                    var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
                    js = d.createElement('script'); js.id = id; js.async = true;
                    js.src = "//connect.facebook.net/en_US/all.js";
                    d.getElementsByTagName('head')[0].appendChild(js);
                }(document));
                    window.email_permission = false;
    </script>
            <link rel="alternate" type="application/rss+xml" title="The 42 &raquo; Feed" href="/feed/" />
    
                        <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
                <script>
                    window.jQuery || document.write('<script src="https://b0.thejournal.ie/desktop/js/jquery-1.7.2.min.js"><\/script>')
                </script>
            
            <script>
                // viewability js
                _jrnl_viewability = [];
                _jrnl_sidebar = [];
            </script>
    
            <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
            <script src="https://unpkg.com/@dotlottie/player-component@latest/dist/dotlottie-player.mjs" type="module"></script>
    
            
                    <script type='text/javascript'>
                        var is_box_window = false;
                        var is_box_name = '';
                    </script>
    
                
                <script type="text/javascript" src="//b0.thejournal.ie/desktop/js/build/current-f632fdf77b.js"></script>
                <script type="text/javascript" src="//b0.thejournal.ie/desktop/js/build/legacy-common-ea7920673d.js"></script>
    
                
                <script type="text/javascript" src=""></script>
    
                <script defer src="https://www.gstatic.com/firebasejs/9.13.0/firebase-app-compat.js"></script>
    <script defer src="https://www.gstatic.com/firebasejs/9.13.0/firebase-auth-compat.js"></script>
    <script defer src="https://www.gstatic.com/firebasejs/ui/6.0.2/firebase-ui-auth.js"></script>
    <link type="text/css" rel="stylesheet" href="https://www.gstatic.com/firebasejs/ui/6.0.2/firebase-ui-auth.css" />
    <script type="application/json" id="firebaseConfig">{"apiKey":"AIzaSyCcJAgLkiMNJjIWXkk8-FiSGARpZvoEYfg","authDomain":"www.the42.ie","databaseURL":"https:\/\/account-membership-prototype.firebaseio.com","projectId":"account-membership-prototype","storageBucket":"account-membership-prototype.appspot.com","messagingSenderId":"488317035541","appId":"1:488317035541:web:d743aaeed2801117"}</script>
    
                                <script type="text/javascript" src="//b0.thejournal.ie/redesign/js/redesign-17d9b1507d.js" viewType="desktop"></script>
                
                        <link rel="stylesheet" type="text/css" href="//b0.thejournal.ie/desktop/css/build/desktop-e03114e7b5.css" />
            <link rel="stylesheet" type="text/css" href="//b0.thejournal.ie/desktop/css/build/legacy-common-557acc18ff.css" />
            <link rel="stylesheet" type="text/css" href="//b0.thejournal.ie/merge.php?css=~thescore&view_type=desktop&v=f2252522-f1cc-4de0-b655-eb940dd8e143" />
            
            <meta name="description" content="The latest Irish and international sports news from The 42" />
            <meta name="keywords" content="irish sports news, GAA, gaelic, football, soccer, golf, horse racing, motor racing, ireland, irish" />
            <meta name="news_keywords" content="irish sports news, GAA, gaelic, football, soccer, golf, horse racing, motor racing, ireland, irish" />
    <link rel="next" href="https://www.the42.ie/page/2/" /><meta name="fb:app_id" content="116141121768215" />
    <meta property="og:type" content="website"/>
    <meta property="og:title" content="The 42"/>
    <meta property="og:url" content="https://www.the42.ie"/>
    <meta property="og:image" content="https://graph.facebook.com/v3.2/110967718965726/picture?type=large"/>
    <meta property="og:site_name" content="The 42"/>
    <meta property="fb:pages" content="110967718965726"/>
    <script>
        var commentSec = {
            token : "c65560743"
        }
    </script>
    <script type="text/javascript">
        window.dataLayer = window.dataLayer || [];
        function gtag(){dataLayer.push(arguments);}
    
        var cookieConsent = CookieConsentRepository.fetch();
    
        gtag('consent', 'default', {
            'ad_storage': cookieConsent.targeting ? "granted" : "denied",
            'ad_user_data': cookieConsent.targeting ? "granted" : "denied",
            'ad_personalization': cookieConsent.targeting ? "granted" : "denied",
            'analytics_storage': cookieConsent.performance ? "granted" : "denied"
        });
    </script>
    
    <script type='text/javascript'>
    var googletag = googletag || {};
    googletag.cmd = googletag.cmd || [];
    (function() {
        var gads = document.createElement('script');
        gads.async = true;
        gads.type = 'text/javascript';
        var useSSL = 'https:' == document.location.protocol;
        gads.src = (useSSL ? 'https:' : 'http:') +
        '//securepubads.g.doubleclick.net/tag/js/gpt.js';
        var node = document.getElementsByTagName('script')[0];
        node.parentNode.insertBefore(gads, node);
    })();
    </script>
    
    <script type='text/javascript'>
    
    googletag.cmd.push(function() {
    
        if (CookieConsentRepository.hasUserDecided() === false) {
            console.log("User Consent: Google Ads disable initial load");
            googletag.pubads().disableInitialLoad();
        }
        
        var consent = CookieConsentRepository.fetch();
        console.log("User Consent: Google Ads " + (consent.targeting ? "enabled" : "disabled"));
    
        CookieConsentListener.onTargetingConsentChange(function (hasTargetingConsent) {
    
            gtag('consent', 'update', {
                'ad_storage': hasTargetingConsent ? "granted" : "denied",
                'ad_user_data': hasTargetingConsent ? "granted" : "denied",
                'ad_personalization': hasTargetingConsent ? "granted" : "denied",
            });
    
                        googletag.pubads().refresh();
                    console.log("User Consent: Google Ads " + (hasTargetingConsent ? "enabled" : "disabled"));
        });
    googletag.defineSlot('/5512429/J_MPU', [["fluid"],[1,1],[300,250],[300,600]], 'div-gpt-ad-1365092406213-0').addService(googletag.pubads());
    googletag.defineSlot('/5512429/J_MPU_2', [["fluid"],[1,1],[300,250],[300,600]], 'div-gpt-ad-1365092406213-1').addService(googletag.pubads());
    googletag.defineSlot('/5512429/J_MPU_3', [["fluid"],[1,1],[300,250],[300,600]], 'div-gpt-ad-1365092406213-2').addService(googletag.pubads());
    googletag.defineSlot('/5512429/J_MPU_4', [["fluid"],[1,1],[300,250],[300,600]], 'div-gpt-ad-1365092406213-3').addService(googletag.pubads());
    googletag.defineSlot('/5512429/J_Leaderboard', [[1,1],[728,90],[970,250]], 'div-gpt-ad-1365092406213-4').addService(googletag.pubads());
    googletag.pubads().setTargeting('platform', 'desktop');
    googletag.pubads().setTargeting('sitemode', 'default');
    
    googletag.pubads().setTargeting('site', 'thescore');
    googletag.pubads().setTargeting('publication', 'thescore');
    googletag.pubads().setTargeting('section', ["river","homepage"]);
        googletag.pubads().setTargeting('issubscriber', 'false');
    googletag.pubads().setTargeting('tiling', '2');
    
    //googletag.pubads().disableInitialLoad();
    
        googletag.pubads().setTargeting('weatherstate', "38");
    
    googletag.pubads().setTargeting('ab_bucket', '0');
    
        googletag.pubads().enableLazyLoad({
            // Fetch slots within 2 viewports.
            fetchMarginPercent: 200,
            // Render slots within 1 viewports.
            renderMarginPercent: 100,
            // Double the above values on mobile, where viewports are smaller
            // and users tend to scroll faster.
            mobileScaling: 2.0
        });
    
        // Just for debug purposes...
        googletag.pubads().addEventListener('slotRequested', function(event) {
            console.log("Fetched:" + event.slot.getAdUnitPath());
        });
        googletag.pubads().addEventListener('slotOnload', function(event) {
            console.log("Loaded:" + event.slot.getAdUnitPath());
        });
    
    googletag.pubads().enableSingleRequest();
    
    googletag.pubads().setPublisherProvidedId('0DBCB36BD3B0BFD011136B7EDDC05460');
    
        googletag.pubads().collapseEmptyDivs();
        googletag.enableServices();
    
        googletag.pubads().addEventListener('slotOnload', function(event) {
            if (event.slot.getAdUnitPath() === "/5512429/J_Riverblock") {
                let adContainer = document.getElementById("mid-article-riverblock");
                let adFrame = adContainer.querySelector("iframe");
    
                let adFrameIsDisplayed = adFrame.style.display !== "none";
                let adSizeIs1x1 = adFrame.width === "1" && adFrame.height === "1";
    
                if (adFrameIsDisplayed && !adSizeIs1x1) {
                    adContainer.style.display = "block";
                }
            }
        });
    
        if (stickyAdverts) {
            googletag.pubads().addEventListener('slotOnload', function(event) {
                stickyAdverts.onAdLoaded(event.slot.getAdUnitPath());
            });
        }
    
    });
    
    dfpLoadCheck('div-gpt-ad-1365092406213-4');
    </script>
    
    
    
            <!-- IE9 Pinning -->
            <meta name="application-name" content="TheJournal" />
            <meta name="msapplication-tooltip" content="TheJournal.ie - Read, Share and Shape the news" />
            <meta name="msapplication-starturl" content="https://www.thejournal.ie/" />
            <meta name="msapplication-task" content="name=The 9 at 9;action-uri=https://www.thejournal.ie/9at9;icon-uri=//b0.thejournal.ie/redesign/i/thejournal/favicon.ico" />
            <meta name="msapplication-task" content="name=The 42;action-uri=https://www.the42.ie/;icon-uri=//b0.thejournal.ie/desktop/i/the42/favicon.ico" />
            <meta name="msapplication-task" content="name=Business Etc;action-uri=https://businessetc.thejournal.ie/;icon-uri=//b0.thejournal.ie/desktop/i/businessetc/favicon.ico" />
            <meta name="msapplication-task" content="name=DailyEdge.ie;action-uri=https://thedailyedge.thejournal.ie/;icon-uri=//b0.thejournal.ie/desktop/i/thedailyedge/favicon.ico" />
            <meta name="msapplication-task" content="name=Irish News;action-uri=https://www.thejournal.ie/irish/;icon-uri=//b0.thejournal.ie/redesign/i/thejournal/favicon.ico" />
            <!-- /IE9 Pinning -->
    
    
            <script src='https://www.google.com/recaptcha/api.js'></script>
                        <script>
                    document.querySelectorAll("a").forEach(function (el) {
                        el.addEventListener("click", e => {
                            e.target.href += "?redesign";
                        });
                    });
                </script>
                <style>
                    .responsive-top-stories {
                        float: none;
                        margin-left: auto;
                        margin-right: auto;
                    }
                    .responsive-article.desktop,
                    .responsive-ad-container.desktop,
                    .responsive-article.voices.desktop,
                    .roundup.desktop,
                    .article-divider.desktop
                    {
                        width: 650px;
                        margin-left: auto;
                        margin-right: auto;
                    }
                    .post,
                    .articleExtraDetails,
                    .read_next_block.in_article,
                    #comments,
                    .new_river_header {
                        max-width: 650px;
                    }
    
                    #cao-results {
                        max-width: 630px;
                    }
                </style>
            
                        <link rel="stylesheet" type="text/css" href="//b0.thejournal.ie/redesign/css/main-redesign-1e07eac6dd.css" />
            
            
        </head>
    
        
        <!--[if IE 6]>

    The 42

    Recherche META Description de la page

    The latest Irish and international sports news from The 42

    Recherche META Keywords de la page

    irish sports news, GAA, gaelic, football, soccer, golf, horse racing, motor racing, ireland, irish

    UPDATE DOMAINES SET server='awselb/2.0',redirection='https://www.the42.ie:443/',Status='200',err='',[TITRE]=N'The 42',[DESCRIPTION]=N'The latest Irish and international sports news from The 42',[KEYWORDS]=N'irish sports news, GAA, gaelic, football, soccer, golf, horse racing, motor racing, ireland, irish' WHERE id=12393483
  • 0

    The 42 The latest Irish and international sports news from The 42 irish sports news GAA gaelic football soccer golf horse racing motor racing ireland irish

  • 0. The (3)
  • --------->0
  • 1. 42 (2)
  • --------->0
  • 3. latest (6)
  • --------->0
  • 4. Irish (5)
  • --------->0
  • 5. and (3)
  • --------->0
  • 6. international (13)
  • --------->0
  • 7. sports (6)
  • --------->0
  • 8. news (4)
  • --------->0
  • 9. from (4)
  • --------->0
  • 16. GAA (3)
  • --------->0
  • 18. gaelic (6)
  • --------->0
  • 20. football (8)
  • --------->0
  • 22. soccer (6)
  • --------->0
  • 24. golf (4)
  • --------->0
  • 26. horse (5)
  • --------->0
  • 27. racing (6)
  • --------->0
  • 29. motor (5)
  • --------->0
  • 32. ireland (7)
  • --------->0
    INSERT INTO KEYWORDS (keyword,id_domaine) VALUES (N'The',12393483),(N'42',12393483),(N'latest',12393483),(N'Irish',12393483),(N'and',12393483),(N'international',12393483),(N'sports',12393483),(N'news',12393483),(N'from',12393483),(N'GAA',12393483),(N'gaelic',12393483),(N'football',12393483),(N'soccer',12393483),(N'golf',12393483),(N'horse',12393483),(N'racing',12393483),(N'motor',12393483),(N'ireland',12393483)