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

Belgium vs Senegal

World Cup · World · 01 Jul 2026, 20:00 UTC

Final score
2 : 2
Result
Lost
Pick
Belgium
Market
1x2
Model prob.
48.9%
Best price
2.35
Min odds
2.23
Stake factor
2.20

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)
1S669sadmqMqpmgf51AWZ0iYxSO7Lbo0iiaQVHCC6wcZlVHtL0pzTb+bQbAoLL9ARhzSer7Mu22wu5zc2psNvVfslVCmRUDlW0joyM2a+1oxrTP3LWDM1YodX6RHZ/33yIdXVe2eXhOK7YzfzZ74nwPxlCXlZt0PHk8SJjZfgSBsLI1/hFGkIJY9KtYVuPJphe1eLLKhneZ2a698E0yZJ6ro2ce9adVIxsVsKymEezV/BVxr8MtlYDtZh8oPUC1z6jGe52KbwsSZLM/Vpsm99/eHSkSC7cROTwJuvLVIe3+i3JR8AZUaxKCUVr/06h5rjkUNV6KQXroZ7/Q0SYDJn4DgbFT5Yj9i
key fingerprint sha256: 54d3b0da0e697448b759df0a2ea7a00dab35db2a8ea2f74fa6858669d39198d4
Decrypt it & read the pick
Decryption key (released after the match)
2a61fee44819b953b3c82fb66e05d20e668bd32a40521b89621ba3a67b525557
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("1S669sadmqMqpmgf51AWZ0iYxSO7Lbo0iiaQVHCC6wcZlVHtL0pzTb+bQbAoLL9ARhzSer7Mu22wu5zc2psNvVfslVCmRUDlW0joyM2a+1oxrTP3LWDM1YodX6RHZ/33yIdXVe2eXhOK7YzfzZ74nwPxlCXlZt0PHk8SJjZfgSBsLI1/hFGkIJY9KtYVuPJphe1eLLKhneZ2a698E0yZJ6ro2ce9adVIxsVsKymEezV/BVxr8MtlYDtZh8oPUC1z6jGe52KbwsSZLM/Vpsm99/eHSkSC7cROTwJuvLVIe3+i3JR8AZUaxKCUVr/06h5rjkUNV6KQXroZ7/Q0SYDJn4DgbFT5Yj9i"), c => c.charCodeAt(0));
const key  = Uint8Array.from("2a61fee44819b953b3c82fb66e05d20e668bd32a40521b89621ba3a67b525557".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): 2a61fee44819b953b3c82fb66e05d20e668bd32a40521b89621ba3a67b525557
  • IV / nonce (hex): d52ebaf6c69d9aa32aa6681f
  • Ciphertext (hex): e75016674898c523bb2dba348a2690547082eb07199551ed2f4a734dbf9b41b0282cbf40461cd27abeccbb6db0bb9cdcda9b0dbd57ec9550a64540e55b48e8c8cd9afb5a31ad33f72d60ccd58a1d5fa44767fdf7c8875755ed9e5e138aed8cdfcd9ef89f03f19425e566dd0f1e4f1226365f81206c2c8d7f8451a420963d2ad615b8f26985ed5e2cb2a19de6766baf7c134c9927aae8d9c7bd69d548c6c56c2b29847b357f055c6bf0cb65603b5987ca0f502d73ea319ee7629bc2c4992ccfd5a6c9bdf7f7874a4482edc44e4f026ebcb5487b7fa2dc947c01951ac4a09456bff4ea1e6b8e450d57a2905eba
  • Auth tag (hex): 19eff4344980c99f80e06c54f9623f62

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