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

SJK-j vs KPV Akatemia

Kolmonen - Western Group · Finland · 16 Jul 2026, 16:00 UTC

Final score
6 : 3
Result
Lost
Pick
KPV Akatemia
Market
1x2
Model prob.
24.4%
Best price
6.02
Min odds
4.89
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)
AjQpLZja+615BxBQs4Y6GLqrkteRDTxmIHRZ3Koz4BDPAbxSLyQWFlAEedi4STlFllm08QCnfNYe5c+RPf47qaAx+1X19iICgplOeydY8ihUNZF4gdvZMzhbNKH591y0N4loiOIYFI6NdhwEazamaAeLExKp0rTuvTLQ9HLvgjmYeTnzo4j0qn4wdShBzObn9aNuNZmKgecWaya7+wXU0cIPFa/B3Qt8wMlMRRvzaE0R2h61UzKBJZR3fled2a70OEy+v7yMSX08BSPnACGdz89ugWGYzpa5vS/5KRLNh6lahnuqsv1gpikc6veu9HRLP5Pnx2LmfYTMuvN541zvMqrTv49emf/fT7k=
key fingerprint sha256: 1aaa11003b1bb809b4c84b40cf605aff9311cd8871b622cab8a71f437d88b70a
Decrypt it & read the pick
Decryption key (released after the match)
5aa4e4d6f49cbbbff8d83b9ced0cf37c6c148b1a328ef0f487a8982fb80a9d07
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("AjQpLZja+615BxBQs4Y6GLqrkteRDTxmIHRZ3Koz4BDPAbxSLyQWFlAEedi4STlFllm08QCnfNYe5c+RPf47qaAx+1X19iICgplOeydY8ihUNZF4gdvZMzhbNKH591y0N4loiOIYFI6NdhwEazamaAeLExKp0rTuvTLQ9HLvgjmYeTnzo4j0qn4wdShBzObn9aNuNZmKgecWaya7+wXU0cIPFa/B3Qt8wMlMRRvzaE0R2h61UzKBJZR3fled2a70OEy+v7yMSX08BSPnACGdz89ugWGYzpa5vS/5KRLNh6lahnuqsv1gpikc6veu9HRLP5Pnx2LmfYTMuvN541zvMqrTv49emf/fT7k="), c => c.charCodeAt(0));
const key  = Uint8Array.from("5aa4e4d6f49cbbbff8d83b9ced0cf37c6c148b1a328ef0f487a8982fb80a9d07".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): 5aa4e4d6f49cbbbff8d83b9ced0cf37c6c148b1a328ef0f487a8982fb80a9d07
  • IV / nonce (hex): 0234292d98dafbad79071050
  • Ciphertext (hex): b3863a18baab92d7910d3c66207459dcaa33e010cf01bc522f241616500479d8b84939459659b4f100a77cd61ee5cf913dfe3ba9a031fb55f5f6220282994e7b2758f2285435917881dbd933385b34a1f9f75cb437896888e218148e8d761c046b36a668078b1312a9d2b4eebd32d0f472ef8239987939f3a388f4aa7e30752841cce6e7f5a36e35998a81e7166b26bbfb05d4d1c20f15afc1dd0b7cc0c94c451bf3684d11da1eb55332812594777e579dd9aef4384cbebfbc8c497d3c0523e700219dcfcf6e816198ce96b9bd2ff92912cd87a95a867baab2fd60a6291ceaf7aef4744b3f93e7c762e67d84ccba
  • Auth tag (hex): f379e35cef32aad3bf8f5e99ffdf4fb9

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