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

Sochi vs Spartak Kostroma

FNL · Russia · 19 Jul 2026, 15:00 UTC

Final score
0 : 2
Result
Lost
Pick
Sochi
Market
1x2
Model prob.
53.4%
Best price
2.15
Min odds
2.02
Stake factor
2.20

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)
7g12nGeXZSQfAJeYitUSWFUFHNw6Jc4jwBxH/Z3Cbh9tzrcsVDUFih78lWGprvavXErdlbiWTPJ4+ewD6HtmsSiVs5+RdxkfewBAzyO3/flOKvsJZwmVXJd3QdNOlt84pYNrO8UYrfAeElLE0uF3FbH4iBCs0myAnqfugnQej91FRocmvyWuUn0LQikQGLBq1pVS6CkrEErqinvOehe/+H7vEvnvF8m55shET7Kv0te7ECgs7EDTGb9XolFQEgmLyR2ExROJYNHzerCG/6S4wTd7mLnNixvqwlCqjLUEo+MnavQ4Sys2eNbiR0wRdUQ4mjs8oHRBt2tg7PVvC0CjN9RoUgM=
key fingerprint sha256: 2f9697aed14ce9ca7d71bf595107a7b8a9237d38361b249d964382692613c3bd
Decrypt it & read the pick
Decryption key (released after the match)
5432e24f20a3c8189aa4b6a34698d95fe02f3935347df666e1bca81763bd11ac
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("7g12nGeXZSQfAJeYitUSWFUFHNw6Jc4jwBxH/Z3Cbh9tzrcsVDUFih78lWGprvavXErdlbiWTPJ4+ewD6HtmsSiVs5+RdxkfewBAzyO3/flOKvsJZwmVXJd3QdNOlt84pYNrO8UYrfAeElLE0uF3FbH4iBCs0myAnqfugnQej91FRocmvyWuUn0LQikQGLBq1pVS6CkrEErqinvOehe/+H7vEvnvF8m55shET7Kv0te7ECgs7EDTGb9XolFQEgmLyR2ExROJYNHzerCG/6S4wTd7mLnNixvqwlCqjLUEo+MnavQ4Sys2eNbiR0wRdUQ4mjs8oHRBt2tg7PVvC0CjN9RoUgM="), c => c.charCodeAt(0));
const key  = Uint8Array.from("5432e24f20a3c8189aa4b6a34698d95fe02f3935347df666e1bca81763bd11ac".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): 5432e24f20a3c8189aa4b6a34698d95fe02f3935347df666e1bca81763bd11ac
  • IV / nonce (hex): ee0d769c679765241f009798
  • Ciphertext (hex): 8ad5125855051cdc3a25ce23c01c47fd9dc26e1f6dceb72c5435058a1efc9561a9aef6af5c4add95b8964cf278f9ec03e87b66b12895b39f9177191f7b0040cf23b7fdf94e2afb096709955c977741d34e96df38a5836b3bc518adf01e1252c4d2e17715b1f88810acd26c809ea7ee82741e8fdd45468726bf25ae527d0b42291018b06ad69552e8292b104aea8a7bce7a17bff87eef12f9ef17c9b9e6c8444fb2afd2d7bb10282cec40d319bf57a2515012098bc91d84c5138960d1f37ab086ffa4b8c1377b98b9cd8b1beac250aa8cb504a3e3276af4384b2b3678d6e2474c117544389a3b3ca0
  • Auth tag (hex): 7441b76b60ecf56f0b40a337d4685203

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