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

Union Saint-Gilloise vs FCSB

Club Friendlies 3 · World · 05 Jul 2026, 11:00 UTC

Final score
4 : 0
Result
Won
Pick
Union Saint-Gilloise
Market
1x2
Model prob.
62.2%
Best price
1.82
Min odds
1.72
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)
U6FY2atfYeCjJqev/XYleMayqIqBS6ytOcqvuS8CgxVfeDQSrXaqH5C93AWfeb/un+TV9kn+tf5goGO9/lPX4cQW+40wVQzWU7NreA/hwtC957O75LKDtT88BoxTzp7CADagGDW6BI2JAYTUqJWrctReYpnTSs1Z6JocgYyuljlmwFVWqiZkM6rHQ1P3bODxtU6mQuTtEzvKBEAHYkNwj9qdgdopz5TJi8tTD9Dw70lq7mgWJMEt/2dsh4OaGC5Bs37sf4wInIDEgi7CQ+YFZ9Zckv4twtXZTwWkfxvg6SXMNevZn+sVkdzcA8HJJwdfWJkuILGdKSpJw3j+7lhk3p/J3sHbgQT8WLqwLTmcQnaJYZM=
key fingerprint sha256: 847ccc71a7ff779e6681f6cdee18520dbfc7c18be6600124d0225c9a5b138166
Decrypt it & read the pick
Decryption key (released after the match)
a21499c089f54d0003400b7bcba3a8633c5650571ac4c294ec6d6efefa9d5f78
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("U6FY2atfYeCjJqev/XYleMayqIqBS6ytOcqvuS8CgxVfeDQSrXaqH5C93AWfeb/un+TV9kn+tf5goGO9/lPX4cQW+40wVQzWU7NreA/hwtC957O75LKDtT88BoxTzp7CADagGDW6BI2JAYTUqJWrctReYpnTSs1Z6JocgYyuljlmwFVWqiZkM6rHQ1P3bODxtU6mQuTtEzvKBEAHYkNwj9qdgdopz5TJi8tTD9Dw70lq7mgWJMEt/2dsh4OaGC5Bs37sf4wInIDEgi7CQ+YFZ9Zckv4twtXZTwWkfxvg6SXMNevZn+sVkdzcA8HJJwdfWJkuILGdKSpJw3j+7lhk3p/J3sHbgQT8WLqwLTmcQnaJYZM="), c => c.charCodeAt(0));
const key  = Uint8Array.from("a21499c089f54d0003400b7bcba3a8633c5650571ac4c294ec6d6efefa9d5f78".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): a21499c089f54d0003400b7bcba3a8633c5650571ac4c294ec6d6efefa9d5f78
  • IV / nonce (hex): 53a158d9ab5f61e0a326a7af
  • Ciphertext (hex): fd762578c6b2a88a814bacad39caafb92f0283155f783412ad76aa1f90bddc059f79bfee9fe4d5f649feb5fe60a063bdfe53d7e1c416fb8d30550cd653b36b780fe1c2d0bde7b3bbe4b283b53f3c068c53ce9ec20036a01835ba048d890184d4a895ab72d45e6299d34acd59e89a1c818cae963966c05556aa266433aac74353f76ce0f1b54ea642e4ed133bca0440076243708fda9d81da29cf94c98bcb530fd0f0ef496aee681624c12dff676c87839a182e41b37eec7f8c089c80c4822ec243e60567d65c92fe2dc2d5d94f05a47f1be0e925cc35ebd99feb1591dcdc03c1c927075f58992e20b19d292a49c378feee5864de9fc9de
  • Auth tag (hex): c1db8104fc58bab02d399c4276896193

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