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

Qarabağ vs Metalist 1925 Kharkiv

Club Friendlies 3 · World · 01 Jul 2026, 11:00 UTC

Final score
2 : 6
Result
Lost
Pick
Draw
Market
1x2
Model prob.
28.6%
Best price
4.46
Min odds
4.06
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)
NrOnRMZhpzS7X62rgQ3wwl4ThMZWAvtbD7V4vtIZcJVOq1qpM3gFOqAhQ9EYGoMFXze9mkiO4KVwvueP93VHxJNkMMaTgRBwElOqAtFX7W3h/7XjdiW1AtCLN8CCImhUwDyGtFApIpVufKxlYibtFxly1yRIyAjLkO/PTZ3NY6IAMMg4qpVFMuUZ2oBpnSdQxa7IR8VkvH3U02102D2ou1/uX2dLgmLTZg1bw9HQGPzFiCvcj3VhsMxJVyoev3xdTkvNxm1RPoHlzvevXe9kd0Mr+QDImC4Bg3vCvSUhecWaFhb0yfzepIu9Qk8FxaBnGTuh4OJKDggH3kuVZmxhKJwT
key fingerprint sha256: 1adb75710c7d8086d31100e171db87e68f3cea54f4db65e49cc774c092f1edd5
Decrypt it & read the pick
Decryption key (released after the match)
16162139cb99a3fcf70d92fdf35c310d19365acc4fb91a62e595e92d0b6b21ce
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("NrOnRMZhpzS7X62rgQ3wwl4ThMZWAvtbD7V4vtIZcJVOq1qpM3gFOqAhQ9EYGoMFXze9mkiO4KVwvueP93VHxJNkMMaTgRBwElOqAtFX7W3h/7XjdiW1AtCLN8CCImhUwDyGtFApIpVufKxlYibtFxly1yRIyAjLkO/PTZ3NY6IAMMg4qpVFMuUZ2oBpnSdQxa7IR8VkvH3U02102D2ou1/uX2dLgmLTZg1bw9HQGPzFiCvcj3VhsMxJVyoev3xdTkvNxm1RPoHlzvevXe9kd0Mr+QDImC4Bg3vCvSUhecWaFhb0yfzepIu9Qk8FxaBnGTuh4OJKDggH3kuVZmxhKJwT"), c => c.charCodeAt(0));
const key  = Uint8Array.from("16162139cb99a3fcf70d92fdf35c310d19365acc4fb91a62e595e92d0b6b21ce".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): 16162139cb99a3fcf70d92fdf35c310d19365acc4fb91a62e595e92d0b6b21ce
  • IV / nonce (hex): 36b3a744c661a734bb5fadab
  • Ciphertext (hex): 810df0c25e1384c65602fb5b0fb578bed21970954eab5aa93378053aa02143d1181a83055f37bd9a488ee0a570bee78ff77547c4936430c6938110701253aa02d157ed6de1ffb5e37625b502d08b37c082226854c03c86b4502922956e7cac656226ed171972d72448c808cb90efcf4d9dcd63a20030c838aa954532e519da80699d2750c5aec847c564bc7dd4d36d74d83da8bb5fee5f674b8262d3660d5bc3d1d018fcc5882bdc8f7561b0cc49572a1ebf7c5d4e4bcdc66d513e81e5cef7af5def6477432bf900c8982e01837bc2bd252179c59a1616f4c9fcdea48bbd424f05c5a067193b
  • Auth tag (hex): a1e0e24a0e0807de4b95666c61289c13

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