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

Vasco da Gama U20 vs Criciuma U20

Brasileiro U20 · Brazil · 25 Jun 2026, 18:00 UTC

Final score
1 : 2
Result
Lost
Pick
Vasco da Gama U20
Market
1x2
Model prob.
74.5%
Best price
1.50
Min odds
1.42
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)
livw1afbjpalYyyEpcwk/MkVWkCGG5lCzUbqYHhH9Y4tleFPy/BDim/K1F1j8uBAMufmLmtSLU/VwtnxuljVfB7l80/3VFLuvdBisbwPPDXK1kh9cEkO+5O/GzTjodE/Ad85iysARoWWYQ79lYQCsRJVF92F30p8L2/iNhybyQ2yOQF9tgTZIz18wV/D9207q57neWwyEl6UgIiTwgFnqjb6nHA04uJPqCZBVRIZBQ2gxMxXJzaPffEnJ68dAL6CLiqTbeo+YTNxTK0ugXRtpxRJFMp+Ycz1Kg46KjuZmQLEOLNj2DGMLHmDduITSMR1rCKTq2mdPpi/3j6bYKcljcRCI1wBOjPJQ7w9gsfO
key fingerprint sha256: fa8aa288d2265d8cf9591e0337be11b1f00989a9b3aa7566b885587dbbe151e6
Decrypt it & read the pick
Decryption key (released after the match)
250097dc697348dd362405731d6f65c1089cb6ceba070307c75b705ffadd08f2
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("livw1afbjpalYyyEpcwk/MkVWkCGG5lCzUbqYHhH9Y4tleFPy/BDim/K1F1j8uBAMufmLmtSLU/VwtnxuljVfB7l80/3VFLuvdBisbwPPDXK1kh9cEkO+5O/GzTjodE/Ad85iysARoWWYQ79lYQCsRJVF92F30p8L2/iNhybyQ2yOQF9tgTZIz18wV/D9207q57neWwyEl6UgIiTwgFnqjb6nHA04uJPqCZBVRIZBQ2gxMxXJzaPffEnJ68dAL6CLiqTbeo+YTNxTK0ugXRtpxRJFMp+Ycz1Kg46KjuZmQLEOLNj2DGMLHmDduITSMR1rCKTq2mdPpi/3j6bYKcljcRCI1wBOjPJQ7w9gsfO"), c => c.charCodeAt(0));
const key  = Uint8Array.from("250097dc697348dd362405731d6f65c1089cb6ceba070307c75b705ffadd08f2".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): 250097dc697348dd362405731d6f65c1089cb6ceba070307c75b705ffadd08f2
  • IV / nonce (hex): 962bf0d5a7db8e96a5632c84
  • Ciphertext (hex): a5cc24fcc9155a40861b9942cd46ea607847f58e2d95e14fcbf0438a6fcad45d63f2e04032e7e62e6b522d4fd5c2d9f1ba58d57c1ee5f34ff75452eebdd062b1bc0f3c35cad6487d70490efb93bf1b34e3a1d13f01df398b2b00468596610efd958402b1125517dd85df4a7c2f6fe2361c9bc90db239017db604d9233d7cc15fc3f76d3bab9ee7796c32125e94808893c20167aa36fa9c7034e2e24fa82641551219050da0c4cc5727368f7df12727af1d00be822e2a936dea3e6133714cad2e81746da7144914ca7e61ccf52a0e3a2a3b999902c438b363d8318c2c798376e21348c475ac2293ab699d3e98bfde3e9b60a7
  • Auth tag (hex): 258dc442235c013a33c943bc3d82c7ce

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