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

Hartberg vs Zbrojovka Brno

Club Friendlies 3 · World · 08 Jul 2026, 15:00 UTC

Final score
2 : 0
Result
Lost
Pick
Zbrojovka Brno
Market
1x2
Model prob.
33.3%
Best price
3.76
Min odds
3.41
Stake factor
3.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)
hERpPB+5S0C5y6yoxlGKxuMz8Bs1VtkRW9QzyxLr08eGtU6HnUN4Gk+9/P02ez2QDZrtzLDOul2GpRlKqe/GGZz2EHPNIX0pdlGh8yz7V2K4JMeu87u5uiBOB3HGZQ2BYwt0MQKPXkk660RIpVM1TPaX4kearxAkeK/uMQ8f8u79QJrVB3voVgtS0KyfUn5lFL6zPRx0+uPUFIailVViCwNdBhRUEPcm3vlBwllcL0x9kYgCYNZl1x+of1YDgvMD8O8yE0rAM/ufaAFlCz7ejKQd8tVCBkZfQ+jkZOiVt0dB0XluRKzf36vuf8RhQlh/WX4YFjqhwFWESrz8InlL2fPZuvPnYFv88GW/
key fingerprint sha256: 659e0f70c41facc27c4a2e2f03cf6698e8b4a4ba960859c4b935989ed7eb2c5b
Decrypt it & read the pick
Decryption key (released after the match)
cbd901e2276700be94388839c64684ea749bb7aa31820497a6e1a7dda482bd16
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("hERpPB+5S0C5y6yoxlGKxuMz8Bs1VtkRW9QzyxLr08eGtU6HnUN4Gk+9/P02ez2QDZrtzLDOul2GpRlKqe/GGZz2EHPNIX0pdlGh8yz7V2K4JMeu87u5uiBOB3HGZQ2BYwt0MQKPXkk660RIpVM1TPaX4kearxAkeK/uMQ8f8u79QJrVB3voVgtS0KyfUn5lFL6zPRx0+uPUFIailVViCwNdBhRUEPcm3vlBwllcL0x9kYgCYNZl1x+of1YDgvMD8O8yE0rAM/ufaAFlCz7ejKQd8tVCBkZfQ+jkZOiVt0dB0XluRKzf36vuf8RhQlh/WX4YFjqhwFWESrz8InlL2fPZuvPnYFv88GW/"), c => c.charCodeAt(0));
const key  = Uint8Array.from("cbd901e2276700be94388839c64684ea749bb7aa31820497a6e1a7dda482bd16".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): cbd901e2276700be94388839c64684ea749bb7aa31820497a6e1a7dda482bd16
  • IV / nonce (hex): 8444693c1fb94b40b9cbaca8
  • Ciphertext (hex): c6518ac6e333f01b3556d9115bd433cb12ebd3c786b54e879d43781a4fbdfcfd367b3d900d9aedccb0ceba5d86a5194aa9efc6199cf61073cd217d297651a1f32cfb5762b824c7aef3bbb9ba204e0771c6650d81630b7431028f5e493aeb4448a553354cf697e2479aaf102478afee310f1ff2eefd409ad5077be8560b52d0ac9f527e6514beb33d1c74fae3d41486a29555620b035d06145410f726def941c2595c2f4c7d91880260d665d71fa87f560382f303f0ef32134ac033fb9f6801650b3ede8ca41df2d54206465f43e8e464e895b74741d1796e44acdfdfabee7fc46142587f597e18163aa1c055844abc
  • Auth tag (hex): fc22794bd9f3d9baf3e7605bfcf065bf

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