Deportivo Garcilaso vs Atletico Grau
Liga 1 · Peru · 06 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.
TVJixqo/20C12J/zagc3qi2btynfsxYMGs+1l/9z3a9h2pHQ65BUTso+T1skMnDATIAhjOFSWYVHVhWG7hicBrBjx3rFipHsZkacNVOz2CJMLYu8RezVNLTlmUuZhpdVOFIv18zO9/f5qF1F4bJm206FQguWjQB3hsMyzmEOnW4piOEOraIeUTpEc14VHXmjPCAFdKEqU4SSTZpp7qzSbLKyCryyDFVmSmnyVBdIqUc08/ciIflb106ZCL2TQHKATXB3cNx2gSyn2NobXQT2PU08V7A+3sh1Sy7KrQI6ClHw3HXlMj1R6Vu1CeL7IvsHRREJmGBd4Aq4a/wjCH5GNmeIfmwBBX/F76Sb
fffaf7e0f83454eec2d9f76d8293af3253f6356e94384a1f8812e3b057dd2f01Decrypt 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("TVJixqo/20C12J/zagc3qi2btynfsxYMGs+1l/9z3a9h2pHQ65BUTso+T1skMnDATIAhjOFSWYVHVhWG7hicBrBjx3rFipHsZkacNVOz2CJMLYu8RezVNLTlmUuZhpdVOFIv18zO9/f5qF1F4bJm206FQguWjQB3hsMyzmEOnW4piOEOraIeUTpEc14VHXmjPCAFdKEqU4SSTZpp7qzSbLKyCryyDFVmSmnyVBdIqUc08/ciIflb106ZCL2TQHKATXB3cNx2gSyn2NobXQT2PU08V7A+3sh1Sy7KrQI6ClHw3HXlMj1R6Vu1CeL7IvsHRREJmGBd4Aq4a/wjCH5GNmeIfmwBBX/F76Sb"), c => c.charCodeAt(0));
const key = Uint8Array.from("fffaf7e0f83454eec2d9f76d8293af3253f6356e94384a1f8812e3b057dd2f01".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):
fffaf7e0f83454eec2d9f76d8293af3253f6356e94384a1f8812e3b057dd2f01 - IV / nonce (hex):
4d5262c6aa3fdb40b5d89ff3 - Ciphertext (hex):
6a0737aa2d9bb729dfb3160c1acfb597ff73ddaf61da91d0eb90544eca3e4f5b243270c04c80218ce152598547561586ee189c06b063c77ac58a91ec66469c3553b3d8224c2d8bbc45ecd534b4e5994b9986975538522fd7cccef7f7f9a85d45e1b266db4e85420b968d007786c332ce610e9d6e2988e10eada21e513a44735e151d79a33c200574a12a5384924d9a69eeacd26cb2b20abcb20c55664a69f2541748a94734f3f72221f95bd74e9908bd934072804d707770dc76812ca7d8da1b5d04f63d4d3c57b03edec8754b2ecaad023a0a51f0dc75e5323d51e95bb509e2fb22fb0745110998605de00ab86bfc - Auth tag (hex):
23087e463667887e6c01057fc5efa49b
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 #965082 · 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.