Sign in
← All matches
✅ Cryptographically verified · sealed pick #24

Coquimbo Unido vs Deportes Limache

Chilean Cup · Chile · 23 Jun 2026, 19:00 UTC

Final score
1 : 1
Result
Lost
Pick
Coquimbo Unido
Market
1x2
Model prob.
25.9%
Best price
181.28
Min odds
4.56
Stake factor
3.00

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.

Encrypted pick (AES-256-GCM)
GuAWtiBNCqplkyfUnOnLVdV91B/DFNnZIq60hgKKhhErl3Nyew/aueNiTMQHTaCjN7Q8qoTvTj/e1qBJw9prBvFE2M9tOSAN8TwO11Vj39Uzhosc72T2ssL15JDmF4e9z6/X1c3vzrCYyBxaE/QhGkXrq4XKkS47rWS/G1mQGzERSmk17Fdhn7RdkA96RO8gTMftfWuJDGbR65cg0EEiVHY90SfJZGVF/GbLJHBOlXRf1m0Zufd/LCKuCsYcs9gPqGlpjRFWLRAQWGZ1KvCotiKcTqPjyaJWIOekNxLum6Ya116rvAJ6YD3kyGwYIUxEySYKsK9iDLZRSUsM+gq8UGXoE9LmNgtzY0tYJjpC2eJ5
key fingerprint sha256: e2136ff1143e3ae40cad6f686072fbf86543544a1f37dfac6ff51f3841adfbba
Decrypt it & read the pick
Decryption key (released after the match)
1016a030305dd0979491e477cdb5a06ab963f61ab4f3218cb8403f9250e20f2c
Decrypt 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 F12Console), paste this, press Enter — it decrypts the exact pick shown above:

const blob = Uint8Array.from(atob("GuAWtiBNCqplkyfUnOnLVdV91B/DFNnZIq60hgKKhhErl3Nyew/aueNiTMQHTaCjN7Q8qoTvTj/e1qBJw9prBvFE2M9tOSAN8TwO11Vj39Uzhosc72T2ssL15JDmF4e9z6/X1c3vzrCYyBxaE/QhGkXrq4XKkS47rWS/G1mQGzERSmk17Fdhn7RdkA96RO8gTMftfWuJDGbR65cg0EEiVHY90SfJZGVF/GbLJHBOlXRf1m0Zufd/LCKuCsYcs9gPqGlpjRFWLRAQWGZ1KvCotiKcTqPjyaJWIOekNxLum6Ya116rvAJ6YD3kyGwYIUxEySYKsK9iDLZRSUsM+gq8UGXoE9LmNgtzY0tYJjpC2eJ5"), c => c.charCodeAt(0));
const key  = Uint8Array.from("1016a030305dd0979491e477cdb5a06ab963f61ab4f3218cb8403f9250e20f2c".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): 1016a030305dd0979491e477cdb5a06ab963f61ab4f3218cb8403f9250e20f2c
  • IV / nonce (hex): 1ae016b6204d0aaa659327d4
  • Ciphertext (hex): 9ce9cb55d57dd41fc314d9d922aeb486028a86112b9773727b0fdab9e3624cc4074da0a337b43caa84ef4e3fded6a049c3da6b06f144d8cf6d39200df13c0ed75563dfd533868b1cef64f6b2c2f5e490e61787bdcfafd7d5cdefceb098c81c5a13f4211a45ebab85ca912e3bad64bf1b59901b31114a6935ec57619fb45d900f7a44ef204cc7ed7d6b890c66d1eb9720d0412254763dd127c9646545fc66cb24704e95745fd66d19b9f77f2c22ae0ac61cb3d80fa869698d11562d10105866752af0a8b6229c4ea3e3c9a25620e7a43712ee9ba61ad75eabbc027a603de4c86c18214c44c9260ab0af620cb651494b0cfa0abc5065
  • Auth tag (hex): e813d2e6360b73634b58263a42d9e279

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:

  1. Download the sealed batch file (.jsonl) and its proof (.ots) from GitHub.
  2. Drop both into opentimestamps.org (or run ots verify *.ots). It replays the proof and confirms the Bitcoin block and its UTC time.
  3. See it independently: block #954980 · 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.