JKS 1909 Jaroslaw vs Star Starachowice
3rd Liga · Poland · 29 Aug 2026, 14:30 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.
6hLFakWyIwKqdm97xIrRDdeznzDTNVH30GU0Q29SzzWKQzDoGFWKxVM8gOghhsFj1ls9a2fjrgEzMkImAGzHD80UUwO3OSK4sLvPfAvPlWDJxfDrrJcjyhlzOAcXVYxR5v1wk3m1XNIlBCnkSo9McKwRVXvwkQ6R1cyEcD1Ck8lH24eStjM5W9X0MWfStGJToJPGGaSPZfbtV2B3SrHCrfOVS1fvk+gWRFtxe/FrduHORIIVMlm4kd4tbFDcbHneq0mPIlbEsUceVwxom4rrioM1+ihE80bYlG8XyAHOr32hr8Y9ul4i2N+v2S8e5pbGw5hFwCBfF7UMRgQGUhQRW9IZyQqU1f01UD6kHBqmjVlz7qMd
c4c0efc2e30dc86f8f3b58be8af72a717f4f06d3995bf97fbeab51f956e6e54eDecrypt 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("6hLFakWyIwKqdm97xIrRDdeznzDTNVH30GU0Q29SzzWKQzDoGFWKxVM8gOghhsFj1ls9a2fjrgEzMkImAGzHD80UUwO3OSK4sLvPfAvPlWDJxfDrrJcjyhlzOAcXVYxR5v1wk3m1XNIlBCnkSo9McKwRVXvwkQ6R1cyEcD1Ck8lH24eStjM5W9X0MWfStGJToJPGGaSPZfbtV2B3SrHCrfOVS1fvk+gWRFtxe/FrduHORIIVMlm4kd4tbFDcbHneq0mPIlbEsUceVwxom4rrioM1+ihE80bYlG8XyAHOr32hr8Y9ul4i2N+v2S8e5pbGw5hFwCBfF7UMRgQGUhQRW9IZyQqU1f01UD6kHBqmjVlz7qMd"), c => c.charCodeAt(0));
const key = Uint8Array.from("c4c0efc2e30dc86f8f3b58be8af72a717f4f06d3995bf97fbeab51f956e6e54e".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):
c4c0efc2e30dc86f8f3b58be8af72a717f4f06d3995bf97fbeab51f956e6e54e - IV / nonce (hex):
ea12c56a45b22302aa766f7b - Ciphertext (hex):
c48ad10dd7b39f30d33551f7d06534436f52cf358a4330e818558ac5533c80e82186c163d65b3d6b67e3ae0133324226006cc70fcd145303b73922b8b0bbcf7c0bcf9560c9c5f0ebac9723ca1973380717558c51e6fd709379b55cd2250429e44a8f4c70ac11557bf0910e91d5cc84703d4293c947db8792b633395bd5f43167d2b46253a093c619a48f65f6ed5760774ab1c2adf3954b57ef93e816445b717bf16b76e1ce4482153259b891de2d6c50dc6c79deab498f2256c4b1471e570c689b8aeb8a8335fa2844f346d8946f17c801ceaf7da1afc63dba5e22d8dfafd92f1ee696c6c39845c0205f17b50c4604065214115bd219c90a - Auth tag (hex):
94d5fd35503ea41c1aa68d5973eea31d
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 #964521 · 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.