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

LBK vs SJK-j

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

Final score
4 : 2
Result
Lost
Pick
SJK-j
Market
1x2
Model prob.
70.0%
Best price
1.58
Min odds
1.51
Stake factor
1.80

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)
H4YeS6figdBjimugKfDooSEqeGwWhuhsSaThaR0s6RgrJbx2QUnezLaZK2f1W2oITO5oRcZ4zYYbeu6pw6EdtzpawIRZ7aIZhZYnaL+0bclAYWruoQhV2tFTqiiFXRli4ZHrkoQC++FUyviciiaHoirB4pttTqiZVrTKNZMtmh7fjXG4r4G1s4mr6t5EMTQhY0MW2TIhCdWQYLIqXO/yyr/s1Bmf05BDz2UziM9p22r3sSUgeSW6yZSUtFsSVTYb5VJgH7n021nBp+Nh9ifukpR7oTjfRZK+THpbvcsJnxsePZGBJXonng7LQHdiORy7Ua/zvutGbZF707dSRlfQIc0A1+ZVbQ==
key fingerprint sha256: 179b2a06bfa987f4d550261b84ce9a692679f4bca8cada0208dffd0274d14b20
Decrypt it & read the pick
Decryption key (released after the match)
58c8e80799dc6f9dd2a3185b3fd707ebdaec80ddb3665a04efb1a4593a885511
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("H4YeS6figdBjimugKfDooSEqeGwWhuhsSaThaR0s6RgrJbx2QUnezLaZK2f1W2oITO5oRcZ4zYYbeu6pw6EdtzpawIRZ7aIZhZYnaL+0bclAYWruoQhV2tFTqiiFXRli4ZHrkoQC++FUyviciiaHoirB4pttTqiZVrTKNZMtmh7fjXG4r4G1s4mr6t5EMTQhY0MW2TIhCdWQYLIqXO/yyr/s1Bmf05BDz2UziM9p22r3sSUgeSW6yZSUtFsSVTYb5VJgH7n021nBp+Nh9ifukpR7oTjfRZK+THpbvcsJnxsePZGBJXonng7LQHdiORy7Ua/zvutGbZF707dSRlfQIc0A1+ZVbQ=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("58c8e80799dc6f9dd2a3185b3fd707ebdaec80ddb3665a04efb1a4593a885511".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): 58c8e80799dc6f9dd2a3185b3fd707ebdaec80ddb3665a04efb1a4593a885511
  • IV / nonce (hex): 1f861e4ba7e281d0638a6ba0
  • Ciphertext (hex): 29f0e8a1212a786c1686e86c49a4e1691d2ce9182b25bc764149deccb6992b67f55b6a084cee6845c678cd861b7aeea9c3a11db73a5ac08459eda21985962768bfb46dc940616aeea10855dad153aa28855d1962e191eb928402fbe154caf89c8a2687a22ac1e29b6d4ea89956b4ca35932d9a1edf8d71b8af81b5b389abeade44313421634316d9322109d59060b22a5ceff2cabfecd4199fd39043cf653388cf69db6af7b125207925bac99494b45b1255361be552601fb9f4db59c1a7e361f627ee92947ba138df4592be4c7a5bbdcb099f1b1e3d9181257a279e0ecb407762391cbb51aff3beeb46
  • Auth tag (hex): 6d917bd3b7524657d021cd00d7e6556d

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