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

Zlín vs Hapoel Tel Aviv

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

Final score
1 : 2
Result
Lost
Pick
Draw
Market
1x2
Model prob.
31.2%
Best price
4.02
Min odds
3.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)
6+fgLrlcrwDap7RcwhauGUi0qI/CzFlT3mHfIxPyc8/222H0uPIyfFTp/geEA/S5CTDbmTIWccxn5CChJqc77gd/ffhFfg0CRUmIWpu7kwae/NqX+zjzLzpASjDf+x2v39TWM2K12DEgDWUWmc3MvkAZRsWJH/vg0BVyzBnMsQjrErsXd/HA3B2cns2TuQ9m74ntWZdW13go7xMy0numMP6eqyTZYGWxNGN9PYiPCTuwfRI4bkf6dp/prT5lFU0lHhS7cdL006akGQmaRK5gHz+AcCP6ATbZY/Xwk+I0o2M88JtPSPXyZsbLvYfRFX8mbEOc09co+PHSCkliXLxg7V80
key fingerprint sha256: 2db00c0409106f36b7e01804d154c8706ac747542e239fc384a8b1be6834fe2c
Decrypt it & read the pick
Decryption key (released after the match)
3e0c1adea517c3e6307ad97a243b2db74d030fb273d27ec620609593f772f4b5
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("6+fgLrlcrwDap7RcwhauGUi0qI/CzFlT3mHfIxPyc8/222H0uPIyfFTp/geEA/S5CTDbmTIWccxn5CChJqc77gd/ffhFfg0CRUmIWpu7kwae/NqX+zjzLzpASjDf+x2v39TWM2K12DEgDWUWmc3MvkAZRsWJH/vg0BVyzBnMsQjrErsXd/HA3B2cns2TuQ9m74ntWZdW13go7xMy0numMP6eqyTZYGWxNGN9PYiPCTuwfRI4bkf6dp/prT5lFU0lHhS7cdL006akGQmaRK5gHz+AcCP6ATbZY/Xwk+I0o2M88JtPSPXyZsbLvYfRFX8mbEOc09co+PHSCkliXLxg7V80"), c => c.charCodeAt(0));
const key  = Uint8Array.from("3e0c1adea517c3e6307ad97a243b2db74d030fb273d27ec620609593f772f4b5".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): 3e0c1adea517c3e6307ad97a243b2db74d030fb273d27ec620609593f772f4b5
  • IV / nonce (hex): ebe7e02eb95caf00daa7b45c
  • Ciphertext (hex): c216ae1948b4a88fc2cc5953de61df2313f273cff6db61f4b8f2327c54e9fe078403f4b90930db99321671cc67e420a126a73bee077f7df8457e0d024549885a9bbb93069efcda97fb38f32f3a404a30dffb1dafdfd4d63362b5d831200d651699cdccbe401946c5891ffbe0d01572cc19ccb108eb12bb1777f1c0dc1d9c9ecd93b90f66ef89ed599756d77828ef1332d27ba630fe9eab24d96065b134637d3d888f093bb07d12386e47fa769fe9ad3e65154d251e14bb71d2f4d3a6a419099a44ae601f3f807023fa0136d963f5f093e234a3633cf09b4f48f5f266c6cbbd87d1157f266c43
  • Auth tag (hex): 9cd3d728f8f1d20a49625cbc60ed5f34

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