Denmark U19 vs Italy U19
Euro U19 · Europe · 08 Jul 2026, 13: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.
nHUkUq27W5Glq9/S7iaTilYr0os3GfIszLGtwIVPTsoFbpt8TA5IDkodrQv1LzzoOuP8sJfnQbC10ZZCpMmpEeUfvlNh2tUo/XbWhaThDfUZfHCtsbHlPRUtQVAruox4XY0SfNDDp7s4afhakUSItL95XkHrL3KHSKcl+5NjFI9rSyTQN0/1P+dJ+b+g0H2/EBzmUKX0KQbpBbOm8o3WQZVGmBo34u/XYE2kvL7zQmkSB49Ha/KkTMf9yGMVReyyM6jYtXnMS0IGbxt5p5SnvUHTS7AP30NWUKVHJgOuIyQgUI9fgg7o4KxoTeVd1s/r9JWQ9xrACCc+bRcmfvwom414VoWv7Tav7Zg=
a2cc9b21ad97c528c3f663f16dd27d63ac604cdffe086a1ae9961c039d63f3bcDecrypt 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("nHUkUq27W5Glq9/S7iaTilYr0os3GfIszLGtwIVPTsoFbpt8TA5IDkodrQv1LzzoOuP8sJfnQbC10ZZCpMmpEeUfvlNh2tUo/XbWhaThDfUZfHCtsbHlPRUtQVAruox4XY0SfNDDp7s4afhakUSItL95XkHrL3KHSKcl+5NjFI9rSyTQN0/1P+dJ+b+g0H2/EBzmUKX0KQbpBbOm8o3WQZVGmBo34u/XYE2kvL7zQmkSB49Ha/KkTMf9yGMVReyyM6jYtXnMS0IGbxt5p5SnvUHTS7AP30NWUKVHJgOuIyQgUI9fgg7o4KxoTeVd1s/r9JWQ9xrACCc+bRcmfvwom414VoWv7Tav7Zg="), c => c.charCodeAt(0));
const key = Uint8Array.from("a2cc9b21ad97c528c3f663f16dd27d63ac604cdffe086a1ae9961c039d63f3bc".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):
a2cc9b21ad97c528c3f663f16dd27d63ac604cdffe086a1ae9961c039d63f3bc - IV / nonce (hex):
9c752452adbb5b91a5abdfd2 - Ciphertext (hex):
ee26938a562bd28b3719f22cccb1adc0854f4eca056e9b7c4c0e480e4a1dad0bf52f3ce83ae3fcb097e741b0b5d19642a4c9a911e51fbe5361dad528fd76d685a4e10df5197c70adb1b1e53d152d41502bba8c785d8d127cd0c3a7bb3869f85a914488b4bf795e41eb2f728748a725fb9363148f6b4b24d0374ff53fe749f9bfa0d07dbf101ce650a5f42906e905b3a6f28dd6419546981a37e2efd7604da4bcbef3426912078f476bf2a44cc7fdc8631545ecb233a8d8b579cc4b42066f1b79a794a7bd41d34bb00fdf435650a5472603ae232420508f5f820ee8e0ac684de55dd6cfebf49590f71ac008273e6d - Auth tag (hex):
17267efc289b8d785685afed36afed98
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 #957107 · 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.