Nigeria W vs Zambia W
Africa Women Cup of Nations · Africa · 01 Aug 2026, 20: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.
va5I+kyH1KRQb82TT+UHvBySJbKxDyABaOIfgNFPvs4Bqiz//yj167bfeuiGWGC0mvTxYePnOn3KSN4nwTC3WQoLOK6NDiOOwi2byWBpDs/E+69xhhebvoe9+v1RBuz3SHiC8O6sAZFcx9Odj2MZxIIxMFJKvvx9RZeXH5b5fFO0N2gF5XAhdomgw2QC3ZzWi/QJ3xITvE4ArBngLstACLRK8pprL/1XN7T/MGukhpJeNBC6pFYwqILZsDbXQ0XC2l3n9dJOZdd3sPvj6jYXt3a6RZ3Y+IUjZoiySQId/ATFy0uNJucGUiP8yDNC98Dorj6nqLMcDmJFSqJGBmxatR0lHnt64bAb
b76c15cd41d1dc5db5e41e4a1a2ad4afcdf2281784238dd222200be0c0e29bf5Decrypt 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("va5I+kyH1KRQb82TT+UHvBySJbKxDyABaOIfgNFPvs4Bqiz//yj167bfeuiGWGC0mvTxYePnOn3KSN4nwTC3WQoLOK6NDiOOwi2byWBpDs/E+69xhhebvoe9+v1RBuz3SHiC8O6sAZFcx9Odj2MZxIIxMFJKvvx9RZeXH5b5fFO0N2gF5XAhdomgw2QC3ZzWi/QJ3xITvE4ArBngLstACLRK8pprL/1XN7T/MGukhpJeNBC6pFYwqILZsDbXQ0XC2l3n9dJOZdd3sPvj6jYXt3a6RZ3Y+IUjZoiySQId/ATFy0uNJucGUiP8yDNC98Dorj6nqLMcDmJFSqJGBmxatR0lHnt64bAb"), c => c.charCodeAt(0));
const key = Uint8Array.from("b76c15cd41d1dc5db5e41e4a1a2ad4afcdf2281784238dd222200be0c0e29bf5".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):
b76c15cd41d1dc5db5e41e4a1a2ad4afcdf2281784238dd222200be0c0e29bf5 - IV / nonce (hex):
bdae48fa4c87d4a4506fcd93 - Ciphertext (hex):
4fe507bc1c9225b2b10f200168e21f80d14fbece01aa2cffff28f5ebb6df7ae8865860b49af4f161e3e73a7dca48de27c130b7590a0b38ae8d0e238ec22d9bc960690ecfc4fbaf7186179bbe87bdfafd5106ecf7487882f0eeac01915cc7d39d8f6319c4823130524abefc7d4597971f96f97c53b4376805e570217689a0c36402dd9cd68bf409df1213bc4e00ac19e02ecb4008b44af29a6b2ffd5737b4ff306ba486925e3410baa45630a882d9b036d74345c2da5de7f5d24e65d777b0fbe3ea3617b776ba459dd8f885236688b249021dfc04c5cb4b8d26e7065223fcc83342f7c0e8ae3ea7a8b31c0e62 - Auth tag (hex):
454aa246066c5ab51d251e7b7ae1b01b
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 #960600 · 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.