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

Portugal vs Uzbekistan

World Cup · World · 23 Jun 2026, 17:00 UTC

Final score
5 : 0
Result
Won
Pick
Portugal
Market
1x2
Model prob.
87.3%
Best price
1.30
Min odds
1.20
Stake factor
2.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)
xquTRKskSRa/qJAxIV69OduuWx2mntVm6JY2nty2hzKpXzlH4rH+MoY9OW/518oyICaZ9woMaDZb/vEPSTgBEgYkZLXIlb4ogRAyKkln332bEu5SCbkGctGVfuSgwjc8Nez3ExdigNNuZy2lf0vlBFm37XYqZGrkO+JB+wdueZ408qvvKnoN8IoKbhi3VVYqsNwaQeVKyn4Bo4Lrpm1ZTifN/+Zks+cgVpaagSffDFcrScJhORHziMl+szVR7UdbjTr+vRWi2hp1CyRHLf0E/hLQig4n4iOJ7YyfeRvOGWqD2g+DPWav/c6I8duOALGufjLM5e/5P9AFMf9PmeBm5p4kYRaj
key fingerprint sha256: a0277d7c40d953f17e3dbc23b787e58c518f7f3275d801291320a7830c155792
Decrypt it & read the pick
Decryption key (released after the match)
fa2ab2e793209bbc52f759dc597aca86a20733e9d5cc625caf8f8d259fc7e3e9
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("xquTRKskSRa/qJAxIV69OduuWx2mntVm6JY2nty2hzKpXzlH4rH+MoY9OW/518oyICaZ9woMaDZb/vEPSTgBEgYkZLXIlb4ogRAyKkln332bEu5SCbkGctGVfuSgwjc8Nez3ExdigNNuZy2lf0vlBFm37XYqZGrkO+JB+wdueZ408qvvKnoN8IoKbhi3VVYqsNwaQeVKyn4Bo4Lrpm1ZTifN/+Zks+cgVpaagSffDFcrScJhORHziMl+szVR7UdbjTr+vRWi2hp1CyRHLf0E/hLQig4n4iOJ7YyfeRvOGWqD2g+DPWav/c6I8duOALGufjLM5e/5P9AFMf9PmeBm5p4kYRaj"), c => c.charCodeAt(0));
const key  = Uint8Array.from("fa2ab2e793209bbc52f759dc597aca86a20733e9d5cc625caf8f8d259fc7e3e9".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): fa2ab2e793209bbc52f759dc597aca86a20733e9d5cc625caf8f8d259fc7e3e9
  • IV / nonce (hex): c6ab9344ab244916bfa89031
  • Ciphertext (hex): 215ebd39dbae5b1da69ed566e896369edcb68732a95f3947e2b1fe32863d396ff9d7ca32202699f70a0c68365bfef10f49380112062464b5c895be288110322a4967df7d9b12ee5209b90672d1957ee4a0c2373c35ecf713176280d36e672da57f4be50459b7ed762a646ae43be241fb076e799e34f2abef2a7a0df08a0a6e18b755562ab0dc1a41e54aca7e01a382eba66d594e27cdffe664b3e72056969a8127df0c572b49c2613911f388c97eb33551ed475b8d3afebd15a2da1a750b24472dfd04fe12d08a0e27e22389ed8c9f791bce196a83da0f833d66affdce88f1db8e00b1ae7e32cce5ef
  • Auth tag (hex): f93fd00531ff4f99e066e69e246116a3

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