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

Jalapa vs Real Estelí

Primera Division · Nicaragua · 30 Jul 2026, 22:00 UTC

Final score
0 : 1
Result
Won
Pick
Real Estelí
Market
1x2
Model prob.
44.2%
Best price
2.65
Min odds
2.49
Stake factor
2.40

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)
iwfkb6UOjFzeote6anlVSBiKuh2VaCTKZ5HEozNieEEju9BLiGpZgFfSuuF+OFE8fdPtOVu7X1V/yGdv7Cwnicm39bqkdC4HCMcHBlpri93J+OyFnXFtQV4H4YUJWjgb/+k8vNU0u89G7cgya0mJg+OvNvOrnt16Kwzvn/T+ANVMxdVOeYDw4PYGYHkMs4etJ+0IBjwbPJ/gqjcWhqZUaEQ8sXVoZCM2NDGmsnyicChs++bfTswsHjYeTbt3m140OwM8tZdkFgFTUB93XFIggRddNLx6ZZpQDDVO1ZZY2Cr/tg/INkg54oIGCUZdmTnxmYNJmbS9zQYl9ye6mawDTRacXrsJzbV8yX1di9c=
key fingerprint sha256: 5b80c786b05356533ff081973b47350733fd643f0799b44785c4190e62bb55bd
Decrypt it & read the pick
Decryption key (released after the match)
7d900fbd615aaf3ebff1aeb8d56fd7fd19b897d90a2cc3b8035c4303ab070d57
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("iwfkb6UOjFzeote6anlVSBiKuh2VaCTKZ5HEozNieEEju9BLiGpZgFfSuuF+OFE8fdPtOVu7X1V/yGdv7Cwnicm39bqkdC4HCMcHBlpri93J+OyFnXFtQV4H4YUJWjgb/+k8vNU0u89G7cgya0mJg+OvNvOrnt16Kwzvn/T+ANVMxdVOeYDw4PYGYHkMs4etJ+0IBjwbPJ/gqjcWhqZUaEQ8sXVoZCM2NDGmsnyicChs++bfTswsHjYeTbt3m140OwM8tZdkFgFTUB93XFIggRddNLx6ZZpQDDVO1ZZY2Cr/tg/INkg54oIGCUZdmTnxmYNJmbS9zQYl9ye6mawDTRacXrsJzbV8yX1di9c="), c => c.charCodeAt(0));
const key  = Uint8Array.from("7d900fbd615aaf3ebff1aeb8d56fd7fd19b897d90a2cc3b8035c4303ab070d57".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): 7d900fbd615aaf3ebff1aeb8d56fd7fd19b897d90a2cc3b8035c4303ab070d57
  • IV / nonce (hex): 8b07e46fa50e8c5cdea2d7ba
  • Ciphertext (hex): 6a795548188aba1d956824ca6791c4a33362784123bbd04b886a598057d2bae17e38513c7dd3ed395bbb5f557fc8676fec2c2789c9b7f5baa4742e0708c707065a6b8bddc9f8ec859d716d415e07e185095a381bffe93cbcd534bbcf46edc8326b498983e3af36f3ab9edd7a2b0cef9ff4fe00d54cc5d54e7980f0e0f60660790cb387ad27ed08063c1b3c9fe0aa371686a65468443cb175686423363431a6b27ca270286cfbe6df4ecc2c1e361e4dbb779b5e343b033cb59764160153501f775c522081175d34bc7a659a500c354ed59658d82affb60fc8364839e2820609465d9939f199834999b4bdcd0625f727ba99
  • Auth tag (hex): ac034d169c5ebb09cdb57cc97d5d8bd7

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