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

Western Springs vs Birkenhead United

National League · New Zealand · 01 Aug 2026, 05:30 UTC

Final score
1 : 2
Result
Lost
Pick
Western Springs
Market
1x2
Model prob.
15.6%
Best price
12.67
Min odds
8.65
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)
wJ7TtbDwePkVes8nZ5Iq/A5VI1VpsYtdWvkuFGDg84WWIwUlh719VNhIhEcskopjYoQigiB4qMKHhEjJIdcwUdd8wMRWWdgAXfwphcF//Husy1xit8KeajykWPjpEte9PsECL/YRrO43FxGc2uRtV/jYhdijKD0E5+2LmsT2a3l+guUtqbuKY5Nvam4g7WTkc1ekhpqy6lZYDpR0lvZDW2pgqOB0XO2PTzMivCqhHPudg/vksKQ0ZmtfmGQwThcHReqF8mFReIbUM9mh5MQQT9xpE3phO0z7Q72dFVzpusAPb8KJmCwQuXh9Q9ytX+Xn0ITzrGfN+5DSyvHL4l3gysJFD9Ia/eww6aUNOZ1Q
key fingerprint sha256: 43c2a6dcf9c5d8829e3fa47b5189bd887e421a3e602f445c87e19cd9d2cde0e8
Decrypt it & read the pick
Decryption key (released after the match)
cbb0239dc8bb5b84858583d8fbd2cb2c2d830a6c1c98f46f9fb3e0f82c64c200
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("wJ7TtbDwePkVes8nZ5Iq/A5VI1VpsYtdWvkuFGDg84WWIwUlh719VNhIhEcskopjYoQigiB4qMKHhEjJIdcwUdd8wMRWWdgAXfwphcF//Husy1xit8KeajykWPjpEte9PsECL/YRrO43FxGc2uRtV/jYhdijKD0E5+2LmsT2a3l+guUtqbuKY5Nvam4g7WTkc1ekhpqy6lZYDpR0lvZDW2pgqOB0XO2PTzMivCqhHPudg/vksKQ0ZmtfmGQwThcHReqF8mFReIbUM9mh5MQQT9xpE3phO0z7Q72dFVzpusAPb8KJmCwQuXh9Q9ytX+Xn0ITzrGfN+5DSyvHL4l3gysJFD9Ia/eww6aUNOZ1Q"), c => c.charCodeAt(0));
const key  = Uint8Array.from("cbb0239dc8bb5b84858583d8fbd2cb2c2d830a6c1c98f46f9fb3e0f82c64c200".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): cbb0239dc8bb5b84858583d8fbd2cb2c2d830a6c1c98f46f9fb3e0f82c64c200
  • IV / nonce (hex): c09ed3b5b0f078f9157acf27
  • Ciphertext (hex): 67922afc0e55235569b18b5d5af92e1460e0f3859623052587bd7d54d84884472c928a63628422822078a8c2878448c921d73051d77cc0c45659d8005dfc2985c17ffc7baccb5c62b7c29e6a3ca458f8e912d7bd3ec1022ff611acee3717119cdae46d57f8d885d8a3283d04e7ed8b9ac4f66b797e82e52da9bb8a63936f6a6e20ed64e47357a4869ab2ea56580e947496f6435b6a60a8e0745ced8f4f3322bc2aa11cfb9d83fbe4b0a434666b5f9864304e170745ea85f261517886d433d9a1e4c4104fdc69137a613b4cfb43bd9d155ce9bac00f6fc289982c10b9787d43dcad5fe5e7d084f3ac67cdfb90d2caf1cbe25d
  • Auth tag (hex): e0cac2450fd21afdec30e9a50d399d50

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