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

Waterside Karori vs Petone

National League · New Zealand · 11 Jul 2026, 02:30 UTC

Final score
1 : 0
Result
Lost
Pick
Petone
Market
1x2
Model prob.
59.3%
Best price
1.90
Min odds
1.81
Stake factor
2.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)
U6r4fC9l13WiSndHrdYzy5DDpnEWeyFAA4/UYHH6wKZowyfBt7zdQOXk7okjhno8uIoJIwnjJTDYuQr3jA6WG4l8lXmGGFMlogMy1fjRj/My8n96V23d8XH/qx676Vm7m+vWR3pbC4X09543HK6Mp5+8A1mdxMCc1gLQaZuvx4SGZxWUZXQFEICGhWeubQH6rEoX2hwm3S9FZyW0XEJcZZTEhV11314qecVP/+A8MasYQVrONaqz4ggCdjSRlUt6PoSHC5oUHYwgDANOOMlvgdIA0upl7NUPNXzMufLkbzuRciaQsiXghyWWj8nBZIpGIuWN1dgjx8G2KpR2yWinZPJjK7s=
key fingerprint sha256: fe418421c387a578f3832438c1b2da6daf259ae32366f85d26e28b0a7f52cc51
Decrypt it & read the pick
Decryption key (released after the match)
da02f86d26b90ead137038c36391e6e13e9daf781f6ea4c0541a28dedf53f981
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("U6r4fC9l13WiSndHrdYzy5DDpnEWeyFAA4/UYHH6wKZowyfBt7zdQOXk7okjhno8uIoJIwnjJTDYuQr3jA6WG4l8lXmGGFMlogMy1fjRj/My8n96V23d8XH/qx676Vm7m+vWR3pbC4X09543HK6Mp5+8A1mdxMCc1gLQaZuvx4SGZxWUZXQFEICGhWeubQH6rEoX2hwm3S9FZyW0XEJcZZTEhV11314qecVP/+A8MasYQVrONaqz4ggCdjSRlUt6PoSHC5oUHYwgDANOOMlvgdIA0upl7NUPNXzMufLkbzuRciaQsiXghyWWj8nBZIpGIuWN1dgjx8G2KpR2yWinZPJjK7s="), c => c.charCodeAt(0));
const key  = Uint8Array.from("da02f86d26b90ead137038c36391e6e13e9daf781f6ea4c0541a28dedf53f981".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): da02f86d26b90ead137038c36391e6e13e9daf781f6ea4c0541a28dedf53f981
  • IV / nonce (hex): 53aaf87c2f65d775a24a7747
  • Ciphertext (hex): add633cb90c3a671167b2140038fd46071fac0a668c327c1b7bcdd40e5e4ee8923867a3cb88a092309e32530d8b90af78c0e961b897c957986185325a20332d5f8d18ff332f27f7a576dddf171ffab1ebbe959bb9bebd6477a5b0b85f4f79e371cae8ca79fbc03599dc4c09cd602d0699bafc784866715946574051080868567ae6d01faac4a17da1c26dd2f456725b45c425c6594c4855d75df5e2a79c54fffe03c31ab18415ace35aab3e20802763491954b7a3e84870b9a141d8c200c034e38c96f81d200d2ea65ecd50f357cccb9f2e46f3b91722690b225e08725968fc9c1648a4622e58dd5
  • Auth tag (hex): d823c7c1b62a9476c968a764f2632bbb

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