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

Rennes vs Club Brugge

Club Friendlies 3 · World · 25 Jul 2026, 16:00 UTC

Final score
2 : 1
Result
Lost
Pick
Club Brugge
Market
1x2
Model prob.
37.8%
Best price
3.15
Min odds
2.96
Stake factor
2.60

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)
iMztRt1jqHwknvzJhCf2IQL6ytdLodFE4auI3ANQZ1Uphm+sinqS6K/XA0O90Vsp6S8n2bmRe1m8jKu/b77oyDEAD6nhNuorTxFOZvu59c70lz5RVOqPbTcYCjUlrpMSLO3dqGAHwyv/aTMVoS2of93OQmTanlNSl0SraF7BzW6HPT872llqT5w8tRXtvQk4NnkBshSekJWIp0isudT/HJ6U/EG9uMAT3DaW4BVR89dtTKSDRD4msw2bSX6jdqQaJU5dnBGf1bIfQGibWx01mi6a+T1cL36fWeHXO8yxEvKpxBnFR+M7pgwjy6MMtki1rx2gAtJnRlb+POAZt12ny5C4SktfhLcdlUWD
key fingerprint sha256: 95739e78250f21595e346581a5843778aac1bd1b0cd48a5008f94e0646d62dee
Decrypt it & read the pick
Decryption key (released after the match)
8e6270fe365e38cec1763da84fe42fc978f4cab30c315a7f7d5f46529afd3cc1
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("iMztRt1jqHwknvzJhCf2IQL6ytdLodFE4auI3ANQZ1Uphm+sinqS6K/XA0O90Vsp6S8n2bmRe1m8jKu/b77oyDEAD6nhNuorTxFOZvu59c70lz5RVOqPbTcYCjUlrpMSLO3dqGAHwyv/aTMVoS2of93OQmTanlNSl0SraF7BzW6HPT872llqT5w8tRXtvQk4NnkBshSekJWIp0isudT/HJ6U/EG9uMAT3DaW4BVR89dtTKSDRD4msw2bSX6jdqQaJU5dnBGf1bIfQGibWx01mi6a+T1cL36fWeHXO8yxEvKpxBnFR+M7pgwjy6MMtki1rx2gAtJnRlb+POAZt12ny5C4SktfhLcdlUWD"), c => c.charCodeAt(0));
const key  = Uint8Array.from("8e6270fe365e38cec1763da84fe42fc978f4cab30c315a7f7d5f46529afd3cc1".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): 8e6270fe365e38cec1763da84fe42fc978f4cab30c315a7f7d5f46529afd3cc1
  • IV / nonce (hex): 88cced46dd63a87c249efcc9
  • Ciphertext (hex): 8427f62102facad74ba1d144e1ab88dc0350675529866fac8a7a92e8afd70343bdd15b29e92f27d9b9917b59bc8cabbf6fbee8c831000fa9e136ea2b4f114e66fbb9f5cef4973e5154ea8f6d37180a3525ae93122ceddda86007c32bff693315a12da87fddce4264da9e53529744ab685ec1cd6e873d3f3bda596a4f9c3cb515edbd0938367901b2149e909588a748acb9d4ff1c9e94fc41bdb8c013dc3696e01551f3d76d4ca483443e26b30d9b497ea376a41a254e5d9c119fd5b21f40689b5b1d359a2e9af93d5c2f7e9f59e1d73bccb112f2a9c419c547e33ba60c23cba30cb648b5af1da002d2674656fe3ce0
  • Auth tag (hex): 19b75da7cb90b84a4b5f84b71d954583

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