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

Dunav 2010 vs Ludogorets

First League · Bulgaria · 27 Jul 2026, 16:00 UTC

Final score
0 : 2
Result
Won
Pick
Ludogorets
Market
1x2
Model prob.
78.2%
Best price
1.40
Min odds
1.35
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)
9Iw281qjDUuTqKvulSC1hoRjMG3Q3Sc8ER2ajs7oxOuR0RufOzv/sbY+aaIclrYGJUxOBb8knCxlU/R3cMeapF0H8kBmnoeG89D53uFzjfVPGZ/BiejsYzFe5JP+dvaQOMt2ON19Wgbu8wzUgXK07aHu1GFSzJu2KBwN7I0H8aKSHvSUfH61YxGFLZd7dgdiWZplXZNoD1J4gTKIJTzT2ddTCgscsRHWvzl0Ds5+JplkMq7v/St3U8N5ozWR+WKsDjBMv1x62+x7vxeGxs8DS/ldhDGhxooUWI4Mw5iJmGmP8uhvgmPz/78WeAm2iPer8fayqfjRJXOSAVou1eB3IVXiKrFkG8xCpw==
key fingerprint sha256: ded35b5ccfb3c6e406bd2569cc73d5a0846dde54865a7c11cf8b47d92ef537ee
Decrypt it & read the pick
Decryption key (released after the match)
4e7f6d7137135407e905b67fdc3a278fc75079e0ad2acd1fd41e143933e66423
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("9Iw281qjDUuTqKvulSC1hoRjMG3Q3Sc8ER2ajs7oxOuR0RufOzv/sbY+aaIclrYGJUxOBb8knCxlU/R3cMeapF0H8kBmnoeG89D53uFzjfVPGZ/BiejsYzFe5JP+dvaQOMt2ON19Wgbu8wzUgXK07aHu1GFSzJu2KBwN7I0H8aKSHvSUfH61YxGFLZd7dgdiWZplXZNoD1J4gTKIJTzT2ddTCgscsRHWvzl0Ds5+JplkMq7v/St3U8N5ozWR+WKsDjBMv1x62+x7vxeGxs8DS/ldhDGhxooUWI4Mw5iJmGmP8uhvgmPz/78WeAm2iPer8fayqfjRJXOSAVou1eB3IVXiKrFkG8xCpw=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("4e7f6d7137135407e905b67fdc3a278fc75079e0ad2acd1fd41e143933e66423".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): 4e7f6d7137135407e905b67fdc3a278fc75079e0ad2acd1fd41e143933e66423
  • IV / nonce (hex): f48c36f35aa30d4b93a8abee
  • Ciphertext (hex): 9520b5868463306dd0dd273c111d9a8ecee8c4eb91d11b9f3b3bffb1b63e69a21c96b606254c4e05bf249c2c6553f47770c79aa45d07f240669e8786f3d0f9dee1738df54f199fc189e8ec63315ee493fe76f69038cb7638dd7d5a06eef30cd48172b4eda1eed46152cc9bb6281c0dec8d07f1a2921ef4947c7eb56311852d977b760762599a655d93680f5278813288253cd3d9d7530a0b1cb111d6bf39740ece7e26996432aeeffd2b7753c379a33591f962ac0e304cbf5c7adbec7bbf1786c6cf034bf95d8431a1c68a14588e0cc3988998698ff2e86f8263f3ffbf167809b688f7abf1f6b2a9f8d1257392
  • Auth tag (hex): 015a2ed5e0772155e22ab1641bcc42a7

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