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

GrIFK vs MuSa

Kakkonen Group B · Finland · 18 Sept 2026, 15:30 UTC

Final score
1 : 1
Result
Lost
Pick
MuSa
Market
1X2
CLV vs fair close
-0.84%
Model prob.
20.6%
Best price
5.50
Min odds
4.95
Stake factor
1.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)
Q+cgR5NNx4ZeFUcYvcH1L4dlYFOIx1SUswBzg87E/pybbdJ4pkHdGE+ZdMjBquqvFIdf6Wt3Z7nVBcqil6JtT2M0Jmkdusr51e1QZ9394AtK1kVsWuKVBCbnsd7qi5ROrNqYzZwrn19b4Her0KaMaiulu7N3cZ7886oFwbMt1sVkfzMaLbuzLlGM6r84TrhGFW23A6MPJlLWu2wT7N3yxfkq54gZWdxTSK3laptyZDMP+3hq5GfBlmMRpRCKOv6ZVy7z6+WUOMNcyxUA/IwivVXEHZ1+UkoZB55WkDVgZrIWOMpeKAVs9Ew3+nExuQNuQfISBihGZ970WwmB3TcQ1uERgA==
key fingerprint sha256: 574e641d61ceca49da8d6446bdf42ccb3d2d222f5241e2d0f059fc315cad8baa
Decrypt it & read the pick
Decryption key (released after the match)
a20f773b041aeb2b54dd57ec16135c705d11e56ec2d318fd59c06d3611ec5499
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("Q+cgR5NNx4ZeFUcYvcH1L4dlYFOIx1SUswBzg87E/pybbdJ4pkHdGE+ZdMjBquqvFIdf6Wt3Z7nVBcqil6JtT2M0Jmkdusr51e1QZ9394AtK1kVsWuKVBCbnsd7qi5ROrNqYzZwrn19b4Her0KaMaiulu7N3cZ7886oFwbMt1sVkfzMaLbuzLlGM6r84TrhGFW23A6MPJlLWu2wT7N3yxfkq54gZWdxTSK3laptyZDMP+3hq5GfBlmMRpRCKOv6ZVy7z6+WUOMNcyxUA/IwivVXEHZ1+UkoZB55WkDVgZrIWOMpeKAVs9Ew3+nExuQNuQfISBihGZ970WwmB3TcQ1uERgA=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("a20f773b041aeb2b54dd57ec16135c705d11e56ec2d318fd59c06d3611ec5499".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): a20f773b041aeb2b54dd57ec16135c705d11e56ec2d318fd59c06d3611ec5499
  • IV / nonce (hex): 43e72047934dc7865e154718
  • Ciphertext (hex): bdc1f52f8765605388c75494b3007383cec4fe9c9b6dd278a641dd184f9974c8c1aaeaaf14875fe96b7767b9d505caa297a26d4f633426691dbacaf9d5ed5067ddfde00b4ad6456c5ae2950426e7b1deea8b944eacda98cd9c2b9f5f5be077abd0a68c6a2ba5bbb377719efcf3aa05c1b32dd6c5647f331a2dbbb32e518ceabf384eb846156db703a30f2652d6bb6c13ecddf2c5f92ae7881959dc5348ade56a9b7264330ffb786ae467c1966311a5108a3afe99572ef3ebe59438c35ccb1500fc8c22bd55c41d9d7e524a19079e5690356066b21638ca5e28056cf44c37fa7131b9036e41f212
  • Auth tag (hex): 06284667def45b0981dd3710d6e11180

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