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

Sturm Graz vs Mura

Club Friendlies 3 · World · 26 Jun 2026, 17:00 UTC

Final score
5 : 0
Result
Won
Pick
Sturm Graz
Market
1x2
Model prob.
81.0%
Best price
1.34
Min odds
1.30
Stake factor
1.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)
/ItKDmdCdPq3YM72+D6wSVEdVZY9vUJ5iqXzXjN3/jgJacJyLEC7VngN7xDBV6EURuY0gc3/MskMOGWOp2L3FEFtLhkgCEv6lbtWAW6S8V/MgDG0Zpt8xfpXTHR+LjDwdYOaz8+To6xhXw7BqZ/xp0gTacH3nSvN2XVUI3a282MqqFwkevvr7/STWWPsdppjA+doBwP7U8NuVjzES6toTRuHkI+vs3CZAzNcYsJElCDLiyS0yEL/gJ1KE96yh1pNSR0pLu5GN3S9rK04Vgo1meTqTpl6nxI4zhRixCN1vIBukVK2Tsj2CmnB/9h/PmbadWmcp4XtBBc5Md7rlJVPjSa0jJ2kUB4VDg==
key fingerprint sha256: b7eb90c0673e6a289a743cf4aaa5cd985eb251ffd1332d4506f98e1302b1d5da
Decrypt it & read the pick
Decryption key (released after the match)
905f81986356ca2fa493af5f8058ec8b6e282d55245af891a50a461b8ea5f85a
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("/ItKDmdCdPq3YM72+D6wSVEdVZY9vUJ5iqXzXjN3/jgJacJyLEC7VngN7xDBV6EURuY0gc3/MskMOGWOp2L3FEFtLhkgCEv6lbtWAW6S8V/MgDG0Zpt8xfpXTHR+LjDwdYOaz8+To6xhXw7BqZ/xp0gTacH3nSvN2XVUI3a282MqqFwkevvr7/STWWPsdppjA+doBwP7U8NuVjzES6toTRuHkI+vs3CZAzNcYsJElCDLiyS0yEL/gJ1KE96yh1pNSR0pLu5GN3S9rK04Vgo1meTqTpl6nxI4zhRixCN1vIBukVK2Tsj2CmnB/9h/PmbadWmcp4XtBBc5Md7rlJVPjSa0jJ2kUB4VDg=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("905f81986356ca2fa493af5f8058ec8b6e282d55245af891a50a461b8ea5f85a".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): 905f81986356ca2fa493af5f8058ec8b6e282d55245af891a50a461b8ea5f85a
  • IV / nonce (hex): fc8b4a0e674274fab760cef6
  • Ciphertext (hex): f83eb049511d55963dbd42798aa5f35e3377fe380969c2722c40bb56780def10c157a11446e63481cdff32c90c38658ea762f714416d2e1920084bfa95bb56016e92f15fcc8031b4669b7cc5fa574c747e2e30f075839acfcf93a3ac615f0ec1a99ff1a7481369c1f79d2bcdd975542376b6f3632aa85c247afbebeff4935963ec769a6303e7680703fb53c36e563cc44bab684d1b87908fafb3709903335c62c2449420cb8b24b4c842ff809d4a13deb2875a4d491d292eee463774bdacad38560a3599e4ea4e997a9f1238ce1462c42375bc806e9152b64ec8f60a69c1ffd87f3e66da75699ca785ed041739
  • Auth tag (hex): 31deeb94954f8d26b48c9da4501e150e

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