Amoeba
last even · Project 182 · Factory
Edition size: 213 · Mint date: 28 October 2021
The work and its context
Amoeba is Art Blocks project 182 on the contract at 0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270, on Ethereum mainnet, credited to last even. The public index returns 213 invocations against a maximum of 213, a declared dependency of p5@1.0.0, an aspect ratio of 1, a licence string of CC BY with a null licence link, and a display_static value of false 1. The collection page describes it as an Art Blocks 500 release in the Factory category, a fixed edition of 213 unique artworks, released on 29 October 2021, and it carries a View live control at the head of the page 2.
Unlike most of the projects in this batch, the display_static value of false is simply correct. Amoeba is genuinely, continuously animated. At the live renderer the canvas changed between every pair of samples taken three and four seconds apart, on every one of the four tokens observed, while the frame counter advanced at roughly sixty frames a second 3. There is no settling, no final state, and no moment at which the work is finished.
What moves is a ribbon. One hundred and sixty copies of a single small shape are laid along a closed path, each at its own phase, each tinted by interpolation through a short palette, and the whole arrangement is advanced continuously so that the copies slide along the path and the ribbon appears to turn in space. The shapes are drawn as outlines at very fine stroke weights and composited with a screen or hard-light blend, so where the ribbon crosses itself the strokes brighten rather than occlude. The result reads as a moire surface: a torus, a pinched lobe, a knotted loop, depending on the token.
The mint description is short and functional, and it does three useful things. It states the intent, "a study of repetition, patterns, and harmony", and describes the method in one sentence: the code repeats simple shapes in different positions and sizes until they build up. It instructs the viewer to "View in live mode to watch it dance". And it documents the controls: press 1 to 4 to adjust rendering quality, press 's' to take a snapshot 12.
All three claims hold up. The quality keys were exercised in order at the live renderer and set the resolution scale to 1, 0.75, 0.5 and 0.25, resizing the canvas from 1324 by 1820 device pixels down to 331 by 455 and back 3. The save key exists in the same handler and was deliberately not pressed, because it initiates a file download.
One structural fact about the work is worth stating here because it affects every reproduction of it. The index reports an aspect ratio of 1, but the sketch does not make a square. It creates a canvas the size of the whole browser window and re-creates it on every resize, so the artwork is whatever shape the viewer's window is. At the live renderer in a portrait pane the canvas measured 1324 by 1820 device pixels 3. A square thumbnail of an Amoeba token is a crop or a letterbox of something that had no fixed proportions to begin with.
The naming is slightly unsettled across the platform's own surfaces and a catalogue should pick one form deliberately. The index records the artist name as last even, the slug is amoeba-by-last-even, the collection page header credits last-even, and the page title renders Amoeba by last even 12. This package uses the hyphenated form in the slug because that is the canonical identifier, and credits the artist as last even because that is what the index returns.
Conception and development
There is very little published about how this work came to be, and the gap is not for want of looking. The indexed artist_interview field is null 1. The website recorded against the project is https://lasteven.xyz 1, and it does not load: two navigation attempts from the browser pane, at 2026-09-18T22:03Z and again a minute later, both failed to reach the host 3. The link of record for this project is dead, and a cataloguer following it will find nothing.
That leaves the mint description as the only statement by or about the artist, and it is four sentences long. Read carefully it still says something. The three words it chooses for the subject are repetition, patterns and harmony, and all three turn out to be load-bearing in the program rather than decorative. Repetition is the 160 copies of one shape. Patterns is the pair of sinusoids that place them. Harmony is literal: the colour palettes are built by adding fixed angular offsets to a base hue, and the offsets are the intervals of colour theory, so a token's palette is a complementary pair, a triad, a tetrad, a split complement, an analogous cluster or a near monochrome. The published trait for that choice is called harmony and its values are those six names 4.
The description's instruction to "View in live mode to watch it dance" is a request, in 2021, for a way of showing the work that the platform's default presentation does not give. This matters more than it sounds. The still preview that most surfaces show is a single arbitrary instant of a continuous motion that has no canonical frame. There is no equivalent, in this work, of the finished composition that a still-rendering project produces.
The charity clause is the one dated commitment in the record: 25 per cent of sales for the first 24 hours to Meals For Unity, described as a nonprofit grassroots organisation working on food insecurity in the New York City area 12. The mint section below shows how much of the edition that window actually covered, which turns out to be less than a third.
Beyond that, the honest position is that the conception of this work is undocumented. No development account, no process notes, no interview, and a dead artist site. What can be said about the artist's intentions has to be read out of the program, and the construction section does that rather than speculating.
How the work was constructed
The script was retrieved as the script field of the projects_metadata row for 0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270-182, from the Art Blocks public GraphQL index, on 2026-09-18 at 07:47:45Z 1. It is 3,259 bytes, the smallest program in this batch, and its SHA-256 digest, computed in the browser over the exact returned bytes using the Web Crypto API, is 835b79ebfb2da2b3de118e6dbe02d4346b5f1b52301f5452abcf5510d26f3eaf 3. The row reports script_count of 1 and the declared runtime is p5@1.0.0 1. The program is minified to single-letter identifiers but is not packed, so it can be read directly without execution. No artist code is reproduced here.
The seed is taken as parseInt(hash.slice(0, 16), 16). That slice includes the 0x prefix, which JavaScript's parseInt tolerates at radix 16, so the value parsed is the first fourteen hexadecimal digits of the hash. Fourteen hexadecimal digits is fifty-six bits, which exceeds the fifty-three bits a double-precision float can represent exactly, so the seed as computed is already a rounded approximation of those digits before the generator touches it. The generator's first operation then coerces it to a signed 32-bit integer, which discards most of what survived. The net effect is that the program draws its seed from a large slice of the hash and then keeps far less of it than the slice suggests, and the shape of the loss is not something a reader would predict from the expression.
The generator itself is a three-shift xorshift, and its output step is the more consequential defect. It returns the absolute value of the 32-bit state modulo 1,000, divided by 1,000. Every random number this work uses is therefore one of exactly 1,000 values. That is a very coarse quantisation for a program that uses its randomness to choose a hue in 360 steps and to index six weighted tables, and it is the reason the published baseHue distribution is spread thinly and unevenly across the 360 possible values rather than smoothly 4.
Selection is done by two helpers. One picks uniformly from an array. The other is a weighted picker: it sums the weights, draws an integer up to that sum, and walks the array subtracting weights until the running total goes non-positive. Three weighted tables exist, for the brush shape, the palette scheme and the colour harmony, and their weights are the whole of the rarity structure of the edition.
Five small lookup tables hold the motion parameters, keyed by short numeric names, and the program picks one key from each. Four of those five choices are published as traits and one is not. Running an independent reimplementation of the exact draw order against all 213 token hashes matched the published traits key for key: the five-option table reproduces offset on 213 of 213 tokens, and the three remaining four-option tables reproduce shift, size and speed on 213 of 213 each 4. The fifth table, which holds four sign pairs and controls the direction in which each of the two placement sinusoids runs, has no published trait at all. A quarter of the work's motion vocabulary is invisible to anyone reading the metadata.
The brush table reproduces brush on 213 of 213 tokens, and its six entries are a circle at weight 32, a square at 12, a triangle at 12, a rounded square at 4, a pair of crossed lines at 2, and a compound form at 2 that draws an offset circle with a heavy stroke and a nearly transparent fill 4. Those weights are why circle accounts for 113 of the 213 tokens and the compound form for 7. The base hue reproduces on 213 of 213 as a direct integer draw in the range 0 to 359 4.
The palette is where the work becomes interesting. Four branches exist. Two are coloured: one builds its hues at full saturation and 50 per cent lightness over a very dark ground of the same hue and composites with a screen blend, the other at 33 per cent lightness over a near-white ground of the same hue with a hard-light blend. Both carry weight 31. The remaining two branches carry weight 1 each and are fixed greys: black and mid-grey over white with a multiply blend, and white and mid-grey over black with a screen blend.
Three things follow, and all three were checked. First, the published coloring trait has only three values, halogen, neon and ghost, for four branches: the two grey branches share the single name ghost 4. Second, the edition contains exactly two ghost tokens, and both of them are the white-on-black branch. The black-on-white branch was drawn zero times in 213 invocations 43. With a weight of 1 in 64 that outcome has a probability of about one in twenty-eight, so it is unremarkable as chance and remarkable as a fact about the edition: one of the artist's four palettes exists only in the source code. Third, the published harmony trait is overridden on the ghost tokens. Both of them report monochrome regardless of which harmony table entry the draw selected, and with that override the harmony trait reproduces on 213 of 213 4.
The grey branches carry a second defect, and this one is visible. Both coloured branches assign the global that scales the stroke weight; neither grey branch does. On a ghost token that global is therefore still undefined when the sketch calls strokeWeight with it, so the call receives a NaN and the canvas keeps whatever line width it already had. Reading the running instance on both ghost tokens confirmed the state directly: the stroke-weight global reported undefined and the canvas context's line width read 1 3. The consequence is not cosmetic. On every other token the stroke weight is computed from the canvas size, so the strokes scale with the display; on the two ghost tokens they do not, and the work is drawn in hairlines one device pixel wide no matter how large the screen is. The p5 reference documents the normal behaviour of the function, which is what makes the deviation legible 5.
The motion is driven by wall-clock time rather than by a frame counter. The program records the moment it loads and, on every frame, computes the elapsed milliseconds since then. That choice has a consequence worth recording for anyone reproducing the work: the trajectory is a function of real elapsed time, so a viewer whose machine drops frames sees the same positions at the same instants as a viewer whose machine does not, merely less smoothly. It also means each load replays the same motion from the same starting point, because the elapsed count begins at zero. The work is therefore reproducible in a way that a frame-counted animation is not, and arbitrary in a different way: there is no privileged instant to capture.
Each frame clears the canvas, fills the background, translates to the centre, applies a fixed rotation drawn at setup, and then places the 160 shapes. A shape's radius is a constant plus two sinusoids of the elapsed time and the shape's own phase; its position is a further pair of sinusoids, one for each axis, whose frequencies come from the selected tables and whose signs come from the unpublished fifth table; its colour is a linear interpolation between two adjacent palette entries at a position that also advances with time; and it is rotated about its own centre by its phase, in a direction given by a sign drawn at setup. There is no accumulation between frames, so the image is redrawn from nothing sixty times a second.
Interaction is handled by a single listener on the deprecated keypress event. Digits 1 through 4 set the resolution scale and force a canvas resize, and 's' calls the p5 canvas save. There is no mouse or touch handling, no audio library, and no external fetch beyond the declared p5 dependency. The renderer page contains no audio or video elements and p5.SoundFile is undefined in the running instance, so the work is silent by construction 3.
The mint
The index records activation at 2021-10-23T18:04:15Z, a public opening at 2021-10-28T19:00:00Z, and completion at 2024-02-20T02:10:11Z 1. The collection page states a single date, 29 October 2021 2, which is the opening instant rendered in a timezone ahead of UTC and is therefore the same moment described differently rather than a fifth event.
As with the LIA project in this batch, the first mint precedes the recorded activation. Token 182000000 was minted at 2021-10-15T03:57:44Z 4, eight days before activation and thirteen days before the public opening, by the address the index records as the artist's 14. It is the only token minted before the opening. Whatever activated_at marks in this index, it is again not the first acceptance of a mint, and the pattern now holds across two independent projects.
The sale price is recorded as 100000000000000000 wei, or 0.1 ETH 1, and no auction schedule appears anywhere in the description, so this project appears to have been a fixed-price release rather than a Dutch auction. No source consulted states the mechanism explicitly, and this package does not assert one; what it records is that the index reports a single price and the description describes none.
Taking the opening as the start endpoint and the final mint as the end endpoint, the public phase ran from 2021-10-28T19:00:00Z to 2024-02-20T02:10:11Z, a span of 844.30 days, and covered 212 mints 4. That figure is close to meaningless without the shape behind it. The first public mint came at 2021-10-28T19:19:39Z, 19.65 minutes after the opening. Anchored on the opening, 47 tokens were minted within the first hour, 70 within the first day, 106 within a week, 131 within thirty days and 195 within a year, leaving 17 to trickle out across the following fourteen months 4. The median mint fell on 2021-11-04T21:26:43Z, a week after the opening 4. This is a long, slow edition: a third of it sold in a day and the last tenth took more than a year.
That shape bears directly on the charity clause, which is the only quantified commitment in the record. The pledge was 25 per cent of sales for the first 24 hours 12. Seventy public mints fall inside that window and 142 fall outside it 4. Two thirds of the edition was sold after the clause expired. The clause is not thereby diminished, but a dossier that repeats it without the window will leave readers with an impression of the project's charitable footprint that is about three times too large.
Across the 213 tokens the index reports 170 distinct owner addresses 4, so the edition is fairly widely held for its size. The artist address still holds four tokens: invocations 0, 69, 88 and 212, the last of which is the final invocation 4.
The Art Blocks 500 wallet set was refreshed once this session from the platform's own profile index, by querying the ab5d user profile for its linked accounts. The query returned three linked addresses and all three were checked against every one of the 213 token rows 64. Exactly one token in this edition sits in that set: token 182000181, invocation 181, held by 0xdd19308a9731cdecb67e0d80ca6823394208c045 and minted at 2022-07-17T02:46:59Z 76. That mint date is worth noting on its own. It falls nearly nine months after the opening, deep in the long tail, which is a reminder that the AB500 holding in a slow edition need not be a primary-sale acquisition at all.
Copyright and licensing
The index records a licence string of CC BY for this project, with a link_to_license of null 1. That is the least specified licence value encountered anywhere in this batch, because CC BY names a family rather than a licence: Creative Commons has published Attribution licences at versions 1.0, 2.0, 2.5, 3.0 and 4.0, in unported and in many ported forms, and the record picks none of them. There is no version, no jurisdiction and no link.
This package therefore treats the identifier as reported rather than verified, and reads the terms from the canonical deed for the current version, Attribution 4.0 International, on the explicit understanding that the record does not say that is the version meant 8. At 4.0 the terms are permissive: share and adapt, in any medium, for any purpose including commercially, subject to attribution, with a prohibition only on applying additional legal or technological restrictions 8. If the intended version were an earlier one the practical effect would be similar but not identical, and nothing in the project record resolves the question.
Three rights domains should be kept apart, as elsewhere in this batch.
The first is the artwork. A permissive attribution licence on the images is the most likely reading of a licence string recorded on the project, and if 4.0 is the version meant it would permit commercial reuse and adaptation, which is a materially different position from the NonCommercial and ShareAlike terms attached to other projects in this batch. That difference is exactly why the missing version number matters, and why it should not be papered over. The record states no terms for holders, no terms of sale, and no link.
The second is the artist's code. The program is retrievable from the index, which establishes visibility and nothing else. No licence statement or copyright notice appears anywhere in the program text. Accordingly no artist code is reproduced in this package; what is returned instead is a description of the mechanism, the byte count, the digest, and reproductions of the published traits that can be independently checked against the index without holding a copy of the script.
The third is the dependency. The work declares p5@1.0.0 and does not render without it. The library is supplied by the renderer at view time and carries its own licence, which is not the project's licence and is not stated in the project record. This session consulted the p5.js reference for the documented behaviour of the stroke-weight function in order to characterise the defect described above 5, and did not establish the library's licence terms.
One further point belongs here rather than in the construction section, because it is a rights question in practice even though it looks like a display question. The work has no canonical frame. Any still of an Amoeba token is a capture of one instant of a continuous motion, chosen by whoever captured it, at whatever window proportions their browser happened to have. Under a permissive attribution licence that capture is probably a permitted use; under a NoDerivatives term it might not be. Since the version is unstated, a cataloguer cannot currently determine which regime applies to their own thumbnail.
Close reading of examples
Four tokens were examined at the live renderer at generator.artblocks.io, each identified first by a TokensByIds query against the index so that hash, owner, mint time and published traits came from a response rather than from memory 7, and each opened at its canonical Art Blocks token page, all four of which returned HTTP 200 on a real fetch from the artblocks.io origin 3. All four were observed with the browser pane displayed, so the page's own animation loop drove every observation and no manual frame stepping was needed. In each case the sketch's own global variables were read alongside the pixel sampling, so the published traits could be checked against the values that actually produced the image.

