<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">window.diy = window.diy || {};
window.diy.context = window.diy.context || {};
window.diy.context.type = 'web';
window.diy.context.isLoggedIn = false;
window.diy.context.isPublicView = /publicview=1/.test(location.search);
window.diy.context.isMobilePreviewView = /mobilepreview=1/.test(location.search);

(function () {
    var loadResourcesInterval = setInterval(function () {
        if (typeof jQuery === 'undefined') {
            return;
        } else {
            clearInterval(loadResourcesInterval);
            if (location.search.indexOf('logincallout=1') != -1) {
                jQuery("&lt;link/&gt;", {
                    rel: "stylesheet",
                    type: "text/css",
                    href: jimdoData.cdnUrl + "s/css/web/logincallout.css?1736695885"
                }).appendTo("head");
                jQuery.getScript(webPath + 'cc/logincallout.php');
            }
        }
    }, 100);
}());

</pre></body></html>