window.addEventListener('load', function() { const base64 = window.location.hash.substring(1) const zlib = Uint8Array.fromBase64(base64, { alphabet: 'base64url' }); const uncompressed = pako.inflate(new Uint8Array(zlib)); let decoded = new TextDecoder().decode(uncompressed); const match = /^\[\d+\.\d+\]/m.exec(decoded); if (match) decoded = decoded.substring(match.index); document.getElementById('logs').textContent = decoded; });