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

Belconnen United U23 vs O'Connor Knights U23

Capital Territory NPL Youth League · Australia · 25 Jul 2026, 04:15 UTC

Final score
2 : 1
Result
Lost
Pick
O'Connor Knights U23
Market
1x2
Model prob.
24.7%
Best price
5.64
Min odds
4.82
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)
ytsRYCt+NcF0CQxHFuAhungxDQfxY+WJhpvnOfg60nWb8QAzXiFRrJ0z1IXstK8s7YOov/WPLaCiRd7jpk9Vzh9/uPejjO7bR1c5JYTKzQdthe8jCVi2m1K3VY3Oj+E92qQeud+GswZYIRPWxsb+dnnttgQ6QYJMX1VX/X8lXgnIsHCk3QvLDW9WCpIfPzfVnc45GGjIePiYIrkIKsrdrCyC0pRbXJHShPkNJUBvBx/cnudEYXYvl4b6IjpStGjj4Kb/XcSzEBaaz6TNlElV26pO8vNXzSnvuQ+ZyO22vpnTwPxsRDo4orlBoeMm3DpFv576fKC4kKvYTcLRnfmSc9m3nhXW8g9KKcmNpLfRZsEe+eg=
key fingerprint sha256: 4b26151082b04883fbaea6f259150c648dcb825c01131c5fee0725f36c0d1df2
Decrypt it & read the pick
Decryption key (released after the match)
7c62677a133db4f34c8e7fb497a047b970826d747435ca5f359e218108ab6001
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("ytsRYCt+NcF0CQxHFuAhungxDQfxY+WJhpvnOfg60nWb8QAzXiFRrJ0z1IXstK8s7YOov/WPLaCiRd7jpk9Vzh9/uPejjO7bR1c5JYTKzQdthe8jCVi2m1K3VY3Oj+E92qQeud+GswZYIRPWxsb+dnnttgQ6QYJMX1VX/X8lXgnIsHCk3QvLDW9WCpIfPzfVnc45GGjIePiYIrkIKsrdrCyC0pRbXJHShPkNJUBvBx/cnudEYXYvl4b6IjpStGjj4Kb/XcSzEBaaz6TNlElV26pO8vNXzSnvuQ+ZyO22vpnTwPxsRDo4orlBoeMm3DpFv576fKC4kKvYTcLRnfmSc9m3nhXW8g9KKcmNpLfRZsEe+eg="), c => c.charCodeAt(0));
const key  = Uint8Array.from("7c62677a133db4f34c8e7fb497a047b970826d747435ca5f359e218108ab6001".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): 7c62677a133db4f34c8e7fb497a047b970826d747435ca5f359e218108ab6001
  • IV / nonce (hex): cadb11602b7e35c174090c47
  • Ciphertext (hex): 16e021ba78310d07f163e589869be739f83ad2759bf100335e2151ac9d33d485ecb4af2ced83a8bff58f2da0a245dee3a64f55ce1f7fb8f7a38ceedb4757392584cacd076d85ef230958b69b52b7558dce8fe13ddaa41eb9df86b306582113d6c6c6fe7679edb6043a41824c5f5557fd7f255e09c8b070a4dd0bcb0d6f560a921f3f37d59dce391868c878f89822b9082acaddac2c82d2945b5c91d284f90d25406f071fdc9ee74461762f9786fa223a52b468e3e0a6ff5dc4b310169acfa4cd944955dbaa4ef2f357cd29efb90f99c8edb6be99d3c0fc6c443a38a2b941a1e326dc3a45bf9efa7ca0b890abd84dc2d19df99273d9b79e
  • Auth tag (hex): 15d6f20f4a29c98da4b7d166c11ef9e8

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