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

Zilina vs Podbrezova

Super Liga · Slovakia · 05 Sept 2026, 16:00 UTC

Final score
3 : 1
Result
Lost
Pick
Draw
Market
1X2
CLV vs fair close
+2.83%
Model prob.
27.2%
Best price
4.00
Min odds
3.76
Stake factor
1.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)
527HCSA6ITN1HP4Pc/+jOblr+8tGddKKEM5LW5a/tMdQWq8srINEIbo20oWNjjVmXjHqS3TYdQw+H9kisdU0zBeiht9vjcNKiD6j1m2c7EPuuKD3hvFsRcwcBlk4MwKNLW7gDplmd9qMThQwr/lIMIpAKWF4kvjNBAJNsNuCbLgdK7G9nJmpJQDQthtKYFf9CgMpwBY3qS9Wjasno5Z/Zptu6VaqPMGLwYuJkXVVqfGTI1DaGsC4dAl3jJb3N7i6u7GM1fNZmGD48aqOMhdcSUqGXRwsgrwvZ+mrssDRNiRLGnh0FjT0D1qv7GVAdZc9intpqbuDOruDCpPnAejwdj/u
key fingerprint sha256: f9ce47556b0eca923ee953d8bef31f8d7d3cdc6fa1f71b8348abef18b6f533df
Decrypt it & read the pick
Decryption key (released after the match)
23503d323b45139d2e5d6eda8d1152dfcc7caabef60345eed15795f77fd90367
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("527HCSA6ITN1HP4Pc/+jOblr+8tGddKKEM5LW5a/tMdQWq8srINEIbo20oWNjjVmXjHqS3TYdQw+H9kisdU0zBeiht9vjcNKiD6j1m2c7EPuuKD3hvFsRcwcBlk4MwKNLW7gDplmd9qMThQwr/lIMIpAKWF4kvjNBAJNsNuCbLgdK7G9nJmpJQDQthtKYFf9CgMpwBY3qS9Wjasno5Z/Zptu6VaqPMGLwYuJkXVVqfGTI1DaGsC4dAl3jJb3N7i6u7GM1fNZmGD48aqOMhdcSUqGXRwsgrwvZ+mrssDRNiRLGnh0FjT0D1qv7GVAdZc9intpqbuDOruDCpPnAejwdj/u"), c => c.charCodeAt(0));
const key  = Uint8Array.from("23503d323b45139d2e5d6eda8d1152dfcc7caabef60345eed15795f77fd90367".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): 23503d323b45139d2e5d6eda8d1152dfcc7caabef60345eed15795f77fd90367
  • IV / nonce (hex): e76ec709203a2133751cfe0f
  • Ciphertext (hex): 73ffa339b96bfbcb4675d28a10ce4b5b96bfb4c7505aaf2cac834421ba36d2858d8e35665e31ea4b74d8750c3e1fd922b1d534cc17a286df6f8dc34a883ea3d66d9cec43eeb8a0f786f16c45cc1c06593833028d2d6ee00e996677da8c4e1430aff948308a4029617892f8cd04024db0db826cb81d2bb1bd9c99a92500d0b61b4a6057fd0a0329c01637a92f568dab27a3967f669b6ee956aa3cc18bc18b89917555a9f1932350da1ac0b87409778c96f737b8babbb18cd5f3599860f8f1aa8e32175c494a865d1c2c82bc2f67e9abb2c0d136244b1a78741634f40f5aafec654075973d8a7b
  • Auth tag (hex): 69a9bb833abb830a93e701e8f0763fee

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