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

Independiente Medellín vs Deportivo Pasto

Liga BetPlay · Colombia · 25 Jul 2026, 21:05 UTC

Final score
3 : 2
Result
Won
Pick
Independiente Medellín
Market
1x2
Model prob.
59.5%
Best price
1.88
Min odds
1.80
Stake factor
1.90

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)
RIZoHmh1SxS0vk0RzhlvnMPGS7wLNasShyvCPzOhMIZIEtcKHDkBXOHIMqG2VRTMueV+v5YtjEcIDdIOUXGKplyPSsafo9DGrio094QNK6PBJ6qcOFEd/Js3gBGJ+wk8W20rTt2XHhwnbVVxrAlkG+ECj8PAuXgcitFBHSZhn+fuGIybH7uUYGSH7fXdLU+v5HyMt6iSI5s9qms9qqCmvFGk8v42XBrCNWP9KmGCm5Oun8BpZGEJ0Feq/vvUEZQjKgPxsxPdDXCpnwJGyz+YdDBdkqPflfpwPU4euvu+zjPy9Dk3kyvnYJ/9So1N6yNivKg11usbgEtRAjwpO5v3jAXG2E6BkKCeyR0Bmx3/Ft+QwpS6svxD
key fingerprint sha256: 29baef227aee009e05d7a9ebe94a578d03d22a89e7b5732b2c3d2fc39016e12b
Decrypt it & read the pick
Decryption key (released after the match)
062c58c4c5dc77cff5fb1c5a701981458e863695b53940b5c24aef13af8e7eee
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("RIZoHmh1SxS0vk0RzhlvnMPGS7wLNasShyvCPzOhMIZIEtcKHDkBXOHIMqG2VRTMueV+v5YtjEcIDdIOUXGKplyPSsafo9DGrio094QNK6PBJ6qcOFEd/Js3gBGJ+wk8W20rTt2XHhwnbVVxrAlkG+ECj8PAuXgcitFBHSZhn+fuGIybH7uUYGSH7fXdLU+v5HyMt6iSI5s9qms9qqCmvFGk8v42XBrCNWP9KmGCm5Oun8BpZGEJ0Feq/vvUEZQjKgPxsxPdDXCpnwJGyz+YdDBdkqPflfpwPU4euvu+zjPy9Dk3kyvnYJ/9So1N6yNivKg11usbgEtRAjwpO5v3jAXG2E6BkKCeyR0Bmx3/Ft+QwpS6svxD"), c => c.charCodeAt(0));
const key  = Uint8Array.from("062c58c4c5dc77cff5fb1c5a701981458e863695b53940b5c24aef13af8e7eee".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): 062c58c4c5dc77cff5fb1c5a701981458e863695b53940b5c24aef13af8e7eee
  • IV / nonce (hex): 4486681e68754b14b4be4d11
  • Ciphertext (hex): ce196f9cc3c64bbc0b35ab12872bc23f33a130864812d70a1c39015ce1c832a1b65514ccb9e57ebf962d8c47080dd20e51718aa65c8f4ac69fa3d0c6ae2a34f7840d2ba3c127aa9c38511dfc9b37801189fb093c5b6d2b4edd971e1c276d5571ac09641be1028fc3c0b9781c8ad1411d26619fe7ee188c9b1fbb94606487edf5dd2d4fafe47c8cb7a892239b3daa6b3daaa0a6bc51a4f2fe365c1ac23563fd2a61829b93ae9fc069646109d057aafefbd41194232a03f1b313dd0d70a99f0246cb3f9874305d92a3df95fa703d4e1ebafbbece33f2f43937932be7609ffd4a8d4deb2362bca835d6eb1b804b51023c293b9bf78c05c6d84e8190a0
  • Auth tag (hex): 9ec91d019b1dff16df90c294bab2fc43

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