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

Mjällby vs Lincoln Red Imps

Champions League · Europe · 21 Jul 2026, 16:00 UTC

Final score
3 : 0
Result
Won
Pick
Mjällby
Market
1x2
Model prob.
87.0%
Best price
1.24
Min odds
1.20
Stake factor
1.50

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)
M6FDnoWJ2wxPdD6+MXaJwL0yIoZngYFv4sTeBXaqFNL9fifn6UeQZMT7c23m2paIiw2SlyC3RROVKI6IhMsGocqN7rS9PNvdrG41uNQwEJnUkLlAsu43mEYWajC1BCMYmlLo16UvpgRadw9Y6fGqDxo5xa3tjrSCaMHWpznSHn0ofYGtlK08tBMi8nS2LgyEGOynjKOmubYoARpHX7cDAcwwvG3zB20b8WJQ4UqQ6f1zJyK9HBrGQ4GKPxlrOBPmc3AIdA33oasvMO0L8ARdekFdDWMpvelxi9R1sHPLK61Exmfavmr+kyX/VF73Op2BITfgAHvy0S1yyuwy67rqBLO9VY4U
key fingerprint sha256: e8799dccf4d16bc8be12c0f14091220c2d618e4398c3eac2b29aa224a3bbc778
Decrypt it & read the pick
Decryption key (released after the match)
f4f9789384779b1790a34c398029320ad58b7fcc16057aa524cdd1d6e2bae7cb
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("M6FDnoWJ2wxPdD6+MXaJwL0yIoZngYFv4sTeBXaqFNL9fifn6UeQZMT7c23m2paIiw2SlyC3RROVKI6IhMsGocqN7rS9PNvdrG41uNQwEJnUkLlAsu43mEYWajC1BCMYmlLo16UvpgRadw9Y6fGqDxo5xa3tjrSCaMHWpznSHn0ofYGtlK08tBMi8nS2LgyEGOynjKOmubYoARpHX7cDAcwwvG3zB20b8WJQ4UqQ6f1zJyK9HBrGQ4GKPxlrOBPmc3AIdA33oasvMO0L8ARdekFdDWMpvelxi9R1sHPLK61Exmfavmr+kyX/VF73Op2BITfgAHvy0S1yyuwy67rqBLO9VY4U"), c => c.charCodeAt(0));
const key  = Uint8Array.from("f4f9789384779b1790a34c398029320ad58b7fcc16057aa524cdd1d6e2bae7cb".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): f4f9789384779b1790a34c398029320ad58b7fcc16057aa524cdd1d6e2bae7cb
  • IV / nonce (hex): 33a1439e8589db0c4f743ebe
  • Ciphertext (hex): 317689c0bd3222866781816fe2c4de0576aa14d2fd7e27e7e9479064c4fb736de6da96888b0d929720b7451395288e8884cb06a1ca8deeb4bd3cdbddac6e35b8d4301099d490b940b2ee379846166a30b50423189a52e8d7a52fa6045a770f58e9f1aa0f1a39c5aded8eb48268c1d6a739d21e7d287d81ad94ad3cb41322f274b62e0c8418eca78ca3a6b9b628011a475fb70301cc30bc6df3076d1bf16250e14a90e9fd732722bd1c1ac643818a3f196b3813e6737008740df7a1ab2f30ed0bf0045d7a415d0d6329bde9718bd475b073cb2bad44c667dabe6afe9325ff545ef73a9d812137e0007b
  • Auth tag (hex): f2d12d72caec32ebbaea04b3bd558e14

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