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

Barnet vs Watford

Club Friendlies 3 · World · 15 Jul 2026, 18:45 UTC

Final score
2 : 2
Result
Lost
Pick
Barnet
Market
1x2
Model prob.
48.2%
Best price
2.47
Min odds
2.26
Stake factor
2.60

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)
zQaXz2sXr2bI146X4cdh+Z8A+yiLk8yUaw9aJJ6NPdeey2SoirB7aRqvbtpJ9j6ZvOTnpdcYIQxKBPrhSRLwoLP3qnWNYEdzDLa4GTGVOuaAHL7IRTZMTZmk6GTtvg43DYfd0pkBVfQmNH9fO/a5uUjqfDto96f8rwXsz5kERG4LTu4rOLHlZu0AnFeedPy/SwPYh54MrG8GJ16D1ULQTmSHj/4kxCvyWDQMpTlc9IxvpMyVIECMw84xez87YRDmwETsrkcgmNEe+wesgEl0PQ9HwhIeJuKV/TxMP+WZmr445ZW71iKwLl24EhV/VSmJ2pt8PAvwAcpxQ6MF7qcHGaKr3JV7Mg==
key fingerprint sha256: 5bb628e31bc6a3804310329f0b668ddc4b438267493e9d1953e7ee0c3b18471b
Decrypt it & read the pick
Decryption key (released after the match)
393190bb45edaf4a7c8682b0c9d9c2ca7fedc2fe6cb23bdf10cb21eea19c1b7d
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("zQaXz2sXr2bI146X4cdh+Z8A+yiLk8yUaw9aJJ6NPdeey2SoirB7aRqvbtpJ9j6ZvOTnpdcYIQxKBPrhSRLwoLP3qnWNYEdzDLa4GTGVOuaAHL7IRTZMTZmk6GTtvg43DYfd0pkBVfQmNH9fO/a5uUjqfDto96f8rwXsz5kERG4LTu4rOLHlZu0AnFeedPy/SwPYh54MrG8GJ16D1ULQTmSHj/4kxCvyWDQMpTlc9IxvpMyVIECMw84xez87YRDmwETsrkcgmNEe+wesgEl0PQ9HwhIeJuKV/TxMP+WZmr445ZW71iKwLl24EhV/VSmJ2pt8PAvwAcpxQ6MF7qcHGaKr3JV7Mg=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("393190bb45edaf4a7c8682b0c9d9c2ca7fedc2fe6cb23bdf10cb21eea19c1b7d".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): 393190bb45edaf4a7c8682b0c9d9c2ca7fedc2fe6cb23bdf10cb21eea19c1b7d
  • IV / nonce (hex): cd0697cf6b17af66c8d78e97
  • Ciphertext (hex): e1c761f99f00fb288b93cc946b0f5a249e8d3dd79ecb64a88ab07b691aaf6eda49f63e99bce4e7a5d718210c4a04fae14912f0a0b3f7aa758d6047730cb6b81931953ae6801cbec845364c4d99a4e864edbe0e370d87ddd2990155f426347f5f3bf6b9b948ea7c3b68f7a7fcaf05eccf9904446e0b4eee2b38b1e566ed009c579e74fcbf4b03d8879e0cac6f06275e83d542d04e64878ffe24c42bf258340ca5395cf48c6fa4cc9520408cc3ce317b3f3b6110e6c044ecae472098d11efb07ac8049743d0f47c2121e26e295fd3c4c3fe5999abe38e595bbd622b02e5db812157f552989da9b7c3c0bf0
  • Auth tag (hex): 01ca7143a305eea70719a2abdc957b32

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