Maardu Linnameeskond vs Tallinna Kalev
Esiliiga A · Estonia · 13 Sept 2026, 09:30 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.
oKoPmVTuKZ4WG2Sdc17QrtdNqgw/zpXH0wTCBEJo9rXSrXbY2/EaENC2662VZW6RfXywIsWwOxMbr4f0/6Qq1m7yDcZb39DNOaypouFY6eoavdxuYJojdG9BvGYjEylgYcYftA5V0vxpOgFgI9Odk9g1E9ToTP3AYAsBR9VkNVSfpB58CbsmeQFOj6arbi1fcw68fBSLjRsEkDJfRRc0DLxapXonod2djJ6j7WApHf8oGjNj+qKQdaXhNLhdvpFPZniWeJB9xfmXiqsyFCZvgwxHr4MZQmSuMN0Cder7CKnmUMtqpt1Fn/dgtTe0CAlnteuDPIz6VytOY5itc6JGzJjCKlycSU75Tv329p1i9TsRY7M8cEHt
45d99df286640a1d1b8adeb0254fdb35d45821f31291488c04a910300bf37256Decrypt 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("oKoPmVTuKZ4WG2Sdc17QrtdNqgw/zpXH0wTCBEJo9rXSrXbY2/EaENC2662VZW6RfXywIsWwOxMbr4f0/6Qq1m7yDcZb39DNOaypouFY6eoavdxuYJojdG9BvGYjEylgYcYftA5V0vxpOgFgI9Odk9g1E9ToTP3AYAsBR9VkNVSfpB58CbsmeQFOj6arbi1fcw68fBSLjRsEkDJfRRc0DLxapXonod2djJ6j7WApHf8oGjNj+qKQdaXhNLhdvpFPZniWeJB9xfmXiqsyFCZvgwxHr4MZQmSuMN0Cder7CKnmUMtqpt1Fn/dgtTe0CAlnteuDPIz6VytOY5itc6JGzJjCKlycSU75Tv329p1i9TsRY7M8cEHt"), c => c.charCodeAt(0));
const key = Uint8Array.from("45d99df286640a1d1b8adeb0254fdb35d45821f31291488c04a910300bf37256".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):
45d99df286640a1d1b8adeb0254fdb35d45821f31291488c04a910300bf37256 - IV / nonce (hex):
a0aa0f9954ee299e161b649d - Ciphertext (hex):
735ed0aed74daa0c3fce95c7d304c2044268f6b5d2ad76d8dbf11a10d0b6ebad95656e917d7cb022c5b03b131baf87f4ffa42ad66ef20dc65bdfd0cd39aca9a2e158e9ea1abddc6e609a23746f41bc662313296061c61fb40e55d2fc693a016023d39d93d83513d4e84cfdc0600b0147d56435549fa41e7c09bb2679014e8fa6ab6e2d5f730ebc7c148b8d1b0490325f4517340cbc5aa57a27a1dd9d8c9ea3ed60291dff281a3363faa29075a5e134b85dbe914f66789678907dc5f9978aab3214266f830c47af83194264ae30dd0275eafb08a9e650cb6aa6dd459ff760b537b4080967b5eb833c8cfa572b4e6398ad73a246cc98c22a5c9c494e - Auth tag (hex):
f94efdf6f69d62f53b1163b33c7041ed
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 #966733 · 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.