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

Arsenal vs Chelsea

Premier League · England · 06 Sept 2026, 15:30 UTC

Final score
2 : 1
Result
Lost
Pick
Draw
Market
1X2
CLV vs fair close
-1.31%
Model prob.
26.8%
Best price
4.00
Min odds
3.80
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)
HztdNZ67SKfq6ytAD5z1D/qq81VbuZttib4VjYwUQeozj2azp45fIbquujxP95L5Q9VnB3QiBw644hE1attWnWoXgRWrv5Z5dD5F301cLZgw8HQMFMok6wB3Sc21Xud/+gyti3RNvCGwphHX8fU+j7s98ZrZyQ+eYwaxmKIu7u6kwkHG82WyfYZO2Rk1WYwmUI2MT0Yf+BiKZbKkn/1oQKij75JTJGGT6OQHh8kzXM/YSc3cBCjXiaH/6DpYW8O/GpfT4ve2n7zasjk4gFjk1FqyB9EF1pcH4VaXn7eFtW4QC+E2RDm865e150+rG07Mvsg1dinV7xxFAlRJCZGqyW0=
key fingerprint sha256: 2187f48fd75067ed5c06f53a0baafef976eaec6bc776b5bfce75abe652acc984
Decrypt it & read the pick
Decryption key (released after the match)
49086d4d9c32f155a68adb610d73dd0f732676c132ad4fe8acece93a683a627c
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("HztdNZ67SKfq6ytAD5z1D/qq81VbuZttib4VjYwUQeozj2azp45fIbquujxP95L5Q9VnB3QiBw644hE1attWnWoXgRWrv5Z5dD5F301cLZgw8HQMFMok6wB3Sc21Xud/+gyti3RNvCGwphHX8fU+j7s98ZrZyQ+eYwaxmKIu7u6kwkHG82WyfYZO2Rk1WYwmUI2MT0Yf+BiKZbKkn/1oQKij75JTJGGT6OQHh8kzXM/YSc3cBCjXiaH/6DpYW8O/GpfT4ve2n7zasjk4gFjk1FqyB9EF1pcH4VaXn7eFtW4QC+E2RDm865e150+rG07Mvsg1dinV7xxFAlRJCZGqyW0="), c => c.charCodeAt(0));
const key  = Uint8Array.from("49086d4d9c32f155a68adb610d73dd0f732676c132ad4fe8acece93a683a627c".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): 49086d4d9c32f155a68adb610d73dd0f732676c132ad4fe8acece93a683a627c
  • IV / nonce (hex): 1f3b5d359ebb48a7eaeb2b40
  • Ciphertext (hex): 0f9cf50ffaaaf3555bb99b6d89be158d8c1441ea338f66b3a78e5f21baaeba3c4ff792f943d567077422070eb8e211356adb569d6a178115abbf9679743e45df4d5c2d9830f0740c14ca24eb007749cdb55ee77ffa0cad8b744dbc21b0a611d7f1f53e8fbb3df19ad9c90f9e6306b198a22eeeeea4c241c6f365b27d864ed91935598c26508d8c4f461ff8188a65b2a49ffd6840a8a3ef9253246193e8e40787c9335ccfd849cddc0428d789a1ffe83a585bc3bf1a97d3e2f7b69fbcdab239388058e4d45ab207d105d69707e156979fb785b56e100be1364439bceb97b5e74fab1b4eccbe
  • Auth tag (hex): c8357629d5ef1c450254490991aac96d

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