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

Porto vs Aston Villa

Club Friendlies 3 · World · 25 Jul 2026, 19:00 UTC

Final score
2 : 1
Result
Won
Pick
Porto
Market
1x2
Model prob.
45.5%
Best price
2.58
Min odds
2.41
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)
v8P+wZPqOwvO0GF9UHVZyXCyogGHlGlnhUZ2NbUA/woPSus9UmONLvdKWBYOVTZM6fxQYIi3/alMhv+cwMX750kKADoPOdTpE0GZbEvM0p6u1XWOi9JALmtQ958wxAHULdrXoJ0ZPKqSZX1ia0pPWkoqJ9RNeDDKIiVTZu/dVOWAdctx3zQPZ/VfLJ8VtM74iTTBQnVijyAAu9/ckCjwEC+v0gb3zzXVXZkO7Np/1BYTd1FVxEyncH6wI14wt3FW5U/vt8Yn4Rdg5jQTmoIKysKg0yPDvmWgjg4NcKd2Nz0uqa8Stiu2374qHAJD8AjwHd3JSPwS2CToKipq4QnKROa7CaT5
key fingerprint sha256: 31777959dc1bd0bbb162501c67b533b861ebcb0366f90d5877c88c261e253eb0
Decrypt it & read the pick
Decryption key (released after the match)
97533ff4ec1f33f46f8403b4c0e2a545b1b1055ac016c3bdd1b676d5acb8ced5
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("v8P+wZPqOwvO0GF9UHVZyXCyogGHlGlnhUZ2NbUA/woPSus9UmONLvdKWBYOVTZM6fxQYIi3/alMhv+cwMX750kKADoPOdTpE0GZbEvM0p6u1XWOi9JALmtQ958wxAHULdrXoJ0ZPKqSZX1ia0pPWkoqJ9RNeDDKIiVTZu/dVOWAdctx3zQPZ/VfLJ8VtM74iTTBQnVijyAAu9/ckCjwEC+v0gb3zzXVXZkO7Np/1BYTd1FVxEyncH6wI14wt3FW5U/vt8Yn4Rdg5jQTmoIKysKg0yPDvmWgjg4NcKd2Nz0uqa8Stiu2374qHAJD8AjwHd3JSPwS2CToKipq4QnKROa7CaT5"), c => c.charCodeAt(0));
const key  = Uint8Array.from("97533ff4ec1f33f46f8403b4c0e2a545b1b1055ac016c3bdd1b676d5acb8ced5".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): 97533ff4ec1f33f46f8403b4c0e2a545b1b1055ac016c3bdd1b676d5acb8ced5
  • IV / nonce (hex): bfc3fec193ea3b0bced0617d
  • Ciphertext (hex): 507559c970b2a2018794696785467635b500ff0a0f4aeb3d52638d2ef74a58160e55364ce9fc506088b7fda94c86ff9cc0c5fbe7490a003a0f39d4e91341996c4bccd29eaed5758e8bd2402e6b50f79f30c401d42ddad7a09d193caa92657d626b4a4f5a4a2a27d44d7830ca22255366efdd54e58075cb71df340f67f55f2c9f15b4cef88934c14275628f2000bbdfdc9028f0102fafd206f7cf35d55d990eecda7fd41613775155c44ca7707eb0235e30b77156e54fefb7c627e11760e634139a820acac2a0d323c3be65a08e0e0d70a776373d2ea9af12b62bb6dfbe2a1c0243f008f01dddc948fc
  • Auth tag (hex): 12d824e82a2a6ae109ca44e6bb09a4f9

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.