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

Motagua vs FAS

Concacaf Central American Cup · North & Central America · 07 Aug 2026, 03:00 UTC

Final score
1 : 0
Result
Won
Pick
Motagua
Market
1x2
Model prob.
56.9%
Best price
1.98
Min odds
1.89
Stake factor
2.00

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)
ibYYG8j1DZAB8NFpu1gr4zsGu2NwqFfZCg33YUGWeFkgdfdgjMrXvfCM0btaSwlHkHMISTRDLWIuhhG+v2yvO98LCkd7BtixJZ+10o0QS6iMk0HQ9lwX5hbb03dOZEhsvCha3yvIUGEFfiSkUv4Rjfp/EX/hg+wVpoqIVqUoS7Vj/q7OW5kXJVBQkOruLlpNgnNb/G4ZbfqzD3QzlBd0+f3uiCGyn50qWieihqi3D6F0LGMSRI+HtPVVL/1EstAA5ButZgawJH/I8Aqy4HPlMjksHLLTd8d9wt+5Lw2awvGu0oc5I79vDioo8OyztYq8bE0N+0L8O2gOFMnzHfCZXLwDaaXUOQ==
key fingerprint sha256: 3ed1f330cff11bd6a31dd577a5152521f80b46e0f6d9a5fc7609b896d3a601fd
Decrypt it & read the pick
Decryption key (released after the match)
b59fd1f838741b8137994aede1473e3c844a80a8a1cd6fd0fef89ffec5601ffe
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("ibYYG8j1DZAB8NFpu1gr4zsGu2NwqFfZCg33YUGWeFkgdfdgjMrXvfCM0btaSwlHkHMISTRDLWIuhhG+v2yvO98LCkd7BtixJZ+10o0QS6iMk0HQ9lwX5hbb03dOZEhsvCha3yvIUGEFfiSkUv4Rjfp/EX/hg+wVpoqIVqUoS7Vj/q7OW5kXJVBQkOruLlpNgnNb/G4ZbfqzD3QzlBd0+f3uiCGyn50qWieihqi3D6F0LGMSRI+HtPVVL/1EstAA5ButZgawJH/I8Aqy4HPlMjksHLLTd8d9wt+5Lw2awvGu0oc5I79vDioo8OyztYq8bE0N+0L8O2gOFMnzHfCZXLwDaaXUOQ=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("b59fd1f838741b8137994aede1473e3c844a80a8a1cd6fd0fef89ffec5601ffe".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): b59fd1f838741b8137994aede1473e3c844a80a8a1cd6fd0fef89ffec5601ffe
  • IV / nonce (hex): 89b6181bc8f50d9001f0d169
  • Ciphertext (hex): bb582be33b06bb6370a857d90a0df761419678592075f7608ccad7bdf08cd1bb5a4b09479073084934432d622e8611bebf6caf3bdf0b0a477b06d8b1259fb5d28d104ba88c9341d0f65c17e616dbd3774e64486cbc285adf2bc85061057e24a452fe118dfa7f117fe183ec15a68a8856a5284bb563feaece5b991725505090eaee2e5a4d82735bfc6e196dfab30f7433941774f9fdee8821b29f9d2a5a27a286a8b70fa1742c6312448f87b4f5552ffd44b2d000e41bad6606b0247fc8f00ab2e073e532392c1cb2d377c77dc2dfb92f0d9ac2f1aed2873923bf6f0e2a28f0ecb3b58abc6c4d0dfb42fc
  • Auth tag (hex): 3b680e14c9f31df0995cbc0369a5d439

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