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

Virginia Dream vs Virginia Beach City

NPSL · United States · 03 Jul 2026, 21:30 UTC

Final score
3 : 1
Result
Won
Pick
Virginia Dream
Market
1x2
Model prob.
72.3%
Best price
1.54
Min odds
1.46
Stake factor
1.90

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)
9LMfgmnKil3vk3RVrjq+nJwCZPPGZhQqKXboeggXjeZGxXyanePUKVkoseToUkJ9b7/ajFOcU+zPSQjjYmt8vcvo42H20YFHG1bdtvuFvUFqAhuxJol3mDZIFEeJJ5ZLgvevrK84uzKXjoQICR/Ut9JJTV3/HiVgd8vpeiyp0piTZNdD5Mjo0QTbORBRd/8HS24dn1lphW5UVdO+cG89MV5ra0qsYHiCWoaesy8vwBVepZPH+3tmlQH3Za0v8EWX9plNplRxvXOnLC9XtV47VAswIOtg++j46Nv93j0/iTXmg5Cvm40oBqBDO3+Tj/HmXQhzK3mM90DOKd+JIc/At31UhgC0HEckBgggb3Y4Ug==
key fingerprint sha256: a004fb0572f03d8b565ab0c1d692ff72b2380c3b03f4ee5b87cdad9aae0b4773
Decrypt it & read the pick
Decryption key (released after the match)
a2080702d631368b8178fa7c972f580d4cc6abdbf60bb2bab2d8a190ad4135b2
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("9LMfgmnKil3vk3RVrjq+nJwCZPPGZhQqKXboeggXjeZGxXyanePUKVkoseToUkJ9b7/ajFOcU+zPSQjjYmt8vcvo42H20YFHG1bdtvuFvUFqAhuxJol3mDZIFEeJJ5ZLgvevrK84uzKXjoQICR/Ut9JJTV3/HiVgd8vpeiyp0piTZNdD5Mjo0QTbORBRd/8HS24dn1lphW5UVdO+cG89MV5ra0qsYHiCWoaesy8vwBVepZPH+3tmlQH3Za0v8EWX9plNplRxvXOnLC9XtV47VAswIOtg++j46Nv93j0/iTXmg5Cvm40oBqBDO3+Tj/HmXQhzK3mM90DOKd+JIc/At31UhgC0HEckBgggb3Y4Ug=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("a2080702d631368b8178fa7c972f580d4cc6abdbf60bb2bab2d8a190ad4135b2".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): a2080702d631368b8178fa7c972f580d4cc6abdbf60bb2bab2d8a190ad4135b2
  • IV / nonce (hex): f4b31f8269ca8a5def937455
  • Ciphertext (hex): ae3abe9c9c0264f3c666142a2976e87a08178de646c57c9a9de3d4295928b1e4e852427d6fbfda8c539c53eccf4908e3626b7cbdcbe8e361f6d181471b56ddb6fb85bd416a021bb126897798364814478927964b82f7afacaf38bb32978e8408091fd4b7d2494d5dff1e256077cbe97a2ca9d2989364d743e4c8e8d104db39105177ff074b6e1d9f5969856e5455d3be706f3d315e6b6b4aac6078825a869eb32f2fc0155ea593c7fb7b669501f765ad2ff04597f6994da65471bd73a72c2f57b55e3b540b3020eb60fbe8f8e8dbfdde3d3f8935e68390af9b8d2806a0433b7f938ff1e65d08732b798cf740ce29df8921cfc0
  • Auth tag (hex): b77d548600b41c47240608206f763852

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