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

MPS vs EIF Akademi

Kolmonen - Southern Group · Finland · 01 Jul 2026, 17:45 UTC

Final score
0 : 4
Result
Lost
Pick
MPS
Market
1x2
Model prob.
15.8%
Best price
12.36
Min odds
8.51
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)
JnLchU0EWdV8UrElhMVHJ+ZupJUssf6cf8hFL3VEXjF1jWcQTIkqf1eX3Eaq0qUlIW+5+CEc4VFGB78jqGndOHS9fkQLwq2owIIGJAR3gNi4q25FowIIF7YpCenNGBdWg3Q5G9SsR2vdVRtjWfO68sWO2U9eJS+Ty4VhL6s9b5Hs0w2nOKiO1NgZuxMxHseBKAtw1gEvSzkFRNyGTjaAmaICFdyWdpORm86gwCYaTiiltHMoHWDk7crnBFKzXCqJtaQP3xgK3LvvXDsR+tgwzRCwos+miQK+XdZs8ethSmvgYuwOucbodtJpqoKwJuK04caRM+flC55ketGc2ECF2ZCHVA==
key fingerprint sha256: bbbe0f3444784c60e7dbe13cfe51339c621c37f95ce47443a6d46f650a88c592
Decrypt it & read the pick
Decryption key (released after the match)
f1ff81256622819bc3a968b105505e645c46f2bf56bbbb35a9b046d6feba71f1
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("JnLchU0EWdV8UrElhMVHJ+ZupJUssf6cf8hFL3VEXjF1jWcQTIkqf1eX3Eaq0qUlIW+5+CEc4VFGB78jqGndOHS9fkQLwq2owIIGJAR3gNi4q25FowIIF7YpCenNGBdWg3Q5G9SsR2vdVRtjWfO68sWO2U9eJS+Ty4VhL6s9b5Hs0w2nOKiO1NgZuxMxHseBKAtw1gEvSzkFRNyGTjaAmaICFdyWdpORm86gwCYaTiiltHMoHWDk7crnBFKzXCqJtaQP3xgK3LvvXDsR+tgwzRCwos+miQK+XdZs8ethSmvgYuwOucbodtJpqoKwJuK04caRM+flC55ketGc2ECF2ZCHVA=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("f1ff81256622819bc3a968b105505e645c46f2bf56bbbb35a9b046d6feba71f1".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): f1ff81256622819bc3a968b105505e645c46f2bf56bbbb35a9b046d6feba71f1
  • IV / nonce (hex): 2672dc854d0459d57c52b125
  • Ciphertext (hex): 84c54727e66ea4952cb1fe9c7fc8452f75445e31758d67104c892a7f5797dc46aad2a525216fb9f8211ce1514607bf23a869dd3874bd7e440bc2ada8c0820624047780d8b8ab6e45a3020817b62909e9cd1817568374391bd4ac476bdd551b6359f3baf2c58ed94f5e252f93cb85612fab3d6f91ecd30da738a88ed4d819bb13311ec781280b70d6012f4b390544dc864e368099a20215dc967693919bcea0c0261a4e28a5b473281d60e4edcae70452b35c2a89b5a40fdf180adcbbef5c3b11fad830cd10b0a2cfa68902be5dd66cf1eb614a6be062ec0eb9c6e876d269aa82b026e2b4e1c691
  • Auth tag (hex): 33e7e50b9e647ad19cd84085d9908754

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