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

Guingamp vs Nantes

Ligue 2 · France · 29 Aug 2026, 18:00 UTC

Final score
3 : 3
Result
Lost
Pick
Guingamp
Market
1X2
CLV vs fair close
-7.63%
Model prob.
38.4%
Best price
3.00
Min odds
2.65
Stake factor
2.60

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)
xjHIq7rtghHnAomvfyny1HiF+ZG4PRiV+qT+PU2EBcTqwqoiWHJ46RONZba2McM2IaNcNXC0BrH+3PHlluatJ4P6AqeXmHFm46nmqfyhZRFNf6xYRFUUWX36KlEmFwms2F+9WRkhKzOYCWfKHAzuNREvBdvxsfO5/r737GucdohNxXkjdVtUrk1fOHfeOASjKkLdE0UjHnf8BlnwZCpCrDarLEjnaBRM//VZ9fL47qaap62BfcRH1sv1WxR4HgMCKkehew2K5oE6Hsfgpix3+R/sGEpn1SxZAkjOzysZk4AWi9EDhrgsIUS3VMwxJnHWziRQ45rbZVBz8EGP2EYdcBK6afChofVNrQ==
key fingerprint sha256: cb5c85fac8b71d1d6d70365b8f0c7c682e69cea1906b49a843a2ea65709cdd2f
Decrypt it & read the pick
Decryption key (released after the match)
a630933af3bda18b8232f07b7309c9f8951f00687a5cf55cae38ff56c9c426d9
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("xjHIq7rtghHnAomvfyny1HiF+ZG4PRiV+qT+PU2EBcTqwqoiWHJ46RONZba2McM2IaNcNXC0BrH+3PHlluatJ4P6AqeXmHFm46nmqfyhZRFNf6xYRFUUWX36KlEmFwms2F+9WRkhKzOYCWfKHAzuNREvBdvxsfO5/r737GucdohNxXkjdVtUrk1fOHfeOASjKkLdE0UjHnf8BlnwZCpCrDarLEjnaBRM//VZ9fL47qaap62BfcRH1sv1WxR4HgMCKkehew2K5oE6Hsfgpix3+R/sGEpn1SxZAkjOzysZk4AWi9EDhrgsIUS3VMwxJnHWziRQ45rbZVBz8EGP2EYdcBK6afChofVNrQ=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("a630933af3bda18b8232f07b7309c9f8951f00687a5cf55cae38ff56c9c426d9".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): a630933af3bda18b8232f07b7309c9f8951f00687a5cf55cae38ff56c9c426d9
  • IV / nonce (hex): c631c8abbaed8211e70289af
  • Ciphertext (hex): 7f29f2d47885f991b83d1895faa4fe3d4d8405c4eac2aa22587278e9138d65b6b631c33621a35c3570b406b1fedcf1e596e6ad2783fa02a797987166e3a9e6a9fca165114d7fac58445514597dfa2a51261709acd85fbd5919212b33980967ca1c0cee35112f05dbf1b1f3b9febef7ec6b9c76884dc57923755b54ae4d5f3877de3804a32a42dd1345231e77fc0659f0642a42ac36ab2c48e768144cfff559f5f2f8eea69aa7ad817dc447d6cbf55b14781e03022a47a17b0d8ae6813a1ec7e0a62c77f91fec184a67d52c590248cecf2b199380168bd10386b82c2144b754cc312671d6ce2450e39adb655073
  • Auth tag (hex): f0418fd8461d7012ba69f0a1a1f54dad

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