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

Montedio Yamagata vs Yokohama FC

J2 League · Japan · 22 Aug 2026, 10:00 UTC

Final score
2 : 0
Result
Lost
Pick
Yokohama FC
Market
1X2
CLV vs fair close
+17.28%
Model prob.
49.8%
Best price
2.16
Min odds
2.05
Stake factor
2.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)
xpGlM967BZ1VU/5tx1n2I5/EQDxz45ly5EgtjwxrliBaXOCSsdGK8+3mfTPg2xWAhbaq9ywc8D7OPxHMXfaiAyLx6hMfGGtDCeA648gvul/gssk3j5f8+Sqdx+3qa5aLETlffrDBItU+iB1DLkYL2sojaHdP8in/U2/qLUhIryWn+Z4dckv2ILmmhWpZRtVuVr10HeRj5UFTSQthWRsrdyk60EHW5VOvXSNA+Ivgevwpuf3T+sCPjkm079SJIBtzjhUb0FM/81Le4fdOP+/R5n/OEVCWDY02EhivdOcki2sKbdwA2UuPw4L2JTvihW23lINfnjgwA3YMQCwsA23mj5Shrx9iVIRrbbVjVcNmDA==
key fingerprint sha256: b49966780f301d96783a042a70f3e784c862c08113d07b1a86079afc83829ace
Decrypt it & read the pick
Decryption key (released after the match)
119e8f2272bac809d4536259e0572bc96d4dc9e3bb385541d4e66a6e0aa52c70
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("xpGlM967BZ1VU/5tx1n2I5/EQDxz45ly5EgtjwxrliBaXOCSsdGK8+3mfTPg2xWAhbaq9ywc8D7OPxHMXfaiAyLx6hMfGGtDCeA648gvul/gssk3j5f8+Sqdx+3qa5aLETlffrDBItU+iB1DLkYL2sojaHdP8in/U2/qLUhIryWn+Z4dckv2ILmmhWpZRtVuVr10HeRj5UFTSQthWRsrdyk60EHW5VOvXSNA+Ivgevwpuf3T+sCPjkm079SJIBtzjhUb0FM/81Le4fdOP+/R5n/OEVCWDY02EhivdOcki2sKbdwA2UuPw4L2JTvihW23lINfnjgwA3YMQCwsA23mj5Shrx9iVIRrbbVjVcNmDA=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("119e8f2272bac809d4536259e0572bc96d4dc9e3bb385541d4e66a6e0aa52c70".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): 119e8f2272bac809d4536259e0572bc96d4dc9e3bb385541d4e66a6e0aa52c70
  • IV / nonce (hex): c691a533debb059d5553fe6d
  • Ciphertext (hex): c759f6239fc4403c73e39972e4482d8f0c6b96205a5ce092b1d18af3ede67d33e0db158085b6aaf72c1cf03ece3f11cc5df6a20322f1ea131f186b4309e03ae3c82fba5fe0b2c9378f97fcf92a9dc7edea6b968b11395f7eb0c122d53e881d432e460bdaca2368774ff229ff536fea2d4848af25a7f99e1d724bf620b9a6856a5946d56e56bd741de463e54153490b61591b2b77293ad041d6e553af5d2340f88be07afc29b9fdd3fac08f8e49b4efd489201b738e151bd0533ff352dee1f74e3fefd1e67fce1150960d8d361218af74e7248b6b0a6ddc00d94b8fc382f6253be2856db794835f9e383003760c402c2c036de6
  • Auth tag (hex): 8f94a1af1f6254846b6db56355c3660c

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