Fana vs Bjarg
Cup · Norway · 22 Aug 2026, 14: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.
FbcxwdxPzMIIJAxRmYEuj2CyH/nTctDltH4W93SKKxXoAz+4sC062+pRQmb+LZNDwRZSFeYJaTcWA8n/WddrGJTuBzI+6qu89FVC3kd/SIf/mrrNAVNy40PtAQ8OjRtfX+wIDnoLQtfIN27nkGJhiuCkyvtpGnDH3VNmkwItCEwBxvzXSRtWDhldd1js5SVJGLKvLDO8zzb6htZTsf6Rtb3sJ0XzxhyFnf06ioaOY3+JbKQqI/VjIIJ/DfjpHvnwwy8Gw1aS6aaFUXjEeNME3y/R0ajjkKfYJBo+EF0QSn/45XLMPuLGMQzAdbqHujpbl9wvHnvx5VIxBIDZLl4sr/DCpT/8IL0q
2a0bdfba299372d2795d0ffbedf45fabfa2a9ec128b8033cb73395e99bf38c0cDecrypt 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("FbcxwdxPzMIIJAxRmYEuj2CyH/nTctDltH4W93SKKxXoAz+4sC062+pRQmb+LZNDwRZSFeYJaTcWA8n/WddrGJTuBzI+6qu89FVC3kd/SIf/mrrNAVNy40PtAQ8OjRtfX+wIDnoLQtfIN27nkGJhiuCkyvtpGnDH3VNmkwItCEwBxvzXSRtWDhldd1js5SVJGLKvLDO8zzb6htZTsf6Rtb3sJ0XzxhyFnf06ioaOY3+JbKQqI/VjIIJ/DfjpHvnwwy8Gw1aS6aaFUXjEeNME3y/R0ajjkKfYJBo+EF0QSn/45XLMPuLGMQzAdbqHujpbl9wvHnvx5VIxBIDZLl4sr/DCpT/8IL0q"), c => c.charCodeAt(0));
const key = Uint8Array.from("2a0bdfba299372d2795d0ffbedf45fabfa2a9ec128b8033cb73395e99bf38c0c".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):
2a0bdfba299372d2795d0ffbedf45fabfa2a9ec128b8033cb73395e99bf38c0c - IV / nonce (hex):
15b731c1dc4fccc208240c51 - Ciphertext (hex):
99812e8f60b21ff9d372d0e5b47e16f7748a2b15e8033fb8b02d3adbea514266fe2d9343c1165215e60969371603c9ff59d76b1894ee07323eeaabbcf45542de477f4887ff9abacd015372e343ed010f0e8d1b5f5fec080e7a0b42d7c8376ee79062618ae0a4cafb691a70c7dd536693022d084c01c6fcd7491b560e195d7758ece5254918b2af2c33bccf36fa86d653b1fe91b5bdec2745f3c61c859dfd3a8a868e637f896ca42a23f56320827f0df8e91ef9f0c32f06c35692e9a6855178c478d304df2fd1d1a8e390a7d8241a3e105d104a7ff8e572cc3ee2c6310cc075ba87ba3a5b97dc2f1e7bf1e552 - Auth tag (hex):
310480d92e5e2caff0c2a53ffc20bd2a
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 #963516 · 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.