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

Dainava vs TransINVEST Vilnius II

1. Lyga · Lithuania · 28 Jul 2026, 15:00 UTC

Final score
3 : 1
Result
Won
Pick
Dainava
Market
1x2
Model prob.
82.7%
Best price
1.34
Min odds
1.27
Stake factor
1.80

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)
G3Ra2dyN29OrY4i2+WybzONeJC5pXcn2uni9YXXRvBaZtJ2WxhIyAA2QVKj7Iuse7B8GKG6CqioNU7uHqwJMoe6fBOkaC2hwwVJFL0vcEaCZ73rEGlWrFoJTEZ0XIWGbGTLMsuBLz5w8+j9PJGXdw2C9+4E4uCrebUs1axoAZO2sBmM3Mi0GsuNQxkHAcZLjF2kDh/KqBJPyRRY37ORmyqWU2XLIUOQk6VHP6toc7h0NamuQASHKnL/za/GjX5Uh9YQ6B3QqDe/1wQtcGNPyfR3Kc981F6DjOkL8dhR8ZMRF1wi0o8L4RT6YT6I/gl233BtsIgU/6b80rgkQy7geegfFlDkfIMfI
key fingerprint sha256: 52ea197b5cca59f2d0f6c7d5e228c825c6654dbffad14d6c75a69a6c14f3a8fb
Decrypt it & read the pick
Decryption key (released after the match)
d0f2e5ed2deb1dd975f7566f7e9322a91c41945cdf3f7b462b8d8bee27dcd95c
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("G3Ra2dyN29OrY4i2+WybzONeJC5pXcn2uni9YXXRvBaZtJ2WxhIyAA2QVKj7Iuse7B8GKG6CqioNU7uHqwJMoe6fBOkaC2hwwVJFL0vcEaCZ73rEGlWrFoJTEZ0XIWGbGTLMsuBLz5w8+j9PJGXdw2C9+4E4uCrebUs1axoAZO2sBmM3Mi0GsuNQxkHAcZLjF2kDh/KqBJPyRRY37ORmyqWU2XLIUOQk6VHP6toc7h0NamuQASHKnL/za/GjX5Uh9YQ6B3QqDe/1wQtcGNPyfR3Kc981F6DjOkL8dhR8ZMRF1wi0o8L4RT6YT6I/gl233BtsIgU/6b80rgkQy7geegfFlDkfIMfI"), c => c.charCodeAt(0));
const key  = Uint8Array.from("d0f2e5ed2deb1dd975f7566f7e9322a91c41945cdf3f7b462b8d8bee27dcd95c".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): d0f2e5ed2deb1dd975f7566f7e9322a91c41945cdf3f7b462b8d8bee27dcd95c
  • IV / nonce (hex): 1b745ad9dc8ddbd3ab6388b6
  • Ciphertext (hex): f96c9bcce35e242e695dc9f6ba78bd6175d1bc1699b49d96c61232000d9054a8fb22eb1eec1f06286e82aa2a0d53bb87ab024ca1ee9f04e91a0b6870c152452f4bdc11a099ef7ac41a55ab168253119d1721619b1932ccb2e04bcf9c3cfa3f4f2465ddc360bdfb8138b82ade6d4b356b1a0064edac066337322d06b2e350c641c07192e317690387f2aa0493f2451637ece466caa594d972c850e424e951cfeada1cee1d0d6a6b900121ca9cbff36bf1a35f9521f5843a07742a0deff5c10b5c18d3f27d1dca73df3517a0e33a42fc76147c64c445d708b4a3c2f8453e984fa23f825db7dc1b6c22053fe9bf
  • Auth tag (hex): 34ae0910cbb81e7a07c594391f20c7c8

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