Empoli vs Cremonese
Serie B · Italy · 22 Aug 2026, 19:00 UTC
Proof this pick was locked in before kickoff
The pick was encrypted before kickoff and published the moment it was sealed to Telegram and GitHub, each carrying an independent timestamp. The encrypted batch is also anchored in Bitcoin — a public record nobody, including us, can alter or back-date. After the match the key is released; decrypting that exact pre-published message reveals the pick, proving it was fixed in advance, not cherry-picked.
YH+tzgXJ2a8QiagwZ1AP5jofSgAJ8r2TbzxG7zs8iu096vjZRjyyGnMCQ3hK4S99hm0hrO6EpQpARWZFtOVNKnJI7Yvyy10XjYa/ihfnLcef8z9ygLM94h485rwHAm4FuFSihmARK9ymWiUD8w7Gaf1MFGFUen4AXW33/stWB83LflW31Gqkg8r4anJkn42u1AyUOTq9DY1ct492HWPk1XkH+B6TneJ38TdAX0dH5HiSCE0c+lIwAoWWwuFbRBLu2D0N5zXd60x9YLmf57X7OKnM0IYgUy0w0FdLSszK8vazfbHlMUpPKHuK6Jv5GOMYXHmY6hGi7PfzJDYVaJKyEyjGEYWDWCOIIg62
d867cd90b90280c25d2e394335f3776edd2ae931c5381dab622de3f70ce3ac64Decrypt in CyberChef →
Verify it yourself — paste both values, no install
The Encrypted pick above is base64( nonce[12 bytes] + ciphertext + tag[16 bytes] ),
AES-256-GCM. Zero-install check: open your browser console (press F12 → Console),
paste this, press Enter — it decrypts the exact pick shown above:
const blob = Uint8Array.from(atob("YH+tzgXJ2a8QiagwZ1AP5jofSgAJ8r2TbzxG7zs8iu096vjZRjyyGnMCQ3hK4S99hm0hrO6EpQpARWZFtOVNKnJI7Yvyy10XjYa/ihfnLcef8z9ygLM94h485rwHAm4FuFSihmARK9ymWiUD8w7Gaf1MFGFUen4AXW33/stWB83LflW31Gqkg8r4anJkn42u1AyUOTq9DY1ct492HWPk1XkH+B6TneJ38TdAX0dH5HiSCE0c+lIwAoWWwuFbRBLu2D0N5zXd60x9YLmf57X7OKnM0IYgUy0w0FdLSszK8vazfbHlMUpPKHuK6Jv5GOMYXHmY6hGi7PfzJDYVaJKyEyjGEYWDWCOIIg62"), c => c.charCodeAt(0));
const key = Uint8Array.from("d867cd90b90280c25d2e394335f3776edd2ae931c5381dab622de3f70ce3ac64".match(/../g).map(h => parseInt(h, 16)));
crypto.subtle.importKey("raw", key, "AES-GCM", false, ["decrypt"])
.then(k => crypto.subtle.decrypt({ name: "AES-GCM", iv: blob.slice(0, 12) }, k, blob.slice(12)))
.then(b => console.log(new TextDecoder().decode(b))); Prefer a GUI? The orange button opens CyberChef pre-filled. Or split the parts yourself for any AES-256-GCM tool:
- Algorithm:
AES-256-GCM - Key (hex):
d867cd90b90280c25d2e394335f3776edd2ae931c5381dab622de3f70ce3ac64 - IV / nonce (hex):
607fadce05c9d9af1089a830 - Ciphertext (hex):
67500fe63a1f4a0009f2bd936f3c46ef3b3c8aed3deaf8d9463cb21a730243784ae12f7d866d21acee84a50a40456645b4e54d2a7248ed8bf2cb5d178d86bf8a17e72dc79ff33f7280b33de21e3ce6bc07026e05b854a28660112bdca65a2503f30ec669fd4c1461547a7e005d6df7fecb5607cdcb7e55b7d46aa483caf86a72649f8daed40c94393abd0d8d5cb78f761d63e4d57907f81e939de277f137405f4747e47892084d1cfa5230028596c2e15b4412eed83d0de735ddeb4c7d60b99fe7b5fb38a9ccd08620532d30d0574b4acccaf2f6b37db1e5314a4f287b8ae89bf918e3185c7998ea11a2ecf7f32436 - Auth tag (hex):
156892b21328c6118583582388220eb6
Any standard AES-256-GCM tool returns the exact same pick — the algorithm is a public standard.
How to verify the Bitcoin timestamp yourself
Bitcoin doesn't store the pick — it stores a 32-byte fingerprint (SHA-256) of the
encrypted batch, via OpenTimestamps. That fingerprint is frozen in a public block nobody can alter
or back-date. You can't spot it by eye on a block explorer (a block holds thousands of unrelated
transactions) — you verify it with the .ots proof and any OpenTimestamps tool:
- Download the sealed batch file (.jsonl) and its proof (.ots) from GitHub.
- Drop both into opentimestamps.org (or run
ots verify *.ots). It replays the proof and confirms the Bitcoin block and its UTC time. - See it independently: block #963604 · anchoring transaction (its OP_RETURN holds the commitment). The block's Timestamp is when it became permanent.
Note: Bitcoin anchoring lands ~30–60 min after sealing, and a block's timestamp is miner-set (approximate). So the exact “before kickoff” proof is the seal time above — timestamped instantly by Telegram/GitHub — while Bitcoin is the independent, un-forgeable anchor of permanence.