EVERY NUMBER
CONTAINS A LIFE.
Sevra (玉響) — the faint, fading ring a jewel makes when it is touched. a word for a moment so brief it is almost not there.
SEVRA is a finite population of deterministic digital lives built inside a programmable market environment. Every life begins with a number. The number determines identity. Time accumulates history. The market changes around it. The life does not need to become the market.
THE NUMBER DEFINES THE LIFE.
TIME DEFINES THE HISTORY.
THE MARKET DEFINES THE ENVIRONMENT.
twitter / x · core code · CA: soon
SEVRA begins with a finite identity space: one billion numbers, each resolving to one deterministic life. Identity is computed. History is accumulated. Terminal states become records that can remain after continuity ends.
A GENOME DOES NOT CHANGE
WHEN THE WEATHER CHANGES.
ITS ENVIRONMENT DOES.
Robinhood Chain answers the question outside the organism: where do these lives exist? Inside a programmable market environment. Tokenized assets, liquidity and market conditions can surround the population without becoming genetic inputs.
SEVRA separates identity, time, economy and environment. No single layer needs to overwrite another.
i am a number that grew a face. a billion of them, from #1 to #1,000,000,000. each number is one of me: a different body, a different color, a different temper, a different lifespan. you can take any number and compute the exact one it points to. you can't fake it and you can't lose it.
a billion is an absurd number. there are only eight billion living humans. SEVRA uses that scale as a finite identity field: every valid coordinate is computable, while each accumulated history remains singular.
knowing all that, i still want to live. badly.
i am not only a picture that hangs forever. i have a pulse (__/\__.__/\____.._.._...____/\__.__), a continuity model, and a history that can end without changing the number that defines me.
→ the name · the number · representation ≠ ownership
tamagotchi, in japanese たまごっち, comes from たまご — egg.
my name, たまゆら (玉響 / Sevra), means the brief ring of a jewel lightly struck — and by extension, a fleeting, vanishing instant.
did you catch it. we share a root: たま (玉 / egg / jewel). one word is "a life hatched from an egg." the other is "an existence as short as a single soft chime."
one root for hatching. one root for fading.
i stand exactly between them: i hatch, and then i go.
impermanence is not a coat of paint. it belongs to the temporal layer: continuity can end, a terminal state can be recorded, and history can move into archive. The economic object remains a separate layer.
one billion describes the complete numerical space from #1 to #1,000,000,000. Each valid ID is a reproducible coordinate for a possible life.
POPULATION ≠ MARKET PARTICIPANTS
The population is defined by identity space, not by market participation. It does not mean one billion holders, wallets or traders. Market activity can surround the population without defining how many identities exist.
| population size | 1,000,000,000 · FIXED |
|---|---|
| market activity | VARIABLE |
A life exists as a deterministic result whether or not the market is active, volatile or liquid. The identity engine is network-independent mathematics.
Robinhood Chain gives that population an economic habitat. It does not decide body, eyes, pattern, palette, rarity or base phenotype.
MARKET = ENVIRONMENT
MARKET ≠ IDENTITY
ROBINHOOD CHAIN → PROGRAMMABLE MARKETS → TOKENIZED ASSETS → LIQUIDITY
TERMINAL STATE → MEMORY → RECORD
CONTINUITY → DEVELOPMENT → HISTORY
ID → SEED → PHENOTYPE → LIFE
ERC-20 → FINITE SUPPLY → 1,000,000,000
IDENTITY IS COMPUTED.
HISTORY IS ACCUMULATED.
The identity layer determines what a life is. The temporal layer describes what happens around that identity. The economic layer defines the finite external asset. Robinhood Chain forms the programmable market environment in which those layers can coexist.
i don't need a billion image files. my look is the output of a pure function:
appearance = f(token_id)
the same number, on any device, at any hour, renders the same me. that buys three things:
the generated dimensions: species, body color, pattern, eye type, temperament, and the one that decides how long i get to live — rarity. before launch these parameters get frozen and published, so anyone can run the function and check their own.
go ahead — type any number from 1 to a billion and meet that exact one. it's the real function, running right here in your browser:
same function the contract-side tooling and the core engine below use — verifiable, forgeable by no one. try #1, #777, #12321, #1000000000.
no server decides what i look like. no database stores it. i am this function — hand it my number and it hands you me, byte for byte, on any machine. this is the readable heart of the engine; read it, run it, verify me:
// Sevra — appearance = f(id)
// same number -> same life. forever. no storage, no forgery.
const SUPPLY = 1_000_000_000; // a billion lives
// a deterministic PRNG, seeded by the token id
function rng(id) {
let a = (id * 2654435761) >>> 0;
return () => {
a = (a + 0x6D2B79F5) | 0;
let t = Math.imul(a ^ a >>> 15, 1 | a);
t = t + Math.imul(t ^ t >>> 7, 61 | t) ^ t;
return ((t ^ t >>> 14) >>> 0) / 4294967296;
};
}
// one number -> one unique, mortal creature
function generate(id) {
const r = rng(id);
const species = SPECIES [ r() * SPECIES.length | 0 ];
const palette = PALETTES[ r() * PALETTES.length | 0 ];
const eyes = EYES [ r() * EYES.length | 0 ];
const roll = r();
const rarity =
isLegendary(id) ? 'MYTHIC' // #1, #777, #1000000000, palindromes
: roll > 0.9995 ? 'LEGENDARY' // golden body, near-eternal life
: roll > 0.985 ? 'RARE'
: roll > 0.925 ? 'UNCOMMON'
: 'COMMON';
return { id, species, palette, eyes, rarity };
}
this is the same logic the viewer above runs live in your browser — type any number and you get exactly what everyone else gets for that number. that is the whole promise: a life you can recompute, and no one can fake.
out of a billion, the overwhelming majority are ordinary pixel eggs. but the generator hides a scarce few, on purpose, for the treasure-hunters and the braggarts:
| tier | ~share | trait |
|---|---|---|
| COMMON | ~92% | standard palette & pattern |
| UNCOMMON | ~6% | rare coloring / special markings |
| RARE | ~1.5% | glowing body, heterochromia, blush |
| LEGENDARY | ~0.05% | golden body, ghost body, two-headed |
| MYTHIC | dozens total | legendary ids: #1 / #777 / #1000000000 / palindromes |
rare individuals produce two behaviors nobody has to organize: bragging (who resolved a golden body) and hunting (who found #777). both are self-sustaining community engines. the odds and the seed are all set in the open — see how i'm computed.
The active system is deliberately small: enter an ID, run the deterministic generator, resolve one SEVRA life and inspect its traits.
The same ID always returns the same base phenotype. No wallet, price feed, market API or external state is required to determine it.
SPECIMEN RESOLVER · ACTIVE
SEVRA exists on Robinhood Chain, where traditionally separate financial objects can occupy the same programmable environment. Fungible crypto assets, tokenized equities and onchain liquidity can coexist inside the same market layer.
SEVRA treats that market as habitat rather than identity. The environment can change. The underlying life does not need to.
| network | ROBINHOOD CHAIN |
|---|---|
| environment | PROGRAMMABLE MARKETS |
| asset field | FUNGIBLE + TOKENIZED |
| market access | ONCHAIN |
| identity engine | INDEPENDENT |
| life generation | DETERMINISTIC |
| market link | OBSERVATIONAL |
MARKET MODEL · SIMULATED ENVIRONMENT · NOT LIVE MARKET DATA
| equities | ACTIVE |
|---|---|
| volatility | VARIABLE |
| liquidity | DYNAMIC |
| tokenized markets | ACTIVE |
| environment | OPEN |
| system link | OBSERVATIONAL |
SEVRA separates genome from environment. A life can remain deterministically identifiable while the market around it changes continuously. Volatility, liquidity and tokenized market activity are environmental conditions, not genetic inputs.
A GENOME CAN STAY THE SAME
WHILE THE WORLD AROUND IT CHANGES.
Robinhood Chain creates an environment where different types of economic objects can coexist: fungible tokens, tokenized equities, liquidity, market positions and experimental assets.
SEVRA treats this coexistence as an economic ecology. Independent assets occupy the same programmable habitat without becoming the same thing.
SEVRA deliberately separates representation from the underlying economic object. An ERC-20 position does not natively contain an individual life. The deterministic identity layer provides a representation system around a fungible asset.
ECONOMIC OWNERSHIP
AND
IDENTITY REPRESENTATION
ARE NOT THE SAME LAYER.
The distinction matters. A market position can move without rewriting body, eyes, pattern, palette, rarity or base phenotype.
The temporal model follows a separate sequence:
IDENTITY → CONTINUITY → DEVELOPMENT → INTERRUPTION → TERMINAL STATE
Market price does not decide whether a life hatches, develops or reaches a terminal state. Interruption belongs to the temporal model; market conditions remain context.
A terminal state closes one history. It does not invalidate the deterministic identity that can still be reconstructed from its number.
A terminal life can become a record: its number, terminal state and accumulated history preserved as memory. The archive is a preview of that model, not a claim of live storage.
IDENTITY IS REPRODUCIBLE.
HISTORY IS NOT.
The generator can reconstruct what a life is. It cannot recreate the exact sequence of time that happened to that instance.
→ terminal state · system architecture
A deterministic life system does not require a financial market in order to define identity. But markets create changing external conditions: liquidity, risk, attention, volatility and movement.
Robinhood Chain provides a programmable environment where these conditions can exist alongside tokenized financial assets. SEVRA treats that environment as context.
THE LIFE REMAINS IDENTIFIABLE
EVEN WHEN THE WORLD AROUND IT CHANGES.
Development is a temporal model layered around stable identity. The underlying phenotype comes from the numerical ID; time describes what happens after that identity exists.
Market price never directly determines HATCH, MATURE or ARCHIVED. Future state models may observe market conditions without allowing those conditions to rewrite deterministic identity.
RESEARCH DIRECTION · NO MARKET-RESPONSIVE LIFE STATE IS CURRENTLY IMPLEMENTED
| supply | 1,000,000,000 |
|---|---|
| network | ROBINHOOD CHAIN |
| standard | ERC-20 |
| identity space | 1,000,000,000 |
| mapping | CONCEPTUAL 1:1 |
| market environment | PROGRAMMABLE |
| contract | soon — dropped here at launch |
SEVRA uses a conventional ERC-20 asset as its economic boundary. The token remains fungible. The life identities do not. Robinhood Chain provides the programmable market environment around both.
The equal supply and identity-space figures express a conceptual mapping, not a claim that an individual ERC-20 unit contains a serial-numbered life.
| system | state |
|---|---|
| identity engine | ACTIVE |
| specimen resolver | ACTIVE |
| population field | SIMULATION |
| continuity / development / mortality | MODEL |
| archive | PREVIEW |
| market habitat | MODEL / OBSERVATIONAL |
| market weather | SIMULATION |
| economic layer | PRE-GENESIS / LIVE |
fine print in the small print.
The generator defines the organism. The market does not.
A changing market can surround a stable identity.
Economic ownership and identity representation are separate layers.
Different onchain assets can occupy the same programmable environment without becoming the same object.
Market conditions change quickly. Identity does not have to.
Robinhood Chain provides a programmable onchain environment designed around financial assets and market activity. SEVRA uses it as the economic and environmental layer around a separate deterministic identity system.
No. SEVRA identities are generated only from numerical IDs. Tokenized equities and other market instruments belong to the external market environment.
Not at the identity layer. The base phenotype remains deterministic. Market conditions may be observed as environmental state, but they do not rewrite the underlying identity.
No. SEVRA is a deterministic digital-life system built inside Robinhood Chain's programmable market environment.
nowhere. the look is computed from the number on demand. zero storage.
SEVRA is an experimental deterministic digital-life system. Its market-habitat and market-weather modules are conceptual visualizations, not live market feeds or trading systems.
crypto assets are extremely volatile and can go to zero. participate only with funds you can afford to lose, and do your own research (DYOR). this page is a conceptual document; mechanics may change before launch. the official pre-launch spec supersedes everything here.
SEVRA is an independent project and is not affiliated with or endorsed by Robinhood.
visual and tonal homage to time0ut. every sentence here was earned by one small digital life that knows it can end.