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

Wolves U23 vs Rochedale Rovers U23

Queensland NPL Youth League · Australia · 04 Jul 2026, 06:00 UTC

Final score
Result
Void
Pick
Wolves U23
Market
1x2
Model prob.
23.4%
Best price
5.87
Min odds
5.16
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)
x41rBkWZUcloY1eZoNf/2w8AK3uwSKS3F0Ao6cSNNw7GajZDdkQ0Go+Y2wn//z1BZ7TjbaBPyFk0N+4m7A7gn9KdPRz3npCiU16wJXMBj59bqjLxSfB7SS9JV5X6j2Jf4BBXZNkOPb+fhY5ZuHlcJeRhOwWbaPYgJ0ZdcbnB0PtM0+gTLJAzfhwR79/NOaYlgrI/4kg4Q+ChqKCXK58y6QIF5bJAV5/SditsBQty6emkV/sEjO4sZ611fqBDNpbDo9fJ4RL4WnInry78efmYfTaL9f2I3YAW3tJ+PkFH6rV+SrIBZfCny0k53NCFYJNeXNJvcA0oAFREGB+pBE3M8vtgKqrMrN+T
key fingerprint sha256: c3c27678e92344c7859e3432d84c8d0d54c54357c05471de1d66df9387bcf108
Decrypt it & read the pick
Decryption key (released after the match)
2d6ba945b30da32d835ba8f0ec2833dc4fd37c6bc1617d9b9dc7a30837e2b516
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("x41rBkWZUcloY1eZoNf/2w8AK3uwSKS3F0Ao6cSNNw7GajZDdkQ0Go+Y2wn//z1BZ7TjbaBPyFk0N+4m7A7gn9KdPRz3npCiU16wJXMBj59bqjLxSfB7SS9JV5X6j2Jf4BBXZNkOPb+fhY5ZuHlcJeRhOwWbaPYgJ0ZdcbnB0PtM0+gTLJAzfhwR79/NOaYlgrI/4kg4Q+ChqKCXK58y6QIF5bJAV5/SditsBQty6emkV/sEjO4sZ611fqBDNpbDo9fJ4RL4WnInry78efmYfTaL9f2I3YAW3tJ+PkFH6rV+SrIBZfCny0k53NCFYJNeXNJvcA0oAFREGB+pBE3M8vtgKqrMrN+T"), c => c.charCodeAt(0));
const key  = Uint8Array.from("2d6ba945b30da32d835ba8f0ec2833dc4fd37c6bc1617d9b9dc7a30837e2b516".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): 2d6ba945b30da32d835ba8f0ec2833dc4fd37c6bc1617d9b9dc7a30837e2b516
  • IV / nonce (hex): c78d6b06459951c968635799
  • Ciphertext (hex): a0d7ffdb0f002b7bb048a4b7174028e9c48d370ec66a36437644341a8f98db09ffff3d4167b4e36da04fc8593437ee26ec0ee09fd29d3d1cf79e90a2535eb02573018f9f5baa32f149f07b492f495795fa8f625fe0105764d90e3dbf9f858e59b8795c25e4613b059b68f62027465d71b9c1d0fb4cd3e8132c90337e1c11efdfcd39a62582b23fe2483843e0a1a8a0972b9f32e90205e5b240579fd2762b6c050b72e9e9a457fb048cee2c67ad757ea0433696c3a3d7c9e112f85a7227af2efc79f9987d368bf5fd88dd8016ded27e3e4147eab57e4ab20165f0a7cb4939dcd08560935e5cd26f700d280054
  • Auth tag (hex): 44181fa9044dccf2fb602aaaccacdf93

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