Sign in
← All matches
✅ Cryptographically verified · sealed pick #467

Slavia Praha vs Slovan Bratislava

Club Friendlies 3 · World · 11 Jul 2026, 15:00 UTC

Final score
0 : 1
Result
Lost
Pick
Slavia Praha
Market
1x2
Model prob.
49.5%
Best price
2.46
Min odds
2.20
Stake factor
2.80

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.

Encrypted pick (AES-256-GCM)
V7O63cP4zQkCawuJ5d396zJvRELOZ0Vl45uGr4c7NYQ+ALWX6CvgCwVMfFujDZU8KLiYFhhoRK1Kd7XmnFPe3+0OhvpX53g23fK+7k217NJ8819Ln5ElUN7j1EsSCZEKXsa/Nzl43cEJSbYl2+d72yinBV26F4uWq19BuNS2oQfWxhAfAm164YsHiZLyKv3i3VujN12z4d0aPtsYqEjhMzPgEVdlOnq4F4HtsYjuMmfiANEtyeR7U6vRrS3SQgGtVpyOmCE9INe8jM5yj0AegvUNg6rArQUR7fjVXKNCpkL+0SyWG1cn/dy+JGmO/HkMsbSjDzHIeGJFYFXa7rjbFFm13kupkbRTo1w=
key fingerprint sha256: b611c1eff3f3517a33c91da6896abab6c0e7788d9c5362c20f90ded47ac16c01
Decrypt it & read the pick
Decryption key (released after the match)
09bf48159254171b3b53c1b0b289e607819968e5d4e3517d4bb885b5a55cc8e5
Decrypt 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 F12Console), paste this, press Enter — it decrypts the exact pick shown above:

const blob = Uint8Array.from(atob("V7O63cP4zQkCawuJ5d396zJvRELOZ0Vl45uGr4c7NYQ+ALWX6CvgCwVMfFujDZU8KLiYFhhoRK1Kd7XmnFPe3+0OhvpX53g23fK+7k217NJ8819Ln5ElUN7j1EsSCZEKXsa/Nzl43cEJSbYl2+d72yinBV26F4uWq19BuNS2oQfWxhAfAm164YsHiZLyKv3i3VujN12z4d0aPtsYqEjhMzPgEVdlOnq4F4HtsYjuMmfiANEtyeR7U6vRrS3SQgGtVpyOmCE9INe8jM5yj0AegvUNg6rArQUR7fjVXKNCpkL+0SyWG1cn/dy+JGmO/HkMsbSjDzHIeGJFYFXa7rjbFFm13kupkbRTo1w="), c => c.charCodeAt(0));
const key  = Uint8Array.from("09bf48159254171b3b53c1b0b289e607819968e5d4e3517d4bb885b5a55cc8e5".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): 09bf48159254171b3b53c1b0b289e607819968e5d4e3517d4bb885b5a55cc8e5
  • IV / nonce (hex): 57b3baddc3f8cd09026b0b89
  • Ciphertext (hex): e5ddfdeb326f4442ce674565e39b86af873b35843e00b597e82be00b054c7c5ba30d953c28b89816186844ad4a77b5e69c53dedfed0e86fa57e77836ddf2beee4db5ecd27cf35f4b9f912550dee3d44b1209910a5ec6bf373978ddc10949b625dbe77bdb28a7055dba178b96ab5f41b8d4b6a107d6c6101f026d7ae18b078992f22afde2dd5ba3375db3e1dd1a3edb18a848e13333e01157653a7ab81781edb188ee3267e200d12dc9e47b53abd1ad2dd24201ad569c8e98213d20d7bc8cce728f401e82f50d83aac0ad0511edf8d55ca342a642fed12c961b5727fddcbe24698efc790cb1b4a30f31c878624560
  • Auth tag (hex): 55daeeb8db1459b5de4ba991b453a35c

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:

  1. Download the sealed batch file (.jsonl) and its proof (.ots) from GitHub.
  2. Drop both into opentimestamps.org (or run ots verify *.ots). It replays the proof and confirms the Bitcoin block and its UTC time.
  3. See it independently: block #957441 · 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.