Girona vs Albacete
Segunda Division · Spain · 25 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.
bjjb7+i4dvonbdUVGdmYjDkz27HeeELrDQKouLVQ4wHuJrxTBtv+ox7cfk9YfnHv+FjFDwtA5yE4y7vvrfdIDYR+5dVhvprz99nRXvaKka++F6oDQbaNlqsvU2nAsOeY6wPUcXuar/YtOCAquOarOZKM3yvKdywOq4Qocd92/KAdj/hjF4Bk5Wd4vzJH4t2Jje9EwRT6Zz6gqM+eZSITLqsMNOxaUVHOTxl5PE/s4ldDZWDGFW9e/Njy/3gmq4vuPCI5x34YLJ8c+SLeouAYIVLHKniVOKL8CHynDZASCjuQ8Vs57gU7qTEf81KGHPooxWm6E0SsxL+8A8EQ740TEwszq5rbcwVuLNFYu4/Ds4skO7pIJtDLYIPbV1/ce8MbvuvoJS2bT7R8VhEOlmsyquRkyi91MbmYtT+oU8rGZyPn+f4H0NQV9fidY9xLYyTTK31MAWocZvoOAZym73wHOhKDPrprG7RWVv+Ps0fqpbdYtRcjEW8fUWFNF8N3Js0zr/sTpm67l547pqL/JGAXE7YMfzVsN9fwWzpQjqfJsN2Pufdj191G5OWwmrj4VPGHlUFFW4VSvLUzX0cpDyqD+oZLK0r3mhNSlsn139NNKES7Af/eI4DA7Y7uFs6wgdQZHTtfBUHcgEdVxMgYPHUREovhmKZEzQOo4+hYagEhE7IOYRubad7qBmPOYtB9w80n8OOi97oziFv6L0Xw
ee8d5e39a51c8a2e275abca328d01f6cbb3c7d323cd95760953eaef405bd2597Decrypt 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("bjjb7+i4dvonbdUVGdmYjDkz27HeeELrDQKouLVQ4wHuJrxTBtv+ox7cfk9YfnHv+FjFDwtA5yE4y7vvrfdIDYR+5dVhvprz99nRXvaKka++F6oDQbaNlqsvU2nAsOeY6wPUcXuar/YtOCAquOarOZKM3yvKdywOq4Qocd92/KAdj/hjF4Bk5Wd4vzJH4t2Jje9EwRT6Zz6gqM+eZSITLqsMNOxaUVHOTxl5PE/s4ldDZWDGFW9e/Njy/3gmq4vuPCI5x34YLJ8c+SLeouAYIVLHKniVOKL8CHynDZASCjuQ8Vs57gU7qTEf81KGHPooxWm6E0SsxL+8A8EQ740TEwszq5rbcwVuLNFYu4/Ds4skO7pIJtDLYIPbV1/ce8MbvuvoJS2bT7R8VhEOlmsyquRkyi91MbmYtT+oU8rGZyPn+f4H0NQV9fidY9xLYyTTK31MAWocZvoOAZym73wHOhKDPrprG7RWVv+Ps0fqpbdYtRcjEW8fUWFNF8N3Js0zr/sTpm67l547pqL/JGAXE7YMfzVsN9fwWzpQjqfJsN2Pufdj191G5OWwmrj4VPGHlUFFW4VSvLUzX0cpDyqD+oZLK0r3mhNSlsn139NNKES7Af/eI4DA7Y7uFs6wgdQZHTtfBUHcgEdVxMgYPHUREovhmKZEzQOo4+hYagEhE7IOYRubad7qBmPOYtB9w80n8OOi97oziFv6L0Xw"), c => c.charCodeAt(0));
const key = Uint8Array.from("ee8d5e39a51c8a2e275abca328d01f6cbb3c7d323cd95760953eaef405bd2597".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).split("\n")[0])); 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):
ee8d5e39a51c8a2e275abca328d01f6cbb3c7d323cd95760953eaef405bd2597 - IV / nonce (hex):
6e38dbefe8b876fa276dd515 - Ciphertext (hex):
19d9988c3933dbb1de7842eb0d02a8b8b550e301ee26bc5306dbfea31edc7e4f587e71eff858c50f0b40e72138cbbbefadf7480d847ee5d561be9af3f7d9d15ef68a91afbe17aa0341b68d96ab2f5369c0b0e798eb03d4717b9aaff62d38202ab8e6ab39928cdf2bca772c0eab842871df76fca01d8ff863178064e56778bf3247e2dd898def44c114fa673ea0a8cf9e6522132eab0c34ec5a5151ce4f19793c4fece257436560c6156f5efcd8f2ff7826ab8bee3c2239c77e182c9f1cf922dea2e0182152c72a789538a2fc087ca70d90120a3b90f15b39ee053ba9311ff352861cfa28c569ba1344acc4bfbc03c110ef8d13130b33ab9adb73056e2cd158bb8fc3b38b243bba4826d0cb6083db575fdc7bc31bbeebe8252d9b4fb47c56110e966b32aae464ca2f7531b998b53fa853cac66723e7f9fe07d0d415f5f89d63dc4b6324d32b7d4c016a1c66fa0e019ca6ef7c073a12833eba6b1bb45656ff8fb347eaa5b758b51723116f1f51614d17c37726cd33affb13a66ebb979e3ba6a2ff24601713b60c7f356c37d7f05b3a508ea7c9b0dd8fb9f763d7dd46e4e5b09ab8f854f1879541455b8552bcb5335f47290f2a83fa864b2b4af79a135296c9f5dfd34d2844bb01ffde2380c0ed8eee16ceb081d4191d3b5f0541dc804755c4c8183c7511128be198a644cd03a8e3e8586a012113b20e611b9b69deea0663ce62d0 - Auth tag (hex):
7dc3cd27f0e3a2f7ba33885bfa2f45f0
Any standard AES-256-GCM tool returns the exact same pick — the algorithm is a public standard.
The pick is the first line of the decrypted text. Records sealed from 24 September 2026
are followed by a line break and spaces up to a fixed size, so every encrypted pick has the same length
and its size reveals nothing about the selection before the key is published. The commitment hash is
sha256(first line + key), exactly as before.
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 #968453 · 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.