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

Guatemala U20 vs Costa Rica U20

Concacaf Championship U20 · North & Central America · 24 Jul 2026, 20:00 UTC

Final score
0 : 1
Result
Won
Pick
Costa Rica U20
Market
1x2
Model prob.
74.1%
Best price
1.51
Min odds
1.43
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)
sIGe51MCE2U2WgtP5b713EHYpfOBpeh8o+qIkOPYlGzgj4AEOxM4ff+1rx+4S2aTiSae33BgnEa6J+9dOND/vCX7EhhvpQh7Vmnslnqy51IJYReLfBDXy2SKrczw6Jus5dVfU/s/GIxRclny1vUHSNVG65CgUrmetjgF5BkqGreMASHxTALRpLQNKxczRyb09B16jYO02xUI01Hi4cqBUBrS4oQt2LGjnJcZvdHw16TAHD1XFKTgMwHthWPJiOUo2gctq+3RuzKpakH0p1SjZYNQkh0fjDUa0lWFJLUCDW3FODsO2eeK/L3fTBaxuyinsCrXlckCeZUh8wdZUD+M2lJw16IYP9kjEXaLLa+lOg==
key fingerprint sha256: 5fd974d26881ed77dcebf9194a3b30b214a6fea90b9f87301499bef65421ff00
Decrypt it & read the pick
Decryption key (released after the match)
3df1da63b64a49210a795b999f5949678c14d4419253970b5ad95801f2419906
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("sIGe51MCE2U2WgtP5b713EHYpfOBpeh8o+qIkOPYlGzgj4AEOxM4ff+1rx+4S2aTiSae33BgnEa6J+9dOND/vCX7EhhvpQh7Vmnslnqy51IJYReLfBDXy2SKrczw6Jus5dVfU/s/GIxRclny1vUHSNVG65CgUrmetjgF5BkqGreMASHxTALRpLQNKxczRyb09B16jYO02xUI01Hi4cqBUBrS4oQt2LGjnJcZvdHw16TAHD1XFKTgMwHthWPJiOUo2gctq+3RuzKpakH0p1SjZYNQkh0fjDUa0lWFJLUCDW3FODsO2eeK/L3fTBaxuyinsCrXlckCeZUh8wdZUD+M2lJw16IYP9kjEXaLLa+lOg=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("3df1da63b64a49210a795b999f5949678c14d4419253970b5ad95801f2419906".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): 3df1da63b64a49210a795b999f5949678c14d4419253970b5ad95801f2419906
  • IV / nonce (hex): b0819ee753021365365a0b4f
  • Ciphertext (hex): e5bef5dc41d8a5f381a5e87ca3ea8890e3d8946ce08f80043b13387dffb5af1fb84b669389269edf70609c46ba27ef5d38d0ffbc25fb12186fa5087b5669ec967ab2e7520961178b7c10d7cb648aadccf0e89bace5d55f53fb3f188c517259f2d6f50748d546eb90a052b99eb63805e4192a1ab78c0121f14c02d1a4b40d2b17334726f4f41d7a8d83b4db1508d351e2e1ca81501ad2e2842dd8b1a39c9719bdd1f0d7a4c01c3d5714a4e03301ed8563c988e528da072dabedd1bb32a96a41f4a754a3658350921d1f8c351ad2558524b5020d6dc5383b0ed9e78afcbddf4c16b1bb28a7b02ad795c902799521f30759503f8c
  • Auth tag (hex): da5270d7a2183fd92311768b2dafa53a

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