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

Academia Puerto Cabello vs Carabobo

Primera Division · Venezuela · 12 Sept 2026, 23:00 UTC

Final score
0 : 2
Result
Lost
Pick
Academia Puerto Cabello
Market
1X2
CLV vs fair close
-2.19%
Model prob.
46.0%
Best price
2.30
Min odds
2.22
Stake factor
1.50

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)
ijQjRVE+sdrb3zv1TDhYE6ER+rtCxumjO8xWRxnFTzFHO9cbhSs5svBDUaIGqadR6abQrOycmlYlWAL5+Q5zV4F9AsmlVJuY39GnQHaqoIruxwpRfGKBjob/vytuo0jM6Gt4Gy+kfZ+8XMhv3ZcVZr8VkrgHhOGnY3zzkIxX97HNZ8p2kWixzT8eVF+fH4JMbN9bgNdUw0uo//5Af07tMwF6m8fV2Jk6WqLCLsi55uKgcDuptzAcdmNt1wVh6H7I9d2JFFwDZzzQ4s5mEaY54SnBkoUMY+d7nBHtt1FRh91oKxs6CrHFY/jvEcBi6T5EfcSN/UcNvDi2/hkkrtp1cyxqDQtJul9TSbs72+3aVsiTR2chealhPtM=
key fingerprint sha256: bcfc7853316f97915c3cd6111e0d6d4ef8d349915072a2aee30ac1966f8a8711
Decrypt it & read the pick
Decryption key (released after the match)
b4a2005f69eb95842f4a13e8d002232f9e5c227ed621e7d89545f8d299cbf261
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("ijQjRVE+sdrb3zv1TDhYE6ER+rtCxumjO8xWRxnFTzFHO9cbhSs5svBDUaIGqadR6abQrOycmlYlWAL5+Q5zV4F9AsmlVJuY39GnQHaqoIruxwpRfGKBjob/vytuo0jM6Gt4Gy+kfZ+8XMhv3ZcVZr8VkrgHhOGnY3zzkIxX97HNZ8p2kWixzT8eVF+fH4JMbN9bgNdUw0uo//5Af07tMwF6m8fV2Jk6WqLCLsi55uKgcDuptzAcdmNt1wVh6H7I9d2JFFwDZzzQ4s5mEaY54SnBkoUMY+d7nBHtt1FRh91oKxs6CrHFY/jvEcBi6T5EfcSN/UcNvDi2/hkkrtp1cyxqDQtJul9TSbs72+3aVsiTR2chealhPtM="), c => c.charCodeAt(0));
const key  = Uint8Array.from("b4a2005f69eb95842f4a13e8d002232f9e5c227ed621e7d89545f8d299cbf261".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): b4a2005f69eb95842f4a13e8d002232f9e5c227ed621e7d89545f8d299cbf261
  • IV / nonce (hex): 8a342345513eb1dadbdf3bf5
  • Ciphertext (hex): 4c385813a111fabb42c6e9a33bcc564719c54f31473bd71b852b39b2f04351a206a9a751e9a6d0acec9c9a56255802f9f90e7357817d02c9a5549b98dfd1a74076aaa08aeec70a517c62818e86ffbf2b6ea348cce86b781b2fa47d9fbc5cc86fdd971566bf1592b80784e1a7637cf3908c57f7b1cd67ca769168b1cd3f1e545f9f1f824c6cdf5b80d754c34ba8fffe407f4eed33017a9bc7d5d8993a5aa2c22ec8b9e6e2a0703ba9b7301c76636dd70561e87ec8f5dd89145c03673cd0e2ce6611a639e129c192850c63e77b9c11edb7515187dd682b1b3a0ab1c563f8ef11c062e93e447dc48dfd470dbc38b6fe1924aeda75732c6a0d0b49ba5f5349
  • Auth tag (hex): bb3bdbedda56c89347672179a9613ed3

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