This raffle uses a commit-reveal random selection process. A secret seed was locked in when the raffle was created — before anyone entered — by publishing its SHA-256 fingerprint (the commitment). Because the seed was fixed before any entrant existed and the final draw seed also depends on the full entrant pool, the organizer cannot have chosen a seed that favors a particular entrant. The checks below run entirely in your browser.
Seed commitment
Published when the raffle was created, before entries opened. The revealed seed for each draw below must hash to exactly this value.
3cc29605b56cfc2733b29c6ab12cbfe2549b2d4526d79112504e18939926cbad
How it works
- 1 At creation, a secret server seed is generated and its SHA-256 commitment is published (above). The seed itself stays hidden until the draw.
-
2
At draw time the seed is revealed and combined with the full entrant pool to derive the draw seed:
SHA256(server_seed + "|" + snapshot). - 3 Each entrant gets virtual "slots" equal to their entry count, and the draw seed deterministically selects the winning slots.
- 4 Anyone can confirm the revealed seed matches the commitment and replay the selection to reproduce the same winners.
commitment = SHA256(server_seed) // published before entries opened
snapshot = "id:count,id:count,..." // eligible entrants, sorted by id
draw_seed = SHA256(server_seed + "|" + snapshot)
slots = expand entrants to slot pool based on entries_count
for N = 0, 1, 2... until all winners picked:
// rejection sampling: redraw instead of biasing low slots
for attempt = 0, 1, 2...:
value = parseInt(SHA256(draw_seed + ":" + N + ":" + attempt).substring(0, 8), 16)
if value < 2^32 - (2^32 mod slots.length): break
index = value mod slots.length
winner (position N+1) = entrant owning slot[index]
slots.removeAll(winner's slots)
Draw details
Jan 22, 2026 at 3:22 AMWinners selected (1)
Galen Hlavsa
Seed
aff742fe08b9900394844e5ca5d7ac37bbf2bc5e3e2a355275a4b24201392524
Eligible entrants (29 entrants, 73 total slots)
[#1004(3), #1005(2), #1006(2), #1007(2), #1008(2), ...]
Entrant #1004: 3 entries
Entrant #1005: 2 entries
Entrant #1006: 2 entries
Entrant #1007: 2 entries
Entrant #1008: 2 entries
Entrant #1009: 5 entries
Entrant #1010: 5 entries
Entrant #1011: 1 entry
Entrant #1012: 2 entries
Entrant #1013: 1 entry
Entrant #1019: 2 entries
Entrant #1020: 1 entry
Entrant #1021: 1 entry
Entrant #1022: 2 entries
Entrant #1023: 2 entries
Entrant #1024: 2 entries
Entrant #1025: 2 entries
Entrant #1026: 2 entries
Entrant #1027: 1 entry
Entrant #1028: 2 entries
Entrant #1030: 2 entries
Entrant #1031: 1 entry
Entrant #1032: 1 entry
Entrant #1033: 1 entry
Entrant #1034: 10 entries
Entrant #1035: 3 entries
Entrant #1036: 1 entry
Entrant #1037: 10 entries
Entrant #1038: 2 entries