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

Brisbane Knights vs SWQ Thunder

Queensland Premier League 2 · Australia · 04 Jul 2026, 08:15 UTC

Final score
0 : 3
Result
Lost
Pick
Brisbane Knights
Market
1x2
Model prob.
21.1%
Best price
7.83
Min odds
5.85
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)
iIcaH/N5hB43WaTecVfAG6DHwV/f/Un7ASLMnL0AA2NHheLtIfAWnscbReL/iWvjOf1AAF1FGGDdjE999f+XJHJCSLSDQtefNAWYcVBRZckPKJZiB+FrZBDKVkck2Frn4JRTYSzucdLq/q2v2o1mCMEXzNFlLCXLBQiew2X7a5cVqPkaMN8w8H8Bafp9OZOPsTUxT0tg7nSDJ7bqGpAhXlZokpDP2pLysWX/t4oJRLcTcvXmojmM42ZTqsA884qMhyNJCScnYGfpGANcO4gm1dHdw/R4/ElxqGewpeIf8MpOrTXORBOtPbT1Ro2ViLyYs1IKZDMSeBiIsh+B2EielW5g4Auric4YXJeHhTg4
key fingerprint sha256: 0492448aa3d2b5fd2ae9edf6508e19af7be73acf9803293eab73402db636ed63
Decrypt it & read the pick
Decryption key (released after the match)
f1a18111c6fa6c1c9b6efa3760530c5816b92f1f18252f9e0d7e1ee7c6fc898c
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("iIcaH/N5hB43WaTecVfAG6DHwV/f/Un7ASLMnL0AA2NHheLtIfAWnscbReL/iWvjOf1AAF1FGGDdjE999f+XJHJCSLSDQtefNAWYcVBRZckPKJZiB+FrZBDKVkck2Frn4JRTYSzucdLq/q2v2o1mCMEXzNFlLCXLBQiew2X7a5cVqPkaMN8w8H8Bafp9OZOPsTUxT0tg7nSDJ7bqGpAhXlZokpDP2pLysWX/t4oJRLcTcvXmojmM42ZTqsA884qMhyNJCScnYGfpGANcO4gm1dHdw/R4/ElxqGewpeIf8MpOrTXORBOtPbT1Ro2ViLyYs1IKZDMSeBiIsh+B2EielW5g4Auric4YXJeHhTg4"), c => c.charCodeAt(0));
const key  = Uint8Array.from("f1a18111c6fa6c1c9b6efa3760530c5816b92f1f18252f9e0d7e1ee7c6fc898c".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): f1a18111c6fa6c1c9b6efa3760530c5816b92f1f18252f9e0d7e1ee7c6fc898c
  • IV / nonce (hex): 88871a1ff379841e3759a4de
  • Ciphertext (hex): 7157c01ba0c7c15fdffd49fb0122cc9cbd0003634785e2ed21f0169ec71b45e2ff896be339fd40005d451860dd8c4f7df5ff9724724248b48342d79f34059871505165c90f28966207e16b6410ca564724d85ae7e09453612cee71d2eafeadafda8d6608c117ccd1652c25cb05089ec365fb6b9715a8f91a30df30f07f0169fa7d39938fb135314f4b60ee748327b6ea1a90215e56689290cfda92f2b165ffb78a0944b71372f5e6a2398ce36653aac03cf38a8c8723490927276067e918035c3b8826d5d1ddc3f478fc4971a867b0a5e21ff0ca4ead35ce4413ad3db4f5468d9588bc98b3520a643312781888b21f81d848
  • Auth tag (hex): 9e956e60e00bab89ce185c9787853838

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