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

Racing W vs HJK W

UEFA Women's Champions League · Europe · 05 Aug 2026, 17:00 UTC

Final score
0 : 2
Result
Won
Pick
HJK W
Market
1x2
Model prob.
75.2%
Best price
1.49
Min odds
1.40
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)
RbeBKzG5+Vvn5LrD3jIXSwiqwmrX/6OP1r5DjHEAipuA6mFfxl+6zsyUsyd+My5pR2Dh95EhZG8lQ5ofoH5iHjxH6wuglzBQi1Cu4MH19E2dRx1YxBCnP0t2qHUQmR8cj8sE7ZJ39mKX6bne0cT7QPV+yD4IYTuuV53f7jYqviy5Jirx6R9WSpr9gsJq1PRbcPyjbC5t04pevarhfwac/EmLLJZlMm8VQ69P0OZ+ROOB+xjw5FesrHJ0wnoCyVCXi/msi2NqHTKq6w/ZDxH3RJPv4DNgjcSdijNSBirQ9WzxQz1FzQcqFHukzggNDKiF3slQeRLKX1wcWfNNYeq/Hz1Zlw==
key fingerprint sha256: ace4a79c64f7bd2303e6c3250384c3a786b389ffa5d4202face42ab4ce3dbcd7
Decrypt it & read the pick
Decryption key (released after the match)
998f0829f3490c1ba6eda268c91c289583ad74131e4efa60e3e3f4a947d49b05
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("RbeBKzG5+Vvn5LrD3jIXSwiqwmrX/6OP1r5DjHEAipuA6mFfxl+6zsyUsyd+My5pR2Dh95EhZG8lQ5ofoH5iHjxH6wuglzBQi1Cu4MH19E2dRx1YxBCnP0t2qHUQmR8cj8sE7ZJ39mKX6bne0cT7QPV+yD4IYTuuV53f7jYqviy5Jirx6R9WSpr9gsJq1PRbcPyjbC5t04pevarhfwac/EmLLJZlMm8VQ69P0OZ+ROOB+xjw5FesrHJ0wnoCyVCXi/msi2NqHTKq6w/ZDxH3RJPv4DNgjcSdijNSBirQ9WzxQz1FzQcqFHukzggNDKiF3slQeRLKX1wcWfNNYeq/Hz1Zlw=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("998f0829f3490c1ba6eda268c91c289583ad74131e4efa60e3e3f4a947d49b05".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): 998f0829f3490c1ba6eda268c91c289583ad74131e4efa60e3e3f4a947d49b05
  • IV / nonce (hex): 45b7812b31b9f95be7e4bac3
  • Ciphertext (hex): de32174b08aac26ad7ffa38fd6be438c71008a9b80ea615fc65fbacecc94b3277e332e694760e1f79121646f25439a1fa07e621e3c47eb0ba09730508b50aee0c1f5f44d9d471d58c410a73f4b76a87510991f1c8fcb04ed9277f66297e9b9ded1c4fb40f57ec83e08613bae579ddfee362abe2cb9262af1e91f564a9afd82c26ad4f45b70fca36c2e6dd38a5ebdaae17f069cfc498b2c9665326f1543af4fd0e67e44e381fb18f0e457acac7274c27a02c950978bf9ac8b636a1d32aaeb0fd90f11f74493efe033608dc49d8a3352062ad0f56cf1433d45cd072a147ba4ce080d0ca885dec950
  • Auth tag (hex): 7912ca5f5c1c59f34d61eabf1f3d5997

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