Tabasalu vs Tartu Kalev
Esiliiga B · Estonia · 21 Jun 2026, 16: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.
igB0OYpQNkiu/0YAgxTq5HZcqrrIjLshnbNFvjQn2vWWH2/H5Vl+NQzwWYJsaSdiO6HXSaeFzgOEmln/ebrZZMtQ8R0kEBflfTLRwIR9Y9npsWFdT4mYB+J57rb7wOtS7WJeoVpeJpGM6jh2DErdnzzd90TrWvOmN5Xz0hzCrWdrwBE8QWLHe1rQup8IJwMuwXU3sm6lhCaGYr/4/p3POaRk8srQVap899JjCMIJ7IyJtMkYDSyojiT2+M6TTm4O7Pz++JhRI/aXf5UuE94Z2FPE2r/It8zDEc+bvZlM3UwZdogj3zMsLHdVbPuJJn7PnLwLqBOf0ezhzOwq3K7F3lVbXw1lZA==
71c8dc69e6883376d5b9ea1c70ba81af4a34029b522d1fc9ee3d17a26c15ab4fDecrypt 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("igB0OYpQNkiu/0YAgxTq5HZcqrrIjLshnbNFvjQn2vWWH2/H5Vl+NQzwWYJsaSdiO6HXSaeFzgOEmln/ebrZZMtQ8R0kEBflfTLRwIR9Y9npsWFdT4mYB+J57rb7wOtS7WJeoVpeJpGM6jh2DErdnzzd90TrWvOmN5Xz0hzCrWdrwBE8QWLHe1rQup8IJwMuwXU3sm6lhCaGYr/4/p3POaRk8srQVap899JjCMIJ7IyJtMkYDSyojiT2+M6TTm4O7Pz++JhRI/aXf5UuE94Z2FPE2r/It8zDEc+bvZlM3UwZdogj3zMsLHdVbPuJJn7PnLwLqBOf0ezhzOwq3K7F3lVbXw1lZA=="), c => c.charCodeAt(0));
const key = Uint8Array.from("71c8dc69e6883376d5b9ea1c70ba81af4a34029b522d1fc9ee3d17a26c15ab4f".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):
71c8dc69e6883376d5b9ea1c70ba81af4a34029b522d1fc9ee3d17a26c15ab4f - IV / nonce (hex):
8a0074398a503648aeff4600 - Ciphertext (hex):
8314eae4765caabac88cbb219db345be3427daf5961f6fc7e5597e350cf059826c6927623ba1d749a785ce03849a59ff79bad964cb50f11d241017e57d32d1c0847d63d9e9b1615d4f899807e279eeb6fbc0eb52ed625ea15a5e26918cea38760c4add9f3cddf744eb5af3a63795f3d21cc2ad676bc0113c4162c77b5ad0ba9f0827032ec17537b26ea584268662bff8fe9dcf39a464f2cad055aa7cf7d26308c209ec8c89b4c9180d2ca88e24f6f8ce934e6e0eecfcfef8985123f6977f952e13de19d853c4dabfc8b7ccc311cf9bbd994cdd4c19768823df332c2c77556cfb89267ecf9cbc0ba8139f - Auth tag (hex):
d1ece1ccec2adcaec5de555b5f0d6564
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 #954717 · 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.