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

Avellino vs Palermo

Serie B · Italy · 13 Sept 2026, 13:00 UTC

Final score
1 : 1
Result
Lost
Pick
Palermo
Market
1X2
CLV vs fair close
+8.49%
Model prob.
47.8%
Best price
2.25
Min odds
2.13
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)
fFdP1ZzzsVFTvu7A2EbzKdznUS0d0tRlH8PuaGRunEw12XV1nKO6yfF1I4oSboB0dajgFqVtaOtyYLwRAaM9eNrpwJCTgpVBlFQFY7a+EaA0xsRbe5QZwJl8rPF4GUlBUvnWGo8XMAFT6kTUNBdetAQ9/blGHY1XcK2nvLbSxhyIWTCgcfB+Jzkh5J6E4K7YLq0wUyJUJfNZ3ntwV/amaUERXnN4UJOXuZmzHBdAvGk45pLURusK11f51M0O7vXl+AQzB4Qjh/Pv1ST+7EbNsJW2IGdVy30RWyAltfB80K/quNE904yhKn/gQ4hqacd+Ua3/eFlvgllRFTbHdxhUnodh/+RoPq7H2g==
key fingerprint sha256: 63a3af04a884f7c4d16f393d1f4330ca23e81994e54f282cac50081fefff4590
Decrypt it & read the pick
Decryption key (released after the match)
4b16bde52784a54751dc36cb28040f3cc0451f970d7c2a4d44cae22168c7e582
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("fFdP1ZzzsVFTvu7A2EbzKdznUS0d0tRlH8PuaGRunEw12XV1nKO6yfF1I4oSboB0dajgFqVtaOtyYLwRAaM9eNrpwJCTgpVBlFQFY7a+EaA0xsRbe5QZwJl8rPF4GUlBUvnWGo8XMAFT6kTUNBdetAQ9/blGHY1XcK2nvLbSxhyIWTCgcfB+Jzkh5J6E4K7YLq0wUyJUJfNZ3ntwV/amaUERXnN4UJOXuZmzHBdAvGk45pLURusK11f51M0O7vXl+AQzB4Qjh/Pv1ST+7EbNsJW2IGdVy30RWyAltfB80K/quNE904yhKn/gQ4hqacd+Ua3/eFlvgllRFTbHdxhUnodh/+RoPq7H2g=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("4b16bde52784a54751dc36cb28040f3cc0451f970d7c2a4d44cae22168c7e582".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): 4b16bde52784a54751dc36cb28040f3cc0451f970d7c2a4d44cae22168c7e582
  • IV / nonce (hex): 7c574fd59cf3b15153beeec0
  • Ciphertext (hex): d846f329dce7512d1dd2d4651fc3ee68646e9c4c35d975759ca3bac9f175238a126e807475a8e016a56d68eb7260bc1101a33d78dae9c0909382954194540563b6be11a034c6c45b7b9419c0997cacf17819494152f9d61a8f17300153ea44d434175eb4043dfdb9461d8d5770ada7bcb6d2c61c885930a071f07e273921e49e84e0aed82ead3053225425f359de7b7057f6a66941115e7378509397b999b31c1740bc6938e692d446eb0ad757f9d4cd0eeef5e5f8043307842387f3efd524feec46cdb095b6206755cb7d115b2025b5f07cd0afeab8d13dd38ca12a7fe043886a69c77e51adff78596f825951
  • Auth tag (hex): 1536c77718549e8761ffe4683eaec7da

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