Green Gully vs Dandenong Thunder
Npl Victoria · Australia · 17 Jul 2026, 09:30 UTC
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.
ossa4CvNKiziz+U7tREGNAD2b6I7i3299C2cy+wpjPQItq4JtSde2FomgGZzR3ZGNYDw+Xuvt7RALPJix8AneSVUcome6rbgqQ5tEjzFtwBXTRC675VEmlOX+hJmolgBOQFDYIXx5zUIBVtcnATxE2Pd4LX/vGbC6yCOSC23LJAhXkdxm59UV6IHau5KQqBSIHgs8OUGUQZZ0YhsMKXPlUvyrQ+dmiU3QFPMx6YkIOzt2Vf+H61o4oRSj9HOn7ThOj2zFBU/U7f/wtrtbJx/cfqjRt8H1wOx3PeOV8ECJ0muEua2vVu9ARdymXF3+IjXcWJnokI6/wNwoZbGgFhYlRUgyAsQKMqDOx27aGeDsQ==
c769358fa7576f60edf5e6e6d7de9d2f217baa0616aa12e0e126fec3a5fb78f5Decrypt 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 F12 → Console),
paste this, press Enter — it decrypts the exact pick shown above:
const blob = Uint8Array.from(atob("ossa4CvNKiziz+U7tREGNAD2b6I7i3299C2cy+wpjPQItq4JtSde2FomgGZzR3ZGNYDw+Xuvt7RALPJix8AneSVUcome6rbgqQ5tEjzFtwBXTRC675VEmlOX+hJmolgBOQFDYIXx5zUIBVtcnATxE2Pd4LX/vGbC6yCOSC23LJAhXkdxm59UV6IHau5KQqBSIHgs8OUGUQZZ0YhsMKXPlUvyrQ+dmiU3QFPMx6YkIOzt2Vf+H61o4oRSj9HOn7ThOj2zFBU/U7f/wtrtbJx/cfqjRt8H1wOx3PeOV8ECJ0muEua2vVu9ARdymXF3+IjXcWJnokI6/wNwoZbGgFhYlRUgyAsQKMqDOx27aGeDsQ=="), c => c.charCodeAt(0));
const key = Uint8Array.from("c769358fa7576f60edf5e6e6d7de9d2f217baa0616aa12e0e126fec3a5fb78f5".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):
c769358fa7576f60edf5e6e6d7de9d2f217baa0616aa12e0e126fec3a5fb78f5 - IV / nonce (hex):
a2cb1ae02bcd2a2ce2cfe53b - Ciphertext (hex):
b511063400f66fa23b8b7dbdf42d9ccbec298cf408b6ae09b5275ed85a268066734776463580f0f97bafb7b4402cf262c7c02779255472899eeab6e0a90e6d123cc5b700574d10baef95449a5397fa1266a258013901436085f1e73508055b5c9c04f11363dde0b5ffbc66c2eb208e482db72c90215e47719b9f5457a2076aee4a42a05220782cf0e506510659d1886c30a5cf954bf2ad0f9d9a25374053ccc7a62420ecedd957fe1fad68e284528fd1ce9fb4e13a3db314153f53b7ffc2daed6c9c7f71faa346df07d703b1dcf78e57c1022749ae12e6b6bd5bbd011772997177f888d7716267a2423aff0370a196c6805858 - Auth tag (hex):
951520c80b1028ca833b1dbb686783b1
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:
- Download the sealed batch file (.jsonl) and its proof (.ots) from GitHub.
- Drop both into opentimestamps.org (or run
ots verify *.ots). It replays the proof and confirms the Bitcoin block and its UTC time. - See it independently: block #958366 · 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.