NMŠK 1922 Bratislava vs Dunajská Lužná
Slovakia Cup · Slovakia · 01 Aug 2026, 15: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.
LurTqQD6fBxbpGaYN/nvNicATgFV69o3UDFem+1Ls85Eji7+We1zwZOt/yJjBoLd8SUkRx8xopwLz7bCPNCdMY8h9HfIZiGLxsf6ZQufHW1eZePZ11t16d2lfWSF2Av9DgIOzQ1N/mFH2jv9meLSiYIvcgcJ4md91a466XtxEnl6ulDTwsVChji6Ak6WjkChXXYwe6+w/xF4ty2PnESIxYhPAqLlFvhTqMJboqMB2PmAk4V6I59wdVdsH2cOYaNEOWZpXHh7ZYD/WS9w2j4b9rrcUa7hFBvsVR9O/H+0yNo3Sb7USBYdkWneY27D9SypPxbLlHd5Icb3kgEbdJGO7hAZfEQ0
55f355cc62df2fa3ef53f6d1a6ae88f2b89519bfda2708e218500dd7e8769feaDecrypt 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("LurTqQD6fBxbpGaYN/nvNicATgFV69o3UDFem+1Ls85Eji7+We1zwZOt/yJjBoLd8SUkRx8xopwLz7bCPNCdMY8h9HfIZiGLxsf6ZQufHW1eZePZ11t16d2lfWSF2Av9DgIOzQ1N/mFH2jv9meLSiYIvcgcJ4md91a466XtxEnl6ulDTwsVChji6Ak6WjkChXXYwe6+w/xF4ty2PnESIxYhPAqLlFvhTqMJboqMB2PmAk4V6I59wdVdsH2cOYaNEOWZpXHh7ZYD/WS9w2j4b9rrcUa7hFBvsVR9O/H+0yNo3Sb7USBYdkWneY27D9SypPxbLlHd5Icb3kgEbdJGO7hAZfEQ0"), c => c.charCodeAt(0));
const key = Uint8Array.from("55f355cc62df2fa3ef53f6d1a6ae88f2b89519bfda2708e218500dd7e8769fea".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):
55f355cc62df2fa3ef53f6d1a6ae88f2b89519bfda2708e218500dd7e8769fea - IV / nonce (hex):
2eead3a900fa7c1c5ba46698 - Ciphertext (hex):
37f9ef3627004e0155ebda3750315e9bed4bb3ce448e2efe59ed73c193adff22630682ddf12524471f31a29c0bcfb6c23cd09d318f21f477c866218bc6c7fa650b9f1d6d5e65e3d9d75b75e9dda57d6485d80bfd0e020ecd0d4dfe6147da3bfd99e2d289822f720709e2677dd5ae3ae97b7112797aba50d3c2c5428638ba024e968e40a15d76307bafb0ff1178b72d8f9c4488c5884f02a2e516f853a8c25ba2a301d8f98093857a239f7075576c1f670e61a3443966695c787b6580ff592f70da3e1bf6badc51aee1141bec551f4efc7fb4c8da3749bed448161d9169de636ec3f52ca93f16cb9477 - Auth tag (hex):
7921c6f792011b74918eee10197c4434
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 #960553 · 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.