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

Nantes vs La Roche

Club Friendlies 3 · World · 22 Jul 2026, 15:30 UTC

Final score
1 : 1
Result
Lost
Pick
Nantes
Market
1x2
Model prob.
82.5%
Best price
1.34
Min odds
1.27
Stake factor
1.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)
VD+lpLpO48TdRqaFH6iEf3APU6GHtyX4iHeOtizB84Yq59/Ky26z+OpGyeCze/WoflFlM9OUV55wv9kZmkn892viXQvqXI4G8Z0hZjPm+iHAo/X7kv0As+gY6PLAPp4WG1cs8V+hPKlm0dify1uSeH9V6zweC98GxHB42e43J51p+dBRryjJeINjVLoE7FU9EGVmqUMPhghL44f2PJlUp5IEYSqxpMCDa/6Tq/U4rRLZuuG9B02GlVwbObwwYF6wfCQMAEX8ebzJiVKjR0H9xIK3ae3njnvF27x2ZlndLo5Qw8eax0xRTDAAw4eVKJ03OWpKM1h4yQA8MUPTr6OpyBJLQGP908Q=
key fingerprint sha256: a0b42a418aa8fe846299c148a6834e1daf5b6ae7a12a85b36aad8f8ef466b81c
Decrypt it & read the pick
Decryption key (released after the match)
9d6cee6676c48ec6489f74b4b81dc09ba63b61b74a8c64c78ffdbf346bb333f6
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("VD+lpLpO48TdRqaFH6iEf3APU6GHtyX4iHeOtizB84Yq59/Ky26z+OpGyeCze/WoflFlM9OUV55wv9kZmkn892viXQvqXI4G8Z0hZjPm+iHAo/X7kv0As+gY6PLAPp4WG1cs8V+hPKlm0dify1uSeH9V6zweC98GxHB42e43J51p+dBRryjJeINjVLoE7FU9EGVmqUMPhghL44f2PJlUp5IEYSqxpMCDa/6Tq/U4rRLZuuG9B02GlVwbObwwYF6wfCQMAEX8ebzJiVKjR0H9xIK3ae3njnvF27x2ZlndLo5Qw8eax0xRTDAAw4eVKJ03OWpKM1h4yQA8MUPTr6OpyBJLQGP908Q="), c => c.charCodeAt(0));
const key  = Uint8Array.from("9d6cee6676c48ec6489f74b4b81dc09ba63b61b74a8c64c78ffdbf346bb333f6".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): 9d6cee6676c48ec6489f74b4b81dc09ba63b61b74a8c64c78ffdbf346bb333f6
  • IV / nonce (hex): 543fa5a4ba4ee3c4dd46a685
  • Ciphertext (hex): 1fa8847f700f53a187b725f888778eb62cc1f3862ae7dfcacb6eb3f8ea46c9e0b37bf5a87e516533d394579e70bfd9199a49fcf76be25d0bea5c8e06f19d216633e6fa21c0a3f5fb92fd00b3e818e8f2c03e9e161b572cf15fa13ca966d1d89fcb5b92787f55eb3c1e0bdf06c47078d9ee37279d69f9d051af28c978836354ba04ec553d106566a9430f86084be387f63c9954a79204612ab1a4c0836bfe93abf538ad12d9bae1bd074d86955c1b39bc30605eb07c240c0045fc79bcc98952a34741fdc482b769ede78e7bc5dbbc766659dd2e8e50c3c79ac74c514c3000c38795289d37396a4a335878c9
  • Auth tag (hex): 003c3143d3afa3a9c8124b4063fdd3c4

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