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

Gyeongju W vs Changnyeong W

WK-League · South Korea · 24 Jul 2026, 10:00 UTC

Final score
6 : 1
Result
Won
Pick
Gyeongju W
Market
1x2
Model prob.
55.9%
Best price
2.14
Min odds
1.93
Stake factor
2.60

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)
goISfzeiNoLYPXXOROygvs6X5lFPEul/rwz5hNQWc1k1B8fDIZviamnHkcUzau7474heVqP0m+19zbkhBn9jC8HwRGeFhk96qKxR43owCnUZknMRdEHCuh/8gRcCSwCrDUUEPoBlJFCB8GQ+oinyAHH5y2h7i/lCgwhQvSzaCarg4ti5AubfspsaVlUoDhmm6Rr6NrFSkMMbHdpQM2ZTExLM2g1NszDCO84r4cqK2NyiYhGXr2QbeLN76m70foizw5tZpD0n4QfVnntnCj2StO6vXimLp5Sdxv3KP4eYZ45wkmSNQdRgR1f+SzcxeHo7/9Qj5EqBEY/fHNgaNCEwpgXdUs6nh1wdJPg=
key fingerprint sha256: 4c3eb73b65f87d73b841c88ff59e081bd0acdc7914ae9320fedf654de32f7f39
Decrypt it & read the pick
Decryption key (released after the match)
f5764c9e40cc862be98b4ac7e089acd029ac84997a74879676a8eae67ecad105
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("goISfzeiNoLYPXXOROygvs6X5lFPEul/rwz5hNQWc1k1B8fDIZviamnHkcUzau7474heVqP0m+19zbkhBn9jC8HwRGeFhk96qKxR43owCnUZknMRdEHCuh/8gRcCSwCrDUUEPoBlJFCB8GQ+oinyAHH5y2h7i/lCgwhQvSzaCarg4ti5AubfspsaVlUoDhmm6Rr6NrFSkMMbHdpQM2ZTExLM2g1NszDCO84r4cqK2NyiYhGXr2QbeLN76m70foizw5tZpD0n4QfVnntnCj2StO6vXimLp5Sdxv3KP4eYZ45wkmSNQdRgR1f+SzcxeHo7/9Qj5EqBEY/fHNgaNCEwpgXdUs6nh1wdJPg="), c => c.charCodeAt(0));
const key  = Uint8Array.from("f5764c9e40cc862be98b4ac7e089acd029ac84997a74879676a8eae67ecad105".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): f5764c9e40cc862be98b4ac7e089acd029ac84997a74879676a8eae67ecad105
  • IV / nonce (hex): 8282127f37a23682d83d75ce
  • Ciphertext (hex): 44eca0bece97e6514f12e97faf0cf984d41673593507c7c3219be26a69c791c5336aeef8ef885e56a3f49bed7dcdb921067f630bc1f0446785864f7aa8ac51e37a300a75199273117441c2ba1ffc8117024b00ab0d45043e8065245081f0643ea229f20071f9cb687b8bf942830850bd2cda09aae0e2d8b902e6dfb29b1a5655280e19a6e91afa36b15290c31b1dda503366531312ccda0d4db330c23bce2be1ca8ad8dca2621197af641b78b37bea6ef47e88b3c39b59a43d27e107d59e7b670a3d92b4eeaf5e298ba7949dc6fdca3f8798678e7092648d41d4604757fe4b3731787a3bffd423e44a81118fdf1c
  • Auth tag (hex): d81a342130a605dd52cea7875c1d24f8

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