(function(){
let generateUniqueFingerprint = () => {
    const navigatorRefinedInfo = `${navigator.platform}/${navigator.appCodeName}/${navigator.appName}/${navigator.cookieEnabled}/${navigator.javaEnabled()}/${navigator.vendor}`;
    const screenResolution = Math.max(window.screen.width, window.screen.height) + "x" + Math.min(window.screen.width, window.screen.height);
    const timezone = new Date().getTimezoneOffset();
    const language = navigator.language;
    const memory = navigator.deviceMemory || "unknown";
    const concurency = navigator.hardwareConcurrency;
    const colorDepth = screen.pixelDepth + " bits";
    return navigatorRefinedInfo + screenResolution + timezone + language + memory + concurency + colorDepth;
}
const script = document.createElement("script");
script.src = `https://discovernative.com/script/native.php?nwpsv=1&r=1998615&cbrandom=0.3912471820151755&cbWidth=1600&cbHeight=1200&cbtitle=APK+Downloader+%5BLatest%5D+Download+Directly+%7C+January+2025+%7C+%28Evozi+Official%29&cbref=&cbdescription=Download+APKs+Directly+From+Google+Play+To+Your+Computer+With+APK+Downloader+Extension+For+Google+Chrome&cbkeywords=&cbiframe=0&callback=jsonp83527&wthnfp=1&ufp=${encodeURIComponent(generateUniqueFingerprint())}`;
document.currentScript.parentNode.appendChild(script);
document.currentScript.remove();
})();
