SibboV vs TuPS
Kolmonen · Finland · 19 Sept 2026, 10: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.
XNhINj06vDbg4q3wOj4bkgBthmTtfxotTA9kKAwis/qsyup4I9L5Ujsa+fffWKsAGUFdT/0TtfIn5IMLh1zBQdpLsepaQmYGHqLaTfc6OEIXVWwaP8vFtPTX3W0YuGXFlD93HCx8D0VXl3wXZeWm4vGHSeIwI0vjGxxHolRxqeG/A4pEz2yxu/S0AC+F4289e/ZevnwzY2olhlBGYDx1s+eBQQJBDkvW6Pj6hylSOqA4Z/Pg6qP7XlPXqY8Zf+VpIW4XdXS371/cypuuLtZq+W5tmeB5+TQMJHzSyQV3YAEm3P/BV0IW6p85PuVOb+zCCVjt2pTmbgQjnHgX/ANk1uZdCpb7
d4b25961a738f0f7dcb2235fe0dfae353e98ae9bfdda0092617f2d86509e5d88Decrypt 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("XNhINj06vDbg4q3wOj4bkgBthmTtfxotTA9kKAwis/qsyup4I9L5Ujsa+fffWKsAGUFdT/0TtfIn5IMLh1zBQdpLsepaQmYGHqLaTfc6OEIXVWwaP8vFtPTX3W0YuGXFlD93HCx8D0VXl3wXZeWm4vGHSeIwI0vjGxxHolRxqeG/A4pEz2yxu/S0AC+F4289e/ZevnwzY2olhlBGYDx1s+eBQQJBDkvW6Pj6hylSOqA4Z/Pg6qP7XlPXqY8Zf+VpIW4XdXS371/cypuuLtZq+W5tmeB5+TQMJHzSyQV3YAEm3P/BV0IW6p85PuVOb+zCCVjt2pTmbgQjnHgX/ANk1uZdCpb7"), c => c.charCodeAt(0));
const key = Uint8Array.from("d4b25961a738f0f7dcb2235fe0dfae353e98ae9bfdda0092617f2d86509e5d88".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):
d4b25961a738f0f7dcb2235fe0dfae353e98ae9bfdda0092617f2d86509e5d88 - IV / nonce (hex):
5cd848363d3abc36e0e2adf0 - Ciphertext (hex):
3a3e1b92006d8664ed7f1a2d4c0f64280c22b3faaccaea7823d2f9523b1af9f7df58ab0019415d4ffd13b5f227e4830b875cc141da4bb1ea5a4266061ea2da4df73a384217556c1a3fcbc5b4f4d7dd6d18b865c5943f771c2c7c0f4557977c1765e5a6e2f18749e230234be31b1c47a25471a9e1bf038a44cf6cb1bbf4b4002f85e36f3d7bf65ebe7c33636a25865046603c75b3e7814102410e4bd6e8f8fa8729523aa03867f3e0eaa3fb5e53d7a98f197fe569216e177574b7ef5fdcca9bae2ed66af96e6d99e079f9340c247cd2c90577600126dcffc1574216ea9f393ee54e6fecc20958edda94 - Auth tag (hex):
e66e04239c7817fc0364d6e65d0a96fb
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 #967663 · 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.