Juárez U21 vs Puebla U21
Liga MX U21 · Mexico · 17 Jul 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.
GgyF2ipmLUYo706lCD56sJhDy5EpBm910wSJPq5MFoYI+nsLL65DmFzvvD58ehveleV4FF1l6vdxm5qNMDPrQtFrFniAxjoAZjg7CclEVhuooM7ohyIwLZiwSIY2HYTksP09krfJ3x6zc0/aSUpPI6AgB13F2a909yPflrUUlYt66R6FBgSvisWfVGZXWhkPUj1ddSHo47slS3ADXji8KhvOqwAKv/DjR3EEcfCu10KOlVOG3n/8zbpA1LvvqPczjl+ocn/GePKhJVygkSgUhl4qBIeXwFsM+qa55Z4As74rydCdZTiiUPqvzPkPxgl6actkrfzPijxQ+2KOl/3ba0xsEmklhlnQ7RrxUw==
49faa3188df39fc3fa8b6a94509d235ec3fa32b2676a6de4b9bf6f405f207570Decrypt 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("GgyF2ipmLUYo706lCD56sJhDy5EpBm910wSJPq5MFoYI+nsLL65DmFzvvD58ehveleV4FF1l6vdxm5qNMDPrQtFrFniAxjoAZjg7CclEVhuooM7ohyIwLZiwSIY2HYTksP09krfJ3x6zc0/aSUpPI6AgB13F2a909yPflrUUlYt66R6FBgSvisWfVGZXWhkPUj1ddSHo47slS3ADXji8KhvOqwAKv/DjR3EEcfCu10KOlVOG3n/8zbpA1LvvqPczjl+ocn/GePKhJVygkSgUhl4qBIeXwFsM+qa55Z4As74rydCdZTiiUPqvzPkPxgl6actkrfzPijxQ+2KOl/3ba0xsEmklhlnQ7RrxUw=="), c => c.charCodeAt(0));
const key = Uint8Array.from("49faa3188df39fc3fa8b6a94509d235ec3fa32b2676a6de4b9bf6f405f207570".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):
49faa3188df39fc3fa8b6a94509d235ec3fa32b2676a6de4b9bf6f405f207570 - IV / nonce (hex):
1a0c85da2a662d4628ef4ea5 - Ciphertext (hex):
083e7ab09843cb9129066f75d304893eae4c168608fa7b0b2fae43985cefbc3e7c7a1bde95e578145d65eaf7719b9a8d3033eb42d16b167880c63a0066383b09c944561ba8a0cee88722302d98b04886361d84e4b0fd3d92b7c9df1eb3734fda494a4f23a020075dc5d9af74f723df96b514958b7ae91e850604af8ac59f5466575a190f523d5d7521e8e3bb254b70035e38bc2a1bceab000abff0e347710471f0aed7428e955386de7ffccdba40d4bbefa8f7338e5fa8727fc678f2a1255ca0912814865e2a048797c05b0cfaa6b9e59e00b3be2bc9d09d6538a250faafccf90fc6097a69cb64adfccf8a3c50fb628e - Auth tag (hex):
97fddb6b4c6c1269258659d0ed1af153
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 #958392 · 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.