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

SJK Akatemia II vs TP-47

Kakkonen Group C · Finland · 06 Sept 2026, 11:00 UTC

Final score
1 : 3
Result
Won
Pick
TP-47
Market
1X2
CLV vs fair close
+0.55%
Model prob.
37.2%
Best price
2.85
Min odds
2.74
Stake factor
1.10

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)
aLjgeDInDlgou6IDMPgUYr1UxTkhPXB46gq8EqiS2hAWAyuzWvB9YxEfr7pvXgnGs1i0VDEd3uNLwRC+OPOYUqnHasX4i5S2FC4CTVHSGCfmxnROm/3fIHzql4CrpU1x9LmJ2u5ia/zPGFmuIuhBKbM/G3l7o2+OwQdQcdifpkydYV1dL7hQzRsOLxl/K8I6W7MALs6So+Sf/Uc3i9qMiYRpQzBDy/TCZXz7elU3xi2rK8RUGiv4tPVqEnRkY9TR5eeKNy7KObyZBr+7IMfe/Omo9EndErT5t9Rjrxs0dKp6mrPX5P9aIO8ZLdtkSJsZeGvtDXgPYqtWbNvHSFjkbvZ5GF+YLYk=
key fingerprint sha256: 9650887431887bc9a1e7aca7d9630b66d42acc9b311cee9f9d7fe2c665fcf320
Decrypt it & read the pick
Decryption key (released after the match)
5fed25ef2de8ce36fce1042ceda7d93d91cc33dd10214cea4aab335a6eee0d61
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("aLjgeDInDlgou6IDMPgUYr1UxTkhPXB46gq8EqiS2hAWAyuzWvB9YxEfr7pvXgnGs1i0VDEd3uNLwRC+OPOYUqnHasX4i5S2FC4CTVHSGCfmxnROm/3fIHzql4CrpU1x9LmJ2u5ia/zPGFmuIuhBKbM/G3l7o2+OwQdQcdifpkydYV1dL7hQzRsOLxl/K8I6W7MALs6So+Sf/Uc3i9qMiYRpQzBDy/TCZXz7elU3xi2rK8RUGiv4tPVqEnRkY9TR5eeKNy7KObyZBr+7IMfe/Omo9EndErT5t9Rjrxs0dKp6mrPX5P9aIO8ZLdtkSJsZeGvtDXgPYqtWbNvHSFjkbvZ5GF+YLYk="), c => c.charCodeAt(0));
const key  = Uint8Array.from("5fed25ef2de8ce36fce1042ceda7d93d91cc33dd10214cea4aab335a6eee0d61".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): 5fed25ef2de8ce36fce1042ceda7d93d91cc33dd10214cea4aab335a6eee0d61
  • IV / nonce (hex): 68b8e07832270e5828bba203
  • Ciphertext (hex): 30f81462bd54c539213d7078ea0abc12a892da1016032bb35af07d63111fafba6f5e09c6b358b454311ddee34bc110be38f39852a9c76ac5f88b94b6142e024d51d21827e6c6744e9bfddf207cea9780aba54d71f4b989daee626bfccf1859ae22e84129b33f1b797ba36f8ec1075071d89fa64c9d615d5d2fb850cd1b0e2f197f2bc23a5bb3002ece92a3e49ffd47378bda8c898469433043cbf4c2657cfb7a5537c62dab2bc4541a2bf8b4f56a12746463d4d1e5e78a372eca39bc9906bfbb20c7defce9a8f449dd12b4f9b7d463af1b3474aa7a9ab3d7e4ff5a20ef192ddb64489b19786bed0d780f62
  • Auth tag (hex): ab566cdbc74858e46ef679185f982d89

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