WT Birkalla W vs Adelaide University W
South Australia NPL Women · Australia · 31 Jul 2026, 10: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.
l1MY8NBhgTwfPI4/uvGJdCqbhtx9cJqWdKwZfejshbeWV9L1GPdHEGynjC5yD/HC67qr9+kr6wGjtMBlhDKT5Z3wDgztWC/InfhZUj+g3Jp8timGOancJ0c3EJ4Fjc9FbrsYJZn+xvNt7eMe6KvtUkcV94miSR3JHGYmNE4EkgYqHKxQufAbGNGrY9+7ghVQFu7Z1Mgq1qyS2OT9k3aT+86Stc8D/72/wf4teWSQkjHXPzkVUo5zgY5UsCp8i7eWVb7l5W5xf2aLpJWf7thoIQ/1FTNI05xNvbYD+CSQWPKvgYqLIIoYkNSEWsqxIq2OKJcHjSjNgqMC2BJX4Q2GM5ixVJmVR6MY3HR9bXjC
b3435469fb24dab2bb82ff62f38017fd5d392d0f954c5fd219f45329746eb58cDecrypt 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("l1MY8NBhgTwfPI4/uvGJdCqbhtx9cJqWdKwZfejshbeWV9L1GPdHEGynjC5yD/HC67qr9+kr6wGjtMBlhDKT5Z3wDgztWC/InfhZUj+g3Jp8timGOancJ0c3EJ4Fjc9FbrsYJZn+xvNt7eMe6KvtUkcV94miSR3JHGYmNE4EkgYqHKxQufAbGNGrY9+7ghVQFu7Z1Mgq1qyS2OT9k3aT+86Stc8D/72/wf4teWSQkjHXPzkVUo5zgY5UsCp8i7eWVb7l5W5xf2aLpJWf7thoIQ/1FTNI05xNvbYD+CSQWPKvgYqLIIoYkNSEWsqxIq2OKJcHjSjNgqMC2BJX4Q2GM5ixVJmVR6MY3HR9bXjC"), c => c.charCodeAt(0));
const key = Uint8Array.from("b3435469fb24dab2bb82ff62f38017fd5d392d0f954c5fd219f45329746eb58c".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):
b3435469fb24dab2bb82ff62f38017fd5d392d0f954c5fd219f45329746eb58c - IV / nonce (hex):
975318f0d061813c1f3c8e3f - Ciphertext (hex):
baf189742a9b86dc7d709a9674ac197de8ec85b79657d2f518f747106ca78c2e720ff1c2ebbaabf7e92beb01a3b4c065843293e59df00e0ced582fc89df859523fa0dc9a7cb6298639a9dc274737109e058dcf456ebb182599fec6f36dede31ee8abed524715f789a2491dc91c6626344e0492062a1cac50b9f01b18d1ab63dfbb82155016eed9d4c82ad6ac92d8e4fd937693fbce92b5cf03ffbdbfc1fe2d7964909231d73f3915528e73818e54b02a7c8bb79655bee5e56e717f668ba4959feed868210ff5153348d39c4dbdb603f8249058f2af818a8b208a1890d4845acab122ad8e2897078d28cd82a302d81257e10d - Auth tag (hex):
863398b154999547a318dc747d6d78c2
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 #960327 · 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.