<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">(function(){
    
    
    function updateLinks(){
        try{
            var links = Array.from(document.querySelectorAll('[role=link]'));
            var cpList = links.filter(x=&gt;x.innerText == 'Cookie Policy');
            var ppList = links.filter(x=&gt;x.innerText == 'Privacy Policy');
            var cp = cpList.at(0);
            var pp = ppList.at(0);
            if(cp!=null &amp;&amp; !cp.classList.contains('mod_elem')){
                var clone = cp.cloneNode(true);
                clone.onclick = function() { window.open('/cookiepolicy.html', '_blank');}
                clone.classList.add('mod_elem');
                cp.replaceWith(clone);
            }
            if(pp!=null &amp;&amp; !pp.classList.contains('mod_elem')){
                var clone = pp.cloneNode(true);
                clone.onclick = function() { window.open('/privacy.html', '_blank');}
                clone.classList.add('mod_elem');
                pp.replaceWith(clone);
            }
            let dnsList = document.querySelectorAll('a[href*="https://app.termly.io/notify/"]');
            dnsList.forEach(x =&gt; { x.remove();});
        }
        catch{}
    }
    if(navigator.userAgent.indexOf('Win') == -1){
        document.querySelector(".download_link").disabled = true;
        document.querySelector(".download_link").style.opacity = 0.5;
        document.querySelector(".download_link").style.cursor = 'default';
        document.querySelector(".download_link").style.fontSize = '15px';
        document.querySelector(".download_link").innerText = "To Download, visit us on windows desktop service";
        document.querySelector(".download_link").style.alignContent = 'center';
        if(document.querySelector('.intro-title'))
            document.querySelector('.intro-title').style.display = 'none';
        if(document.querySelector('.agrmnt'))
            document.querySelector('.agrmnt').style.display = 'none';

        const downBtn = document.querySelector('.dlbutton button');
        if(downBtn){
            const beforeContent = window.getComputedStyle(downBtn, '::before').content;
            if(!beforeContent.content){
             let style = document.createElement('style');
                style.innerHTML = `
                .dlbutton button::before {
                    content: none !important; 
                }
                `;
                document.head.appendChild(style);
                downBtn.style.color = "black"
            }
        }
        var btnDownload = document.querySelectorAll('.download_link, .downloadBtn');
        for (var i = 0; i &lt; btnDownload.length; i++) {
            btnDownload[i].onclick = function() {}
        }
    }
   
    setInterval(updateLinks, 500);
})()</pre></body></html>