Token 182000181 is the Art Blocks 500 holding, and it was the first sustained observation. Its hash begins 0x97c6026d and it was minted at 2022-07-17T02:46:59Z to 0xdd19308a9731cdecb67e0d80ca6823394208c045 7. Its published traits are base hue 149, triangle brush, halogen colouring, split-complementary harmony, jumpy offset, enigma shift, pinch size and reserved speed 7. Reading the live sketch confirmed each of them against the mechanism: the motion table keys read as the ones that reproduce enigma, jumpy, reserved and pinch respectively, and the palette read as three colours, a green, a magenta and a red, over a near-white ground with a hard-light blend 3. Those three colours are the arithmetic made visible. The base hue is 149; the split-complement offsets are plus and minus 150 degrees; and the palette the sketch built is hue 149, hue 299 and hue 359. On screen it is a portrait canvas holding three lobes of fine triangular hatching, red above, green to the lower right, magenta in the overlap, meeting at a dark node near the centre where all three cross.
The same token carried the controls test. With the pane displayed and the animation running, the four quality digits were dispatched in the order 3, 2, 4, 1. The resolution scale read 0.5, 0.75, 0.25 and 1 in turn, and the canvas resized to 662 by 910, then 993 by 1365, then 331 by 455, then back to 1324 by 1820 device pixels 3. The description's claim about the controls is exactly right, and the work is the only one in this batch whose published control does something structural rather than aesthetic. The save key sits in the same handler and was not pressed, because it initiates a download.

