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

Los Angeles FC 2 vs Houston Dynamo FC II

MLS Next Pro · United States · 29 Jun 2026, 02:00 UTC

Final score
3 : 1
Result
Lost
Pick
Houston Dynamo FC II
Market
1x2
Model prob.
41.0%
Best price
3.35
Min odds
2.70
Stake factor
3.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)
HxuUhU3Em8le8uEtHmYH/DMfxmBmMAgGptUfEdgWtvmMdoKL/pJsyWmnUfZXNbAhdBxXOMYhXoF6ARGYSAYzDi0NDblVaAO8Ai/zVyU3e0sb84Jh0mLZ2020J+lOEEDiTWD9tsoInkNVHkTYALAcm+P21rMswD9Anqm8M23a1eAKSYqKGkVWYldO1htED6K30Q9aMF2Fn5GRUXgB1kAAQhIPyLUeb7YNnmZg2OTWfMinh53jUttemBxX90I3dVXu7WIbLMJISROcMAyQQcelDqUEbuug9qTfJsOqer+npgf/XwneSA3Myd5o103Z6PtYk72VD5imvT5r6IwPQRZW7bXSL22lPcnAZaO3aEJvL77p
key fingerprint sha256: 22526abffd1977e54f78a0c49bfebef7bb2ee01c07ae9c5a3225c68d866ef8e5
Decrypt it & read the pick
Decryption key (released after the match)
8f42f38495275d9e912ecdd2b42a03745e58ecb092f949bdba64ad1d2be2fdba
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("HxuUhU3Em8le8uEtHmYH/DMfxmBmMAgGptUfEdgWtvmMdoKL/pJsyWmnUfZXNbAhdBxXOMYhXoF6ARGYSAYzDi0NDblVaAO8Ai/zVyU3e0sb84Jh0mLZ2020J+lOEEDiTWD9tsoInkNVHkTYALAcm+P21rMswD9Anqm8M23a1eAKSYqKGkVWYldO1htED6K30Q9aMF2Fn5GRUXgB1kAAQhIPyLUeb7YNnmZg2OTWfMinh53jUttemBxX90I3dVXu7WIbLMJISROcMAyQQcelDqUEbuug9qTfJsOqer+npgf/XwneSA3Myd5o103Z6PtYk72VD5imvT5r6IwPQRZW7bXSL22lPcnAZaO3aEJvL77p"), c => c.charCodeAt(0));
const key  = Uint8Array.from("8f42f38495275d9e912ecdd2b42a03745e58ecb092f949bdba64ad1d2be2fdba".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): 8f42f38495275d9e912ecdd2b42a03745e58ecb092f949bdba64ad1d2be2fdba
  • IV / nonce (hex): 1f1b94854dc49bc95ef2e12d
  • Ciphertext (hex): 1e6607fc331fc66066300806a6d51f11d816b6f98c76828bfe926cc969a751f65735b021741c5738c6215e817a0111984806330e2d0d0db9556803bc022ff35725377b4b1bf38261d262d9db4db427e94e1040e24d60fdb6ca089e43551e44d800b01c9be3f6d6b32cc03f409ea9bc336ddad5e00a498a8a1a455662574ed61b440fa2b7d10f5a305d859f9191517801d6400042120fc8b51e6fb60d9e6660d8e4d67cc8a7879de352db5e981c57f742377555eeed621b2cc24849139c300c9041c7a50ea5046eeba0f6a4df26c3aa7abfa7a607ff5f09de480dccc9de68d74dd9e8fb5893bd950f98a6bd3e6be88c0f411656edb5
  • Auth tag (hex): d22f6da53dc9c065a3b768426f2fbee9

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