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

Cardiff City vs Charlton Athletic

Championship · England · 19 Sept 2026, 11:30 UTC

Final score
3 : 1
Result
Lost
Pick
Charlton Athletic
Market
1X2
CLV vs fair close
-10.60%
Model prob.
23.5%
Best price
4.55
Min odds
4.35
Stake factor
1.00

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)
Fc39d4ekoRWciMut2YlQXPXHCOuJjz4lkkTQ+EfVNduZGQbuZ4tBTj8gq5e2si9zhPFMnoink8Q75tGvmbVx3KjICHrB60+r2tpcVcSXx3rbimpLYbloxQwcJbawJWEv9zquLNnRBa8BZVqvKo+fOCUF92DaQ/HKFLSNVR9MYvEhwlvZsZHiEO87Z/tjAW36XBJY9XnbeGC5v5Hsl1hBImC0DAAQyC0LqwQLKZ4CcDXJUqkrfJjb3mSYhC8/QsRPXWJ6ART3Rr1CdeSGz5tImi7uQWCLhQ0WZSGAKOtQQaWIOwTcAzv35dfPc/BmRmheJugM5H0d8wMGcYpxgp0DuYJR5kb27gnMvzNHBtGCL+IE+1k=
key fingerprint sha256: 17b01823d7600026430652285fa7f706d7db11098f6fc00d805f153e4b8e15f8
Decrypt it & read the pick
Decryption key (released after the match)
48aacbab6fa3552addccb19591dac4f8ad7b6202572d0a09724e119899003dbc
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("Fc39d4ekoRWciMut2YlQXPXHCOuJjz4lkkTQ+EfVNduZGQbuZ4tBTj8gq5e2si9zhPFMnoink8Q75tGvmbVx3KjICHrB60+r2tpcVcSXx3rbimpLYbloxQwcJbawJWEv9zquLNnRBa8BZVqvKo+fOCUF92DaQ/HKFLSNVR9MYvEhwlvZsZHiEO87Z/tjAW36XBJY9XnbeGC5v5Hsl1hBImC0DAAQyC0LqwQLKZ4CcDXJUqkrfJjb3mSYhC8/QsRPXWJ6ART3Rr1CdeSGz5tImi7uQWCLhQ0WZSGAKOtQQaWIOwTcAzv35dfPc/BmRmheJugM5H0d8wMGcYpxgp0DuYJR5kb27gnMvzNHBtGCL+IE+1k="), c => c.charCodeAt(0));
const key  = Uint8Array.from("48aacbab6fa3552addccb19591dac4f8ad7b6202572d0a09724e119899003dbc".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): 48aacbab6fa3552addccb19591dac4f8ad7b6202572d0a09724e119899003dbc
  • IV / nonce (hex): 15cdfd7787a4a1159c88cbad
  • Ciphertext (hex): d989505cf5c708eb898f3e259244d0f847d535db991906ee678b414e3f20ab97b6b22f7384f14c9e88a793c43be6d1af99b571dca8c8087ac1eb4fabdada5c55c497c77adb8a6a4b61b968c50c1c25b6b025612ff73aae2cd9d105af01655aaf2a8f9f382505f760da43f1ca14b48d551f4c62f121c25bd9b191e210ef3b67fb63016dfa5c1258f579db7860b9bf91ec9758412260b40c0010c82d0bab040b299e027035c952a92b7c98dbde6498842f3f42c44f5d627a0114f746bd4275e486cf9b489a2eee41608b850d1665218028eb5041a5883b04dc033bf7e5d7cf73f06646685e26e80ce47d1df30306718a71829d03b98251e6
  • Auth tag (hex): 46f6ee09ccbf334706d1822fe204fb59

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 #967537 · 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.