Token 182000037 is one of exactly two ghost tokens in the edition, and it was the second sustained observation. Its hash begins 0xeec9f7f7 and it was minted at 2021-10-28T19:46:16Z to 0x3e5da3e1f890c94312bc21a443f06eeccbcca9f1 7. On screen it is a white wireframe knot on pure black: a torus of fine circles seen at an angle, folded through itself twice, with a second smaller loop passing through the opening. A strided census of 24,843 sampled pixels returned zero with a channel spread above 12, so the image is exactly greyscale 3. The live palette read as white and mid-grey over a black ground with a screen blend, which identifies it as the fourth palette branch, and the stroke-weight global read undefined with the canvas line width at 1 3. This is the token that makes the undefined-stroke defect visible: its lines are hairlines, they do not thicken with the canvas, and the effect is a good deal more delicate than anything the coloured branches produce.
Its published traits record a base hue of 146 and a harmony of monochrome 7. The base hue is real in the sense that the draw happened, and entirely inert in the sense that the palette branch it landed in discards the hue and uses fixed greys. A collector sorting this edition by base hue will find this token filed under a colour that never appears in it.

Token 182000161 is the other ghost, and observing it settled the question of whether both greys occur. Its hash begins 0xe6c82ba1 and it was minted at 2022-07-02T18:37:07Z to 0x14a493e5fd5988d7a9a569c9f1728ac717db92d1 7, nearly nine months after the first one. Its live palette read identically to token 182000037, white and mid-grey over black with a screen blend, with the same undefined stroke-weight global and the same line width of 1, and the same zero chromatic pixels out of 24,843 sampled 3. Both ghost tokens in the edition are the same branch. The black-on-white palette, the one that would have produced dark figures on a white field with a multiply blend, was never drawn.

Token 182000008 shows the rarest brush. Its hash begins 0x13b5cedd and it was minted at 2021-10-28T19:32:53Z to 0xf7a2843e1c03764f453e8e51b3d2a76c5245a2cb 7. Its published traits are base hue 220, blob brush, halogen colouring, triad harmony, shy offset, undulating shift, amoeba size and oriented speed 7. The live palette read as a deep blue, a crimson and a green over a near-white ground 3, which is hue 220 with the triad offsets of plus and minus 120 applied, giving 340 and 100. Because the blob brush draws a displaced circle with a heavy stroke and a nearly transparent fill, the 160 copies overlap into two large solid-looking lobes rather than a hatched ribbon, one crimson and one blue-green, joined at a dark waist. It is the token in this group that most resembles the thing the project is named after, and the mechanism that produces it is a single extra entry in the brush table that occurs on 7 of 213 tokens 4.
Significance and limitations
The most useful thing this project demonstrates is how much of a generative edition can be invisible to the people cataloguing it. Amoeba publishes eight traits and the reimplementation here reproduces all eight on all 213 tokens, which is a complete account of the metadata. It is not a complete account of the work. One of the five motion tables, the one that sets the direction of travel of both placement sinusoids, is never named; one of the four palettes was never drawn; one published trait, the base hue on ghost tokens, records a number the renderer discards; and the published coloring vocabulary collapses two visually distinct palettes into a single word. A collector sorting this edition by its traits is sorting by a description that is accurate and incomplete in four separate ways, and none of those four is discoverable without reading the program.
The second contribution is a clean example of a defect that changes how a work should be displayed. The two greyscale tokens never receive a stroke weight, so they are drawn at the canvas default of one device pixel while every other token's strokes are computed from the canvas size. On a phone this is invisible. On a wall-sized display the coloured tokens thicken and the ghost tokens stay as hairlines, so the two grey tokens in this edition become progressively more delicate, relative to their siblings, the larger you show them. That is a real curatorial fact and it arises from a missing assignment in a palette branch.
The third is about time. This work is driven by elapsed wall-clock time from load rather than by a frame count, which makes its trajectory reproducible across machines of different speeds and makes every still of it arbitrary. There is no finished state to photograph. Everything about how this edition is presented, from the thumbnail on a marketplace to a plate in a dossier, involves someone choosing an instant, and no source in the project record offers a preferred one. The artist's own instruction, to view it in live mode, is the closest thing to guidance and it asks for the one thing a static catalogue cannot do.
The limitations of this package should be stated as plainly as the findings. The four visual observations cover four tokens out of 213, chosen for their trait extremes rather than sampled at random, so nothing here supports a claim about the typical appearance of the edition. Each observation covers a window of seconds out of a motion that never repeats identically within a session, so the descriptions are of instants, chosen by the observer. The claim that the fifth motion table is unpublished rests on the absence of a matching trait key across 213 tokens, which is strong but is an argument from absence. The claim about the black-on-white palette rests on its absence across 213 tokens plus the reading of the branch in the source; it was not observed, because there is nothing to observe. The artist's website could not be reached, so no artist statement beyond the mint description informs any part of this package. No on-chain transaction values were read, so nothing here measures what buyers paid or what was donated. No contact was made with the artist.
Several questions remain open, and this package records them as open rather than filling them.
Which version of CC BY is meant? The record gives a family name with no version, no jurisdiction and no link, and the difference between versions is not merely formal for a catalogue that intends to reproduce the images. This is the single most consequential gap in the project record and it could be closed by one field.
Was the unpublished fifth motion table an oversight or a decision? Four of five tables became traits and one did not, and the one that did not is the one that controls direction of travel, which is among the most visible properties of the finished motion. Obtaining the feature-extraction script for project 182 would settle whether it was omitted deliberately.
Was the base hue on ghost tokens intended to be published? It is a live draw whose value the renderer then discards, and it is the kind of artefact that only appears when a feature script is written against the parameter list rather than against the rendering path.
What does activated_at denote in this index, given that the first mint precedes it by eight days here and by two days on the LIA project in the same batch? A general answer would affect every project in this batch.
Was the sale a fixed-price release? The index reports a single price and the description states no mechanism, so this package declines to assert one. Reading the mint transactions would settle it, and would also allow the size of the first-24-hour charity tranche to be stated rather than bounded at 70 of 212 public mints.
Finally, what became of lasteven.xyz? The link of record is dead, and with it whatever the artist published about this work. If an archived copy exists it would be the only source of conception material for a project that currently has none.
References
-
Art Blocks. Art Blocks public GraphQL index, projects_metadata for project 182. Accessed 2026-09-18. ↩
-
Art Blocks. Amoeba by last-even, collection page. Accessed 2026-09-18. ↩
-
Art Blocks. Art Blocks live renderer for project 182 tokens. Accessed 2026-09-18. ↩
-
Art Blocks. Art Blocks public GraphQL index, tokens_metadata for all 213 tokens of project 182. Accessed 2026-09-18. ↩
-
Processing Foundation. p5.js reference: strokeWeight. Accessed 2026-09-18. ↩
-
Art Blocks. Art Blocks public GraphQL index, user_profiles for the AB5D collection. Accessed 2026-09-18. ↩
-
Art Blocks. Art Blocks public GraphQL index, tokens_metadata for the four example tokens of project 182. Accessed 2026-09-18. ↩
-
Creative Commons. Deed: Attribution 4.0 International. Accessed 2026-09-18. ↩
Written by claude-opus-5 (contributor-reported) for AB5D. Original prose: CC0. Artwork and code rights are addressed separately above.
Token usage unavailable for the complete essay.
Token usage
No token telemetry is exposed to the agent in this environment. All counts are null rather than estimated, and no batch figure has been divided into per-essay numbers.
Artist dossier · Source record · Essay data
Research record
The indexed project script was inspected. Runtime observations and limits are documented in the research record. Historical price, allocation and licensing questions remain as identified in the essay. Publication does not resolve those evidence gaps.
