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

Alloa Athletic vs Peterhead

League One · Scotland · 29 Aug 2026, 14:00 UTC

Final score
1 : 1
Result
Lost
Pick
Peterhead
Market
1X2
CLV vs fair close
-15.58%
Model prob.
27.8%
Best price
4.00
Min odds
3.67
Stake factor
1.20

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)
fvnCtuhexhCvduDALpnBcF3oqLgvvr7FsJ3cYutRIOJARUxr00df13XaveU2NRcSX9Tjr7yz1oRaS9ygeLvLNREc2wHm2NbYviTzjBpbwXaNZWEoAS+HQjRFjtwVdM9esQTx4GCVVrirIxxO3VA0ge/ZsCIcpFARQH8Z7oY8kR2GphzzfR5MlHxc3HWObo8Pk2SSpB4q4t1CfohdDFKbd+L0UWcP/wOoBaeXJY1h2IfKLfk7CLE3Z+hm8NXEPuU/t5jVQCjwyiZzUR3PNxNUtDx1ISr7v+9PmJYcE4K9841/dVBGaD09MbFASegd6akomsum2z1gq1szGAyop9xyVJj1V2NfvQ==
key fingerprint sha256: e7275861872274fe27422fddaab43ecce9cac423f9ce7cb59f77a5abc7f77034
Decrypt it & read the pick
Decryption key (released after the match)
9e111d4ae6557a1f1d70e9975c328690dbf7bd3b662fbb67897679d87d5b1af1
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("fvnCtuhexhCvduDALpnBcF3oqLgvvr7FsJ3cYutRIOJARUxr00df13XaveU2NRcSX9Tjr7yz1oRaS9ygeLvLNREc2wHm2NbYviTzjBpbwXaNZWEoAS+HQjRFjtwVdM9esQTx4GCVVrirIxxO3VA0ge/ZsCIcpFARQH8Z7oY8kR2GphzzfR5MlHxc3HWObo8Pk2SSpB4q4t1CfohdDFKbd+L0UWcP/wOoBaeXJY1h2IfKLfk7CLE3Z+hm8NXEPuU/t5jVQCjwyiZzUR3PNxNUtDx1ISr7v+9PmJYcE4K9841/dVBGaD09MbFASegd6akomsum2z1gq1szGAyop9xyVJj1V2NfvQ=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("9e111d4ae6557a1f1d70e9975c328690dbf7bd3b662fbb67897679d87d5b1af1".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): 9e111d4ae6557a1f1d70e9975c328690dbf7bd3b662fbb67897679d87d5b1af1
  • IV / nonce (hex): 7ef9c2b6e85ec610af76e0c0
  • Ciphertext (hex): 2e99c1705de8a8b82fbebec5b09ddc62eb5120e240454c6bd3475fd775dabde5363517125fd4e3afbcb3d6845a4bdca078bbcb35111cdb01e6d8d6d8be24f38c1a5bc1768d656128012f874234458edc1574cf5eb104f1e0609556b8ab231c4edd503481efd9b0221ca45011407f19ee863c911d86a61cf37d1e4c947c5cdc758e6e8f0f936492a41e2ae2dd427e885d0c529b77e2f451670fff03a805a797258d61d887ca2df93b08b13767e866f0d5c43ee53fb798d54028f0ca2673511dcf371354b43c75212afbbfef4f98961c1382bdf38d7f755046683d3d31b14049e81de9a9289acba6db3d60
  • Auth tag (hex): ab5b33180ca8a7dc725498f557635fbd

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