Dynamo Dresden vs Hertha BSC
Bundesliga 2 · Germany · 19 Sept 2026, 18: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.
q1c5kV6QC5mlo2q0xqV5zjTfsRf9kO83JZW+V1Zuwzo1Lwg799zK8/eeGaPiClTWJvVhs6ZS/q7y6bcZMFQ4RAo+qkCoOtxp+QTFDW2cpohW5XY5AWedfL/NSG2ZFjgy23LZZECKIe/d7ULBaPyT9WLlnOf+9NfGg+7H6DzYK5iOLkRvmKbnFWeMxFY2j4J1tHqcXUbcWCQkPxwuTRJQxT71ACjQ079oNDcv16RQssUWBou3xvMCo25v62df/6lS0x9H1lu4LdaDF3vWnzsUo9zOXyHlp7HGMCd7F8JI7hmrKeCNNxNtH125AJjdtB/qux1INojHw0xR7kEHpdDTQQnjvgeM9Kotiy7gE6WX
03a9feb14c48d1b9d0bc649e7d6c1723b8bedb9d04cf46fca782ad401a40f4d9Decrypt 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("q1c5kV6QC5mlo2q0xqV5zjTfsRf9kO83JZW+V1Zuwzo1Lwg799zK8/eeGaPiClTWJvVhs6ZS/q7y6bcZMFQ4RAo+qkCoOtxp+QTFDW2cpohW5XY5AWedfL/NSG2ZFjgy23LZZECKIe/d7ULBaPyT9WLlnOf+9NfGg+7H6DzYK5iOLkRvmKbnFWeMxFY2j4J1tHqcXUbcWCQkPxwuTRJQxT71ACjQ079oNDcv16RQssUWBou3xvMCo25v62df/6lS0x9H1lu4LdaDF3vWnzsUo9zOXyHlp7HGMCd7F8JI7hmrKeCNNxNtH125AJjdtB/qux1INojHw0xR7kEHpdDTQQnjvgeM9Kotiy7gE6WX"), c => c.charCodeAt(0));
const key = Uint8Array.from("03a9feb14c48d1b9d0bc649e7d6c1723b8bedb9d04cf46fca782ad401a40f4d9".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):
03a9feb14c48d1b9d0bc649e7d6c1723b8bedb9d04cf46fca782ad401a40f4d9 - IV / nonce (hex):
ab5739915e900b99a5a36ab4 - Ciphertext (hex):
c6a579ce34dfb117fd90ef372595be57566ec33a352f083bf7dccaf3f79e19a3e20a54d626f561b3a652feaef2e9b719305438440a3eaa40a83adc69f904c50d6d9ca68856e5763901679d7cbfcd486d99163832db72d964408a21efdded42c168fc93f562e59ce7fef4d7c683eec7e83cd82b988e2e446f98a6e715678cc456368f8275b47a9c5d46dc5824243f1c2e4d1250c53ef50028d0d3bf6834372fd7a450b2c516068bb7c6f302a36e6feb675fffa952d31f47d65bb82dd683177bd69f3b14a3dcce5f21e5a7b1c630277b17c248ee19ab29e08d37136d1f5db90098ddb41feabb1d483688c7c34c51ee4107a5d0 - Auth tag (hex):
d34109e3be078cf4aa2d8b2ee013a597
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 #966819 · 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.