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

Zeljeznicar vs BSK Banja Luka

Premier Liga · Bosnia and Herzegovina · 07 Aug 2026, 18:00 UTC

Final score
2 : 1
Result
Won
Pick
Zeljeznicar
Market
1x2
Model prob.
39.4%
Best price
3.30
Min odds
2.82
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)
jbPbTbgdnI9V3tGJ3bvzDWFQzfVqj7kt7Woag2jCwdt61X3WBbrT4vojzlQENXzQFUE0VHejizxmdacKZos0SwU9sdNcdjJvRP5KauTq3kFWphdp4yFlzfPc0GSvsrnkrYQPAuoFuZ9t+uestBsmVoL4LZ7VprlVb4s4CC67baz3K5Nbxj8ZoZ8CklwjaoUzEHpRjcZOtrp6HKc5nTfHFiz5gQbF8T0ZD3V02kG9xInk7kN0Tad2JcMsGSBKOuFYZh7/PyxSKZaeEKcT7qTFuLYZaJs0LnY2V3ENXccw90uW6pzbtw07BuENbu5VSVSpQrESXOh97t8GYXuW9DGoRO36nAxDiw==
key fingerprint sha256: e08571088789e4f7a018b68ac13bf4aecd0831ab7fd5219864d442cfc3d722ea
Decrypt it & read the pick
Decryption key (released after the match)
f02e248fd61551d778f6b0c3014bfa9b64ef9f6bf97d04169498a684777d1943
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("jbPbTbgdnI9V3tGJ3bvzDWFQzfVqj7kt7Woag2jCwdt61X3WBbrT4vojzlQENXzQFUE0VHejizxmdacKZos0SwU9sdNcdjJvRP5KauTq3kFWphdp4yFlzfPc0GSvsrnkrYQPAuoFuZ9t+uestBsmVoL4LZ7VprlVb4s4CC67baz3K5Nbxj8ZoZ8CklwjaoUzEHpRjcZOtrp6HKc5nTfHFiz5gQbF8T0ZD3V02kG9xInk7kN0Tad2JcMsGSBKOuFYZh7/PyxSKZaeEKcT7qTFuLYZaJs0LnY2V3ENXccw90uW6pzbtw07BuENbu5VSVSpQrESXOh97t8GYXuW9DGoRO36nAxDiw=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("f02e248fd61551d778f6b0c3014bfa9b64ef9f6bf97d04169498a684777d1943".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): f02e248fd61551d778f6b0c3014bfa9b64ef9f6bf97d04169498a684777d1943
  • IV / nonce (hex): 8db3db4db81d9c8f55ded189
  • Ciphertext (hex): ddbbf30d6150cdf56a8fb92ded6a1a8368c2c1db7ad57dd605bad3e2fa23ce5404357cd01541345477a38b3c6675a70a668b344b053db1d35c76326f44fe4a6ae4eade4156a61769e32165cdf3dcd064afb2b9e4ad840f02ea05b99f6dfae7acb41b265682f82d9ed5a6b9556f8b38082ebb6dacf72b935bc63f19a19f02925c236a8533107a518dc64eb6ba7a1ca7399d37c7162cf98106c5f13d190f7574da41bdc489e4ee43744da77625c32c19204a3ae158661eff3f2c5229969e10a713eea4c5b8b619689b342e763657710d5dc730f74b96ea9cdbb70d3b06e10d6eee554954a942b1125ce87d
  • Auth tag (hex): eedf06617b96f431a844edfa9c0c438b

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