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

Fenerbahçe vs Sturm Graz

Champions League · Europe · 05 Aug 2026, 18:00 UTC

Final score
2 : 0
Result
Won
Pick
Fenerbahçe
Market
1x2
Model prob.
75.5%
Best price
1.44
Min odds
1.40
Stake factor
1.70

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)
qqm/H7J+7vo7V3ORohGID56WF4jrfoaSQ8wSY1owYBW6w5oEB9T0VMX/vZN5IURWJnQVnxOmw6Mg6AukZabX/0VbAtoBBLvUo9nL4SOhTWU0c1eusSJGCJ/4xc5NS9B/GFIjK5Pb1goWukT/NbdZgKzHrky5mJidojTD8oU/kLaGxtqswE3unwtkrr6wLtzsVQT/QVxT7w70615rRbzRoakqyFvjQJ1qrVY+qQZjuHBP9UdlnjqvpGz8RqeBPtUPIIkiKF4Zp2CsA1/Zig1FRgXahHBtHz1o/nE58KsQJ9clHAHKot16/dG9PUUgfYvi+9o5T+vWAb4rMv+TVZlMDeRHbnmvjopKzLQ=
key fingerprint sha256: 327a6a1b757decbe618fc6605ed0ae3aa89d336edffd737abb810f316316408b
Decrypt it & read the pick
Decryption key (released after the match)
66d785ae57d2b486adb38227996da8563be6cbcac4385252e136b5b6bb5f10fd
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("qqm/H7J+7vo7V3ORohGID56WF4jrfoaSQ8wSY1owYBW6w5oEB9T0VMX/vZN5IURWJnQVnxOmw6Mg6AukZabX/0VbAtoBBLvUo9nL4SOhTWU0c1eusSJGCJ/4xc5NS9B/GFIjK5Pb1goWukT/NbdZgKzHrky5mJidojTD8oU/kLaGxtqswE3unwtkrr6wLtzsVQT/QVxT7w70615rRbzRoakqyFvjQJ1qrVY+qQZjuHBP9UdlnjqvpGz8RqeBPtUPIIkiKF4Zp2CsA1/Zig1FRgXahHBtHz1o/nE58KsQJ9clHAHKot16/dG9PUUgfYvi+9o5T+vWAb4rMv+TVZlMDeRHbnmvjopKzLQ="), c => c.charCodeAt(0));
const key  = Uint8Array.from("66d785ae57d2b486adb38227996da8563be6cbcac4385252e136b5b6bb5f10fd".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): 66d785ae57d2b486adb38227996da8563be6cbcac4385252e136b5b6bb5f10fd
  • IV / nonce (hex): aaa9bf1fb27eeefa3b577391
  • Ciphertext (hex): a211880f9e961788eb7e869243cc12635a306015bac39a0407d4f454c5ffbd93792144562674159f13a6c3a320e80ba465a6d7ff455b02da0104bbd4a3d9cbe123a14d65347357aeb12246089ff8c5ce4d4bd07f1852232b93dbd60a16ba44ff35b75980acc7ae4cb998989da234c3f2853f90b686c6daacc04dee9f0b64aebeb02edcec5504ff415c53ef0ef4eb5e6b45bcd1a1a92ac85be3409d6aad563ea90663b8704ff547659e3aafa46cfc46a7813ed50f208922285e19a760ac035fd98a0d454605da84706d1f3d68fe7139f0ab1027d7251c01caa2dd7afdd1bd3d45207d8be2fbda394febd601be2b32
  • Auth tag (hex): ff9355994c0de4476e79af8e8a4accb4

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