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

Deportivo Pasto vs Deportivo Pereira

Primera A · Colombia · 31 Aug 2026, 23:00 UTC

Final score
1 : 2
Result
Won
Pick
Deportivo Pereira
Market
1X2
CLV vs fair close
+23.91%
Model prob.
13.4%
Best price
7.90
Min odds
7.63
Stake factor
1.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)
7RHJyjGTmgeE8JBEG90czCWnvQKClm5JWVyn2KAt6Gl/49uFxUjGEh3agiMtXkbp3HzlhRph/ELA9egMsOpDvp7AggRHVKbZ4/2k99D4G/e5QxALIHaKmIuWkUaa4ZJSe0s1FeFkQSmsRXXK2YecHhlnHON7p/wZ9HgLxj5CJl7hMuKZUDOkaHWXxIKQV9yowpQviHQ2gbknultZ3M3e9GNxRn8IfhgXp4ktYg2kKw4KYFcupPJGyJlWJeelXWypzAg39bO/cHOGeegXGeZzui0r+Sp2HqM2n2j7mco/Qr6sVqi74f6HNRE3eu4MEw2tfEpjcNOMj44WYj0kXoxHY1dgRtXA7rxrptZXyQIzytzF
key fingerprint sha256: a6232aa127f292d3ac48656914c72fe3a3aa13371bf84649fc1e3dc6a9adfebe
Decrypt it & read the pick
Decryption key (released after the match)
29258e0810e4843a4b3964a3e588c8d4f193e12ed9884341790f6be7ee788b51
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("7RHJyjGTmgeE8JBEG90czCWnvQKClm5JWVyn2KAt6Gl/49uFxUjGEh3agiMtXkbp3HzlhRph/ELA9egMsOpDvp7AggRHVKbZ4/2k99D4G/e5QxALIHaKmIuWkUaa4ZJSe0s1FeFkQSmsRXXK2YecHhlnHON7p/wZ9HgLxj5CJl7hMuKZUDOkaHWXxIKQV9yowpQviHQ2gbknultZ3M3e9GNxRn8IfhgXp4ktYg2kKw4KYFcupPJGyJlWJeelXWypzAg39bO/cHOGeegXGeZzui0r+Sp2HqM2n2j7mco/Qr6sVqi74f6HNRE3eu4MEw2tfEpjcNOMj44WYj0kXoxHY1dgRtXA7rxrptZXyQIzytzF"), c => c.charCodeAt(0));
const key  = Uint8Array.from("29258e0810e4843a4b3964a3e588c8d4f193e12ed9884341790f6be7ee788b51".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): 29258e0810e4843a4b3964a3e588c8d4f193e12ed9884341790f6be7ee788b51
  • IV / nonce (hex): ed11c9ca31939a0784f09044
  • Ciphertext (hex): 1bdd1ccc25a7bd0282966e49595ca7d8a02de8697fe3db85c548c6121dda82232d5e46e9dc7ce5851a61fc42c0f5e80cb0ea43be9ec082044754a6d9e3fda4f7d0f81bf7b943100b20768a988b9691469ae192527b4b3515e1644129ac4575cad9879c1e19671ce37ba7fc19f4780bc63e42265ee132e2995033a4687597c4829057dca8c2942f88743681b927ba5b59dccddef46371467f087e1817a7892d620da42b0e0a60572ea4f246c8995625e7a55d6ca9cc0837f5b3bf70738679e81719e673ba2d2bf92a761ea3369f68fb99ca3f42beac56a8bbe1fe873511377aee0c130dad7c4a6370d38c8f8e16623d245e8c476357
  • Auth tag (hex): 6046d5c0eebc6ba6d657c90233cadcc5

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 #964812 · 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.