(function () { const html = `
`; function getContainer() { return ( document.getElementById("anj-8e0b349a-351a-45a2-bf58-a20ab3ab52e0") || document.getElementById("anj-seal-container") ); } function mount() { const container = getContainer(); if (!container) { console.log("[license-script] Seal container not found yet"); return false; } console.log("[license-script] Mounting seal into container", container.id || "(no id)"); container.innerHTML = html; return true; } if (mount()) { return; } let attempts = 0; function retryMount() { if (mount() || attempts >= 50) { if (attempts >= 50) { console.log("[license-script] Stopped waiting for seal container after 50 attempts"); } return; } attempts += 1; console.log("[license-script] Retrying seal mount", attempts); setTimeout(retryMount, 500); } console.log("[license-script] Initial mount missed, starting retry loop"); retryMount(); })();