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

Grange Thistle vs Mitchelton

Queensland Premier League 2 · Australia · 04 Jul 2026, 07:00 UTC

Final score
1 : 2
Result
Won
Pick
Mitchelton
Market
1x2
Model prob.
23.3%
Best price
6.49
Min odds
5.17
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)
cklGpxUIO2IjXkOjrtOfhPMOs95fEXcpX10zR4+9VYN2ACJqasy115nd7al874YtptgMie6CVfa+O8t/4uQpC6VX2UrvbD4izNpt2XzaFJCQ3Tbi62d/cKDCeHTf8eG9cdjQlOuOIFUBAnTRCtPzaEeqh6PdcxBo46HJLAM3N0e6K4Ln5pGANp0K3B5bHI6+NbfPBcMVPSxUDGZfVSXtt4J4peZl1i46JoJ3yQlhbCgwY0cBfCakxlE3qX0+R1o90T1YqdY2d6NlCpjuFakMUQ7ZFYcrA0mJvzHlkwmHuNXksGq5cuBoFQM5Djuue168QQ2wNCu3pNUwq0oFpntgItWwS9DM4bSB
key fingerprint sha256: 622cf774ba0fa99ee5efc92c7d444f6a6babeecc9e7558c1d31fb27cc7f3b0bd
Decrypt it & read the pick
Decryption key (released after the match)
9ef76d7112f21626727f24b2b4c5faab86c55b37d587d120a939f83d33c2315e
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("cklGpxUIO2IjXkOjrtOfhPMOs95fEXcpX10zR4+9VYN2ACJqasy115nd7al874YtptgMie6CVfa+O8t/4uQpC6VX2UrvbD4izNpt2XzaFJCQ3Tbi62d/cKDCeHTf8eG9cdjQlOuOIFUBAnTRCtPzaEeqh6PdcxBo46HJLAM3N0e6K4Ln5pGANp0K3B5bHI6+NbfPBcMVPSxUDGZfVSXtt4J4peZl1i46JoJ3yQlhbCgwY0cBfCakxlE3qX0+R1o90T1YqdY2d6NlCpjuFakMUQ7ZFYcrA0mJvzHlkwmHuNXksGq5cuBoFQM5Djuue168QQ2wNCu3pNUwq0oFpntgItWwS9DM4bSB"), c => c.charCodeAt(0));
const key  = Uint8Array.from("9ef76d7112f21626727f24b2b4c5faab86c55b37d587d120a939f83d33c2315e".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): 9ef76d7112f21626727f24b2b4c5faab86c55b37d587d120a939f83d33c2315e
  • IV / nonce (hex): 724946a715083b62235e43a3
  • Ciphertext (hex): aed39f84f30eb3de5f1177295f5d33478fbd55837600226a6accb5d799ddeda97cef862da6d80c89ee8255f6be3bcb7fe2e4290ba557d94aef6c3e22ccda6dd97cda149090dd36e2eb677f70a0c27874dff1e1bd71d8d094eb8e2055010274d10ad3f36847aa87a3dd731068e3a1c92c03373747ba2b82e7e69180369d0adc1e5b1c8ebe35b7cf05c3153d2c540c665f5525edb78278a5e665d62e3a268277c909616c28306347017c26a4c65137a97d3e475a3dd13d58a9d63677a3650a98ee15a90c510ed915872b034989bf31e5930987b8d5e4b06ab972e0681503390e3bae7b5ebc410db0342bb7a4d5
  • Auth tag (hex): 30ab4a05a67b6022d5b04bd0cce1b481

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