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

Orlando City vs Toronto FC

Major League Soccer · USA · 12 Sept 2026, 23:30 UTC

Final score
3 : 0
Result
Lost
Pick
Toronto FC
Market
1X2
CLV vs fair close
+2.22%
Model prob.
26.4%
Best price
4.00
Min odds
3.87
Stake factor
1.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)
fzLaF4PBuFOW15FM3/YYOjc+6n/NvNMROQmpEWDzaBdj4ASqqEygY3i3mEZD6liyhugRJzJdvKd0xdqvov1zFivCTNl545pTZZV8FNZsqqnd9xtHavDK6TqHzVHQViFuHqOznpVfvJcVCMH+2OXb3XMYlq4l6yOPLGEWL4pUiwHadw1EnnjwAD32vL5Yysrqz3vD6pTcMfopms5O/ntlSRWAsHPm2Ar1GKN4JWbMR8AAhc4OiRNGlaQA2BFhAqF4itEw6y2qDrsuCrqQ0ToDNJq5XS0/p5eFEakO9ddEdAPCSdCiOBGFOWywv904FuSRhPXDU2IxmF6UGwkYIKmoj3hlIC3CtQ==
key fingerprint sha256: 4bf96e8ea36acdc0cba9460afae2f00293b3b193872ab08cdf9d0f75a56b8554
Decrypt it & read the pick
Decryption key (released after the match)
6f680a09587ca9cb1c297be584720e58a8771169c2f435d961c293c7d92c743a
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("fzLaF4PBuFOW15FM3/YYOjc+6n/NvNMROQmpEWDzaBdj4ASqqEygY3i3mEZD6liyhugRJzJdvKd0xdqvov1zFivCTNl545pTZZV8FNZsqqnd9xtHavDK6TqHzVHQViFuHqOznpVfvJcVCMH+2OXb3XMYlq4l6yOPLGEWL4pUiwHadw1EnnjwAD32vL5Yysrqz3vD6pTcMfopms5O/ntlSRWAsHPm2Ar1GKN4JWbMR8AAhc4OiRNGlaQA2BFhAqF4itEw6y2qDrsuCrqQ0ToDNJq5XS0/p5eFEakO9ddEdAPCSdCiOBGFOWywv904FuSRhPXDU2IxmF6UGwkYIKmoj3hlIC3CtQ=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("6f680a09587ca9cb1c297be584720e58a8771169c2f435d961c293c7d92c743a".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): 6f680a09587ca9cb1c297be584720e58a8771169c2f435d961c293c7d92c743a
  • IV / nonce (hex): 7f32da1783c1b85396d7914c
  • Ciphertext (hex): dff6183a373eea7fcdbcd3113909a91160f3681763e004aaa84ca06378b7984643ea58b286e81127325dbca774c5daafa2fd73162bc24cd979e39a5365957c14d66caaa9ddf71b476af0cae93a87cd51d056216e1ea3b39e955fbc971508c1fed8e5dbdd731896ae25eb238f2c61162f8a548b01da770d449e78f0003df6bcbe58cacaeacf7bc3ea94dc31fa299ace4efe7b65491580b073e6d80af518a3782566cc47c00085ce0e89134695a400d8116102a1788ad130eb2daa0ebb2e0aba90d13a03349ab95d2d3fa7978511a90ef5d7447403c249d0a2381185396cb0bfdd3816e49184f5c3536231
  • Auth tag (hex): 985e941b091820a9a88f7865202dc2b5

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