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

Feyenoord vs Atalanta

Club Friendlies 1 · World · 02 Aug 2026, 13:00 UTC

Final score
2 : 1
Result
Won
Pick
Feyenoord
Market
1x2
Model prob.
34.7%
Best price
3.50
Min odds
3.26
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)
0UdUQUgDBHiAYe0hzwCibWFHXJ0LwApcCoeHOHEMwlaBbMtwk9AAXu4yayRZareJUeLybaM5ggQP6g0bJ/Eefbqq95H0GUYI1OqDv3T5zsscymXMflkuqv/NjGsamUYUzE3d21KSerM0OANPShSPr+SOrFd04IinHRzOULC5Q3kH3F+2m/U4yfepwgjCALbFYA+hqvYAKjcSFAzmguJDkDcS3UPUxfm6mfSyRdm2Wjv53MwcUVIglFMxQ0Gp/7IAVXfonHtAZcjYjx4e6/6FX3ncYwtrrrZFY7w6reEJCS0LYlfu5dhdREfFChOQSV6NgfibW+0X0dwThISnDJNlD58ukdFQJuZRUw==
key fingerprint sha256: 0ebd4987ef5cac36e1b7862669aba39df3b366f3cd22668eb0b38c0b11fabe4a
Decrypt it & read the pick
Decryption key (released after the match)
6779e85d0e335c70bbc7e339981d7466c4cf30aba77310b118c41b922f1046ff
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("0UdUQUgDBHiAYe0hzwCibWFHXJ0LwApcCoeHOHEMwlaBbMtwk9AAXu4yayRZareJUeLybaM5ggQP6g0bJ/Eefbqq95H0GUYI1OqDv3T5zsscymXMflkuqv/NjGsamUYUzE3d21KSerM0OANPShSPr+SOrFd04IinHRzOULC5Q3kH3F+2m/U4yfepwgjCALbFYA+hqvYAKjcSFAzmguJDkDcS3UPUxfm6mfSyRdm2Wjv53MwcUVIglFMxQ0Gp/7IAVXfonHtAZcjYjx4e6/6FX3ncYwtrrrZFY7w6reEJCS0LYlfu5dhdREfFChOQSV6NgfibW+0X0dwThISnDJNlD58ukdFQJuZRUw=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("6779e85d0e335c70bbc7e339981d7466c4cf30aba77310b118c41b922f1046ff".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): 6779e85d0e335c70bbc7e339981d7466c4cf30aba77310b118c41b922f1046ff
  • IV / nonce (hex): d1475441480304788061ed21
  • Ciphertext (hex): cf00a26d61475c9d0bc00a5c0a878738710cc256816ccb7093d0005eee326b24596ab78951e2f26da33982040fea0d1b27f11e7dbaaaf791f4194608d4ea83bf74f9cecb1cca65cc7e592eaaffcd8c6b1a994614cc4ddddb52927ab33438034f4a148fafe48eac5774e088a71d1cce50b0b9437907dc5fb69bf538c9f7a9c208c200b6c5600fa1aaf6002a3712140ce682e243903712dd43d4c5f9ba99f4b245d9b65a3bf9dccc1c5152209453314341a9ffb2005577e89c7b4065c8d88f1e1eebfe855f79dc630b6baeb64563bc3aade109092d0b6257eee5d85d4447c50a1390495e8d81f89b5bed17d1dc13
  • Auth tag (hex): 8484a70c93650f9f2e91d15026e65153

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