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

Kahibah Res. vs Adamstown Rosebuds Res.

Northern NSW Reserve League · Australia · 24 Jun 2026, 08:00 UTC

Final score
3 : 0
Result
Lost
Pick
Adamstown Rosebuds Res.
Market
1x2
Model prob.
51.5%
Best price
2.32
Min odds
2.10
Stake factor
2.60

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)
lkhociJyS0/uJ1hn++Eut58d9S3gxpg3XfGNO6JTMPYDIWVpLPeaxDBRHA43RcpwmhGsUUuE+DllNf5tACbAPJMJEpBGyM8BoHXLBUTXSqwkSdSvJOYBJFheQf1eH05LD9sobpZcPo+YWrz2mZLfYGtkO7SZvlb6LWvjmyDOkN4RqVSUwT+5B7W4t8OSblFGLFW4LMr7GuM9HuBUd7nP08dJwzPoGDQUqjyozx9LOKzTMIAfiWjV+zSTMwiycxP5OCRW9/9c7klcijRFQmTJKHTLQm+Y5EVEQSk41cvsp0gXY5u+7wVigkkqq8foBSUdafDodQaMETbxBDqC5Bh/4ocIhnYDI1Zzt/szjTYFvfwPv5cs0x8=
key fingerprint sha256: ad67ba8cb4c37390573ce1fdc3dd94f266c1628b8ee772bb3d538892f4d217fc
Decrypt it & read the pick
Decryption key (released after the match)
5dd43536b531d548fe65c51fdf772cd374d78a15adbbda2da8287a2b93c898c8
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("lkhociJyS0/uJ1hn++Eut58d9S3gxpg3XfGNO6JTMPYDIWVpLPeaxDBRHA43RcpwmhGsUUuE+DllNf5tACbAPJMJEpBGyM8BoHXLBUTXSqwkSdSvJOYBJFheQf1eH05LD9sobpZcPo+YWrz2mZLfYGtkO7SZvlb6LWvjmyDOkN4RqVSUwT+5B7W4t8OSblFGLFW4LMr7GuM9HuBUd7nP08dJwzPoGDQUqjyozx9LOKzTMIAfiWjV+zSTMwiycxP5OCRW9/9c7klcijRFQmTJKHTLQm+Y5EVEQSk41cvsp0gXY5u+7wVigkkqq8foBSUdafDodQaMETbxBDqC5Bh/4ocIhnYDI1Zzt/szjTYFvfwPv5cs0x8="), c => c.charCodeAt(0));
const key  = Uint8Array.from("5dd43536b531d548fe65c51fdf772cd374d78a15adbbda2da8287a2b93c898c8".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): 5dd43536b531d548fe65c51fdf772cd374d78a15adbbda2da8287a2b93c898c8
  • IV / nonce (hex): 9648687222724b4fee275867
  • Ciphertext (hex): fbe12eb79f1df52de0c698375df18d3ba25330f6032165692cf79ac430511c0e3745ca709a11ac514b84f8396535fe6d0026c03c9309129046c8cf01a075cb0544d74aac2449d4af24e60124585e41fd5e1f4e4b0fdb286e965c3e8f985abcf69992df606b643bb499be56fa2d6be39b20ce90de11a95494c13fb907b5b8b7c3926e51462c55b82ccafb1ae33d1ee05477b9cfd3c749c333e8183414aa3ca8cf1f4b38acd330801f8968d5fb34933308b27313f9382456f7ff5cee495c8a34454264c92874cb426f98e44544412938d5cbeca74817639bbeef056282492aabc7e805251d69f0e875068c1136f1043a82e4187fe2870886760323
  • Auth tag (hex): 5673b7fb338d3605bdfc0fbf972cd31f

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