Wil vs Grasshopper
Club Friendlies 3 · World · 05 Jul 2026, 11:00 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.
X69AeR4bEjgIC40SXlFennxU70LdGDq/QWgygcgfg9QK+POuGT30uii1mplLa+HiWcDz6o1RHNClS35n5v4eoY2t6jPSlQ+VYlM6I31JK+1YklYlcthlF0j19N+zxksgf96rAr8+ASOXLlkXTjnT4CrasV4peIddxwO2EiXSKqPtUcYpAGv7+qApG1lQDlP42+fWpJgfMU0k5pxIuHs/0W7vxqjlknM56UrRee3oKuzjKXgYzWq/0IrgqLzGFg1TFkdOdBjgqDSJSzYve+A66y1F71FwSCqITtXxWaadacndydqv20ZePD1mVAAmJSlnzckbsz5iTmhQ1JMo5V8NMRdD
e6c7b81a82cda6c919782de1f840f0e445fd01c0caec3995e23f2a6eaa64abb9Decrypt 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("X69AeR4bEjgIC40SXlFennxU70LdGDq/QWgygcgfg9QK+POuGT30uii1mplLa+HiWcDz6o1RHNClS35n5v4eoY2t6jPSlQ+VYlM6I31JK+1YklYlcthlF0j19N+zxksgf96rAr8+ASOXLlkXTjnT4CrasV4peIddxwO2EiXSKqPtUcYpAGv7+qApG1lQDlP42+fWpJgfMU0k5pxIuHs/0W7vxqjlknM56UrRee3oKuzjKXgYzWq/0IrgqLzGFg1TFkdOdBjgqDSJSzYve+A66y1F71FwSCqITtXxWaadacndydqv20ZePD1mVAAmJSlnzckbsz5iTmhQ1JMo5V8NMRdD"), c => c.charCodeAt(0));
const key = Uint8Array.from("e6c7b81a82cda6c919782de1f840f0e445fd01c0caec3995e23f2a6eaa64abb9".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):
e6c7b81a82cda6c919782de1f840f0e445fd01c0caec3995e23f2a6eaa64abb9 - IV / nonce (hex):
5faf40791e1b1238080b8d12 - Ciphertext (hex):
5e515e9e7c54ef42dd183abf41683281c81f83d40af8f3ae193df4ba28b59a994b6be1e259c0f3ea8d511cd0a54b7e67e6fe1ea18dadea33d2950f9562533a237d492bed5892562572d8651748f5f4dfb3c64b207fdeab02bf3e0123972e59174e39d3e02adab15e2978875dc703b61225d22aa3ed51c629006bfbfaa0291b59500e53f8dbe7d6a4981f314d24e69c48b87b3fd16eefc6a8e5927339e94ad179ede82aece3297818cd6abfd08ae0a8bcc6160d5316474e7418e0a834894b362f7be03aeb2d45ef5170482a884ed5f159a69d69c9ddc9daafdb465e3c3d66540026252967cdc9 - Auth tag (hex):
1bb33e624e6850d49328e55f0d311743
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 #956645 · 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.