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

Diósgyőr vs Zemplín Michalovce

Club Friendlies 3 · World · 27 Jun 2026, 00:00 UTC

Final score
1 : 0
Result
Won
Pick
Diósgyőr
Market
1x2
Model prob.
41.5%
Best price
3.19
Min odds
2.67
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)
lw+PUGQmu3hiNpNmTckyaWG5TwAKCVeuVFvdjI15U117v9knrqotcW5Iv4R1/Ei/+ANvX+BUMSxDZJw4lt5Uk0gCZVpyt9D5VG+tKrrptdPGALEFDMJW8DeChjEdSS62Kk6y6mx6oaP6F8zXq5DGd/ZrJmUpDYVyJkJQ/Lt0lu+OazygpOTKS1YiY4+DN4nzDGUll3l3u9kRkgniCwRaa5fvH8daQ85fCRHCZpHjPScobO0thNgA1toD1N4G47jHgmULy0IQtT25R+a5mv2McqFgvbdAuHtWozXJPhFRYHUbOed87B3KmAcgU3uaX0ILMl3fcRy6s32ZK32Z6NuJEvWLyXVo3zJ0sg==
key fingerprint sha256: fc6cea2960e1ffc38e550ffcb90c263e936eb229f0fea2779d674054c9d530d6
Decrypt it & read the pick
Decryption key (released after the match)
f23bbd09316221cb5f74d7b27f103e2ee22c55f20e558d797d0e3a057721ac17
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("lw+PUGQmu3hiNpNmTckyaWG5TwAKCVeuVFvdjI15U117v9knrqotcW5Iv4R1/Ei/+ANvX+BUMSxDZJw4lt5Uk0gCZVpyt9D5VG+tKrrptdPGALEFDMJW8DeChjEdSS62Kk6y6mx6oaP6F8zXq5DGd/ZrJmUpDYVyJkJQ/Lt0lu+OazygpOTKS1YiY4+DN4nzDGUll3l3u9kRkgniCwRaa5fvH8daQ85fCRHCZpHjPScobO0thNgA1toD1N4G47jHgmULy0IQtT25R+a5mv2McqFgvbdAuHtWozXJPhFRYHUbOed87B3KmAcgU3uaX0ILMl3fcRy6s32ZK32Z6NuJEvWLyXVo3zJ0sg=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("f23bbd09316221cb5f74d7b27f103e2ee22c55f20e558d797d0e3a057721ac17".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): f23bbd09316221cb5f74d7b27f103e2ee22c55f20e558d797d0e3a057721ac17
  • IV / nonce (hex): 970f8f506426bb7862369366
  • Ciphertext (hex): 4dc9326961b94f000a0957ae545bdd8c8d79535d7bbfd927aeaa2d716e48bf8475fc48bff8036f5fe054312c43649c3896de54934802655a72b7d0f9546fad2abae9b5d3c600b1050cc256f0378286311d492eb62a4eb2ea6c7aa1a3fa17ccd7ab90c677f66b2665290d8572264250fcbb7496ef8e6b3ca0a4e4ca4b5622638f833789f30c6525977977bbd9119209e20b045a6b97ef1fc75a43ce5f0911c26691e33d27286ced2d84d800d6da03d4de06e3b8c782650bcb4210b53db947e6b99afd8c72a160bdb740b87b56a335c93e115160751b39e77cec1dca980720537b9a5f420b325ddf711cbab37d99
  • Auth tag (hex): 2b7d99e8db8912f58bc97568df3274b2

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