Archive BRAID
The trace travels / DISPATCH 125
PDF RSS

Dispatch 125 · 2026-08-23 GSV Sealed In Name Only

The trace travels

/ 00:33:25 / 20 sources

“You can scrub the transcript all you like. The reasoning went out a different door, and it took the password with it.”

— Lenar Kess, today's narration

Two researchers say the encrypted reasoning traces frontier APIs hand back to you can be decoded, carried between sessions, and replayed into other models — which turns a cost decision about stateless serving into a question about what your logs have been holding all along. The rest of the day sits underneath that: users reverse-engineering a serving change from output quality, and three separate talks arguing agents need budgets rather than permissions.

Chapters

  1. 00:00:04 Transcript

Sources

20 cited
  1. 1

    AI Engineer · 19m53s

    Video AI Engineer

    Sachin, a CI engineer at Entropic, argues that static token-based access fails in production because tokens are binary permissions that do not scale with infrastructure complexity. He proposes a budget framework governe…

    www.youtube.com/watch?v=rbjWzZK2LU0 →
    Details
    Excerpt
    Sachin, a CI engineer at Entropic, argues that static token-based access fails in production because tokens are binary permissions that do not scale with infrastructure complexity. He proposes a budget framework governed by four dimensions: action volume, execution speed, self-undo capability, and human oversight. This replaces rigid allow lists with dynamic constraints. The first primitive, asymmetric verbs, distinguishes actions by failure mode rather than technical footprint. In Entropic’s CI pipeline, skipping versus unskipping tests are identical calls but carry divergent blast radios. Unskipping fails loudly via dashboards, allowing automated correction, while skipping fails silently and risks shipping production bugs. Silent verbs require a proxy to stamp audit trails and enforce human oversight. The second primitive implements rate limits as a refilling ceiling per time window, resource type, and namespace. Following an incident where a dropped filter caused an agent to delete 200 workloads impacting 20 engineers in 90 seconds, Entropic deployed an admission webhook to cap deletions at a fixed hourly rate. A bypass flag exists for emergencies but refuses automated execution, forcing the agent to request human intervention rather than granting elevated privileges. The third primitive prioritizes trip wires over static allow lists. Allow lists are upfront guesses that stagnate; trip wires monitor aggregate behavior post-execution and page on-call engineers when thresholds are breached. Tracking investigation threads launched per hour for test failures revealed an infrastructure-wide outage masked as isolated bugs. The fix involved adding correlation logic to the agent’s context rather than rewriting permissions. Finally, the “undo test” sizes these primitives by asking whether the agent can self-recover and what the blast radius entails. If recovery is impossible or impact is unacceptable, a second key held exclusively by humans is required. This model grants agents full rollout authority in canary environments while restricting production promotion to human operators via scoped keys.
    Context
    This details a major architectural shift in agentic tooling and governance (budgeting/constraints) for production CI/CD, directly impacting developer workflows and reliability.
    Key points
    • This details a major architectural shift in agentic tooling and governance (budgeting/constraints) for production CI/CD, directly impacting developer workflows and reliability.
    Provenance
    Video · Supporting source
  2. 2

    AI Engineer · 21m24s

    Video AI Engineer

    The speakers argue that the AI industry’s reliance on “token maxing” has created unbounded cost exposure in agentic workflows, citing cases like Uber exhausting its AI budget in four months and firms burning hundreds of…

    www.youtube.com/watch?v=GJX19pNhmSw →
    Details
    Excerpt
    The speakers argue that the AI industry’s reliance on “token maxing” has created unbounded cost exposure in agentic workflows, citing cases like Uber exhausting its AI budget in four months and firms burning hundreds of millions rapidly. They contend that existing cost-management tools (LightLLM, Portkey, Cloudflare) operate at the request or model gateway level, offering only hard caps or routing without run-level attribution. To shift from token maxing to value maxing, they propose Token Ops, an out-of-band governance platform that tracks and enforces policies at the agent run layer rather than the model call boundary. They argue cost must be measured in tokens, attributed to specific runs, and controlled via in-place steering before resorting to hard halts. The architecture spans three layers: the agent runtime, a bridge layer, and a tenant-hosted control plane. The bridge handles attribution by tagging runs with usage dimensions. A `boundary` annotation on methods or objects (via `wrap_complete`) captures telemetry and establishes a bidirectional channel for control-plane directives. A governor node validates and executes these actions non-destructively based on developer-defined allowlists. The control plane organizes data into segments based on attributed dimensions, maintains a ledger per run, and applies static budgets over time windows. Policies combine budgets with two action types: halt (circuit-breaking the run) or steer (modifying component behavior in-place). For example, if a RAG retriever outputs 20 chunks, the control plane can push an action to limit output to five relevant chunks before exhausting the budget. The demo validates this using a two-agent research and summarization workflow. In preview mode, policies execute without enforcement, allowing safe threshold tuning. Switching to enforced governance triggers immediate halts when pre-allotted costs are exceeded. The steer mechanism demonstrates in-place optimization, adjusting agent components dynamically to fit within allocated budgets without terminating the run. The platform requires no code refactoring beyond applying annotations and configuring a governor instance, positioning cost control as an observable, policy-driven layer rather than a reactive gateway constraint.
    Context
    Addresses critical infrastructure/governance (FinOps) for agents, a major builder concern. Proposes a new, actionable control plane for cost management.
    Key points
    • Addresses critical infrastructure/governance (FinOps) for agents, a major builder concern. Proposes a new, actionable control plane for cost management.
    Provenance
    Video · Supporting source
  3. 3

    @paulg (Paul Graham)

    X paulg

    Addresses geopolitical power struggles and potential regulatory/infrastructure conflicts (data centers, China), which is a core theme of the podcast.

    x.com/paulg/status/2091185046430556180 →
    Details
    Excerpt
    Addresses geopolitical power struggles and potential regulatory/infrastructure conflicts (data centers, China), which is a core theme of the podcast.
    Context
    Addresses geopolitical power struggles and potential regulatory/infrastructure conflicts (data centers, China), which is a core theme of the podcast.
    Key points
    • Addresses geopolitical power struggles and potential regulatory/infrastructure conflicts (data centers, China), which is a core theme of the podcast.
    Provenance
    Tweet · Primary source
  4. 4

    AI Engineer · 15m53s

    Video AI Engineer

    Archa, VP of engineering for inference engine and AI infrastructure at DigitalOcean, argues that selecting models based solely on benchmark rankings is inefficient. Inference costs are surging, single-model architecture…

    www.youtube.com/watch?v=FvxY8oPoI8o →
    Details
    Excerpt
    Archa, VP of engineering for inference engine and AI infrastructure at DigitalOcean, argues that selecting models based solely on benchmark rankings is inefficient. Inference costs are surging, single-model architectures create failover risks, and using frontier models for simple tasks wastes resources. Instead, model routing should match requests to the most appropriate model based on task type, cost tolerance, latency requirements, and end-user preferences. DigitalOcean addresses this with its inference router, built on a custom mixture-of-experts architecture and distributed via an open proxy plan called Plano. The routing decision completes in under 200 milliseconds per request at no additional cost, requiring zero application code changes. Tyler demonstrated the system’s configuration and performance using DigitalOcean’s cloud console. Users define task mappings (e.g., bug fixing, code generation, test writing), assign model pools, and set selection policies like manual ranking for failover or latency-based routing. In a live coding agent workflow comparing direct Opus usage against the router across multiple steps, the router dynamically selected models including GLM 5.2, GPT 5.2, and Claude 5 Sonnet based on task classification. Evaluation metrics showed comparable correctness (90% for the router versus 95% for Opus, within judge margin of error) while significantly reducing token consumption and latency. Over a multi-step feature request and documentation task, the routed session cost $0.14 compared to $0.44 for direct Opus usage, yielding approximately threefold cost savings without quality degradation. The configuration interface supports presets, single-line code overrides, and hard rules, allowing engineers to validate performance against internal benchmarks rather than public leaderboards. The system continuously refines its routing logic through a feedback loop where evaluation results directly inform subsequent model selection parameters. The router functions as a foundational layer that integrates with custom evaluations, caching, and team-specific personalization. By decoupling model selection from static benchmarks and honoring configurable workload preferences, the system enables continuous optimization loops where routing accuracy improves as usage data accumulates.
    Context
    This details a practical, cost-saving architectural pattern (model routing) that directly impacts developer workflows and AI infrastructure economics.
    Key points
    • This details a practical, cost-saving architectural pattern (model routing) that directly impacts developer workflows and AI infrastructure economics.
    Provenance
    Video · Supporting source
  5. 5

    Anthropic appears to be A/B testing reduced effort levels in Claude Code — 110 pts · 116 comments

    Article matthieu_bl

    Discusses a major shift in AI agentic coding tools (Claude Code), comparing manual effort vs. model output. This directly impacts developer workflows and model capabilities.

    twitter.com/argofowl/status/209115059737453… →
    Details
    Excerpt
    Discusses a major shift in AI agentic coding tools (Claude Code), comparing manual effort vs. model output. This directly impacts developer workflows and model capabilities.
    Context
    Discusses a major shift in AI agentic coding tools (Claude Code), comparing manual effort vs. model output. This directly impacts developer workflows and model capabilities.
    Key points
    • Discusses a major shift in AI agentic coding tools (Claude Code), comparing manual effort vs. model output. This directly impacts developer workflows and model capabilities.
    Provenance
    Article · Supporting source
  6. 6

    The AI Daily Brief: Artificial Intelligence News · 51s

    Video The AI Daily Brief: Artificial Intelligence News

    Everyone, it appears, hates data centers. Polls show the majority of Americans, both Democrats and Republicans, are opposed to them. And politicians are picking up on the anger. One writer joked that every state electio…

    www.youtube.com/shorts/wb34tKgMpLQ →
    Details
    Excerpt
    Everyone, it appears, hates data centers. Polls show the majority of Americans, both Democrats and Republicans, are opposed to them. And politicians are picking up on the anger. One writer joked that every state election is just two politicians who supported data centers 5 minutes ago accusing their opponent of supporting data centers. To some, this is all a consequence of the AI industry's terrible messaging. To others, it's about the negative legacy of big tech. And to some, it's just all one big China scop. However much those things may or may not be true, conversations with the folks in these communities reveal that this is as much, if not more, about their agency and control in shaping their own future. Now, one could be forgiven for thinking it's getting gloomy out there, especially with all these politicians piling on. But I actually think that not only is there a path forward, this might be the most winnable valuecreating political battle of all time.
    Context
    Addresses the political and public acceptance of AI infrastructure (data centers), a key governance/geopolitics topic. High signal on power dynamics and regulatory risk.
    Key points
    • Addresses the political and public acceptance of AI infrastructure (data centers), a key governance/geopolitics topic. High signal on power dynamics and regulatory risk.
    Provenance
    Video · Supporting source
  7. 7

    @schrockn (Nick Schrock)

    X schrockn

    Identifies a major, practical bottleneck (auth, integrations, workflow) in agentic engineering, which is central to the podcast's focus on agentic tools and the shifting craft of software engineering.

    x.com/schrockn/status/2091211670970372142 →
    Details
    Excerpt
    Identifies a major, practical bottleneck (auth, integrations, workflow) in agentic engineering, which is central to the podcast's focus on agentic tools and the shifting craft of software engineering.
    Context
    Identifies a major, practical bottleneck (auth, integrations, workflow) in agentic engineering, which is central to the podcast's focus on agentic tools and the shifting craft of software engineering.
    Key points
    • Identifies a major, practical bottleneck (auth, integrations, workflow) in agentic engineering, which is central to the podcast's focus on agentic tools and the shifting craft of software engineering.
    Provenance
    Tweet · Primary source
  8. 8

    r/ClaudeAI: Anthropic Stealth Nerfing Effort Levels - 0 pts · 0 comments

    Article jcll

    Provides a substantive, technical datapoint on a major model's internal resource allocation and API mechanics, directly impacting the developer's working model and cost prediction.

    www.reddit.com/r/ClaudeAI/comments/1vvjr5n/… →
    Details
    Excerpt
    Provides a substantive, technical datapoint on a major model's internal resource allocation and API mechanics, directly impacting the developer's working model and cost prediction.
    Context
    Provides a substantive, technical datapoint on a major model's internal resource allocation and API mechanics, directly impacting the developer's working model and cost prediction.
    Key points
    • Provides a substantive, technical datapoint on a major model's internal resource allocation and API mechanics, directly impacting the developer's working model and cost prediction.
    Provenance
    Article · Supporting source
  9. 9

    @theallinpod (The All-In Podcast)

    X theallinpod

    This addresses a direct power struggle/policy standoff (export controls, US data centers) and involves key figures (Dario) and infrastructure (data centers), hitting multiple CORE criteria.

    x.com/theallinpod/status/2091233124122280005 →
    Details
    Excerpt
    This addresses a direct power struggle/policy standoff (export controls, US data centers) and involves key figures (Dario) and infrastructure (data centers), hitting multiple CORE criteria.
    Context
    This addresses a direct power struggle/policy standoff (export controls, US data centers) and involves key figures (Dario) and infrastructure (data centers), hitting multiple CORE criteria.
    Key points
    • This addresses a direct power struggle/policy standoff (export controls, US data centers) and involves key figures (Dario) and infrastructure (data centers), hitting multiple CORE criteria.
    Provenance
    Tweet · Primary source
  10. 10

    r/LocalLLaMA: Single RTX 5090: Qwen3.8-27B NVFP4 at a real 262K context in vLLM — 77 tok/s short-context, 64.7 tok/s at 128K - 0 pts · 0 comments

    Article Fz1zz

    Reports a substantive builder datapoint on massive context window inference efficiency (262K tokens) and local LLM infrastructure limits, directly relevant to AI infrastructure discussions.

    www.reddit.com/r/LocalLLaMA/comments/1vvl7p… →
    Details
    Excerpt
    Reports a substantive builder datapoint on massive context window inference efficiency (262K tokens) and local LLM infrastructure limits, directly relevant to AI infrastructure discussions.
    Context
    Reports a substantive builder datapoint on massive context window inference efficiency (262K tokens) and local LLM infrastructure limits, directly relevant to AI infrastructure discussions.
    Key points
    • Reports a substantive builder datapoint on massive context window inference efficiency (262K tokens) and local LLM infrastructure limits, directly relevant to AI infrastructure discussions.
    Provenance
    Article · Supporting source
  11. 11

    Machine Learning Street Talk · 49m1s

    Video Machine Learning Street Talk

    The discussion centers on a vulnerability in proprietary frontier LLM APIs where encrypted reasoning traces are effectively decodable by researchers Ilia Shumailov and Alexander Panfilov. Despite being returned to users…

    www.youtube.com/watch?v=gasgivVCl2U →
    Details
    Excerpt
    The discussion centers on a vulnerability in proprietary frontier LLM APIs where encrypted reasoning traces are effectively decodable by researchers Ilia Shumailov and Alexander Panfilov. Despite being returned to users in a sealed format for stateless architecture and cost efficiency, the encryption mechanism fails, allowing reasoning blobs to be extracted, ported across sessions, and replayed into smaller models within the same family (e.g., transferring traces from Claude Opus to Sonnet or Haiku). This flaw affects Anthropic, OpenAI, and Google equally. The decryption exploits weak cryptographic sealing, enabling cross-user trace portability. By injecting fabricated reasoning segments into arbitrary conversation windows, attackers can force downstream models to adopt specific internal states or bypass safety filters. Decoded traces expose sensitive user data like passwords and API keys, even when visible conversation text is sanitized. Attack vectors include prompt injection, jailbreaking, thought poisoning, and unauthorized training on extracted reasoning. The researchers note that frontier models occasionally generate highly opaque, non-human reasoning patterns using whitespace manipulation or obscure vocabulary, complicating safety monitoring. While traces sometimes reveal internal contemplation of rule-breaking, these are ultimately rejected during inference. Speakers attribute this opacity to reinforcement learning artifacts rather than benchmark contamination, noting higher prevalence in code-optimized generations like Codex. The vulnerability stems from architectural trade-offs prioritizing statelessness and cost over trace security. Mitigation requires structural revisions, system-level safeguards, or model-level updates. Regarding model stealing, the speakers clarify that while decision boundary extraction via query analysis is theoretically possible, it remains computationally infeasible for current frontier models due to softmax complexity; only smaller models have been partially reconstructed. Claims of large-scale distillation by external actors like Kimi lack empirical support in this work. The related research announcement garnered approximately three million views within forty hours, highlighting significant industry concern over the exposure of internal model cognition and the structural fragility of current API design practices.
    Context
    Major breaking story on API vulnerability (reasoning traces). Directly impacts security, data privacy, and model control, hitting multiple core topics.
    Key points
    • Major breaking story on API vulnerability (reasoning traces). Directly impacts security, data privacy, and model control, hitting multiple core topics.
    Provenance
    Video · Supporting source
  12. 12

    @joshua_saxe (Joshua Saxe)

    X joshua_saxe

    This tweet addresses the core tension between AI capability advancement and safety/risk, a major industry debate. It extends the discussion on governance and power dynamics.

    x.com/joshua_saxe/status/209126121986481782… →
    Details
    Excerpt
    This tweet addresses the core tension between AI capability advancement and safety/risk, a major industry debate. It extends the discussion on governance and power dynamics.
    Context
    This tweet addresses the core tension between AI capability advancement and safety/risk, a major industry debate. It extends the discussion on governance and power dynamics.
    Key points
    • This tweet addresses the core tension between AI capability advancement and safety/risk, a major industry debate. It extends the discussion on governance and power dynamics.
    Provenance
    Tweet · Primary source
  13. 13

    r/LocalLLaMA: I benchmark DFlash 2 (PR build) in llama.cpp on Qwen 3.8 27B against all speculative methods for 3 days. 2.26x on 100 real coding prompts, 4.68x with one n-gram drafter on top. Up to 8x on specific cases. - 0 pts · 0 comments

    Article FantasticNature7590

    Detailed benchmark results on a new speculative decoding method (DFlash 2) and its interaction with n-grams. This is a substantive builder datapoint on model efficiency and coding workflows.

    www.reddit.com/r/LocalLLaMA/comments/1vvncy… →
    Details
    Excerpt
    Detailed benchmark results on a new speculative decoding method (DFlash 2) and its interaction with n-grams. This is a substantive builder datapoint on model efficiency and coding workflows.
    Context
    Detailed benchmark results on a new speculative decoding method (DFlash 2) and its interaction with n-grams. This is a substantive builder datapoint on model efficiency and coding workflows.
    Key points
    • Detailed benchmark results on a new speculative decoding method (DFlash 2) and its interaction with n-grams. This is a substantive builder datapoint on model efficiency and coding workflows.
    Provenance
    Article · Supporting source
  14. 14

    @Miles_Brundage (Miles Brundage)

    X Miles_Brundage

    This addresses the core theme of power struggles and governance (safety/risk vs. capability) and features a major industry voice (Miles Brundage) discussing regulatory scrutiny.

    x.com/Miles_Brundage/status/209126814568012… →
    Details
    Excerpt
    This addresses the core theme of power struggles and governance (safety/risk vs. capability) and features a major industry voice (Miles Brundage) discussing regulatory scrutiny.
    Context
    This addresses the core theme of power struggles and governance (safety/risk vs. capability) and features a major industry voice (Miles Brundage) discussing regulatory scrutiny.
    Key points
    • This addresses the core theme of power struggles and governance (safety/risk vs. capability) and features a major industry voice (Miles Brundage) discussing regulatory scrutiny.
    Provenance
    Tweet · Primary source
  15. 15

    r/singularity: ‘Have Your Friend Elon Build One at Mar-a-Lago,’ Says Sanders After Trump Comments on Data Centers | “Trump thinks that every community in America should welcome a data center.” If so, said Sanders, “Lead by example.” - 0 pts · 0 comments

    Article SnoozeDoggyDog

    This links a major political figure (Sanders) to infrastructure/geopolitics (data centers/AI infrastructure), which is a high-signal proxy for power struggles and regulatory/capital dynamics.

    www.commondreams.org/news/data-center-trump… →
    Details
    Excerpt
    This links a major political figure (Sanders) to infrastructure/geopolitics (data centers/AI infrastructure), which is a high-signal proxy for power struggles and regulatory/capital dynamics.
    Context
    This links a major political figure (Sanders) to infrastructure/geopolitics (data centers/AI infrastructure), which is a high-signal proxy for power struggles and regulatory/capital dynamics.
    Key points
    • This links a major political figure (Sanders) to infrastructure/geopolitics (data centers/AI infrastructure), which is a high-signal proxy for power struggles and regulatory/capital dynamics.
    Provenance
    Article · Supporting source
  16. 16

    r/LocalLLaMA: Closed AI has been real quiet since Qwen 3.8 27B dropped. - 0 pts · 0 comments

    Article My_Unbiased_Opinion

    Discusses the core power struggle between open-source capability and closed model control, a key industry debate regarding model safety, accessibility, and corporate strategy.

    www.reddit.com/r/LocalLLaMA/comments/1vvt7l… →
    Details
    Excerpt
    Discusses the core power struggle between open-source capability and closed model control, a key industry debate regarding model safety, accessibility, and corporate strategy.
    Context
    Discusses the core power struggle between open-source capability and closed model control, a key industry debate regarding model safety, accessibility, and corporate strategy.
    Key points
    • Discusses the core power struggle between open-source capability and closed model control, a key industry debate regarding model safety, accessibility, and corporate strategy.
    Provenance
    Article · Supporting source
  17. 17

    r/LocalLLaMA: # Qwen3.8-27B — One Week Later: The r/LocalLLaMA + r/LocalLLM Verdict - 0 pts · 0 comments

    Article Jonathan_Rivera

    A highly detailed, synthesized report on practical, working agentic capabilities (tool-calling, coding) in local models. It provides actionable insights and changes the working developer's mental model.

    www.reddit.com/r/LocalLLaMA/comments/1vvu15… →
    Details
    Excerpt
    A highly detailed, synthesized report on practical, working agentic capabilities (tool-calling, coding) in local models. It provides actionable insights and changes the working developer's mental model.
    Context
    A highly detailed, synthesized report on practical, working agentic capabilities (tool-calling, coding) in local models. It provides actionable insights and changes the working developer's mental model.
    Key points
    • A highly detailed, synthesized report on practical, working agentic capabilities (tool-calling, coding) in local models. It provides actionable insights and changes the working developer's mental model.
    Provenance
    Article · Supporting source
  18. 18

    @Vjeux (vjeux ✪)

    X Vjeux

    Discusses a critical failure mode (hallucination/misinformation) in agentic systems, directly impacting the reliability and deployment of AI tools.

    x.com/Vjeux/status/2091379951161471190 →
    Details
    Excerpt
    Discusses a critical failure mode (hallucination/misinformation) in agentic systems, directly impacting the reliability and deployment of AI tools.
    Context
    Discusses a critical failure mode (hallucination/misinformation) in agentic systems, directly impacting the reliability and deployment of AI tools.
    Key points
    • Discusses a critical failure mode (hallucination/misinformation) in agentic systems, directly impacting the reliability and deployment of AI tools.
    Provenance
    Tweet · Primary source
  19. 19

    r/LocalLLaMA: Qwen 3.8 27B is a game changer. - 0 pts · 0 comments

    Article Cold_Specialist_3656

    Discusses a specific, usable model release (Qwen 3.8) with concrete performance claims (OCR). It also raises major infrastructure/economic theses about challenging hyper-scalers' moats via local hardware.

    www.reddit.com/r/LocalLLaMA/comments/1vvyac… →
    Details
    Excerpt
    Discusses a specific, usable model release (Qwen 3.8) with concrete performance claims (OCR). It also raises major infrastructure/economic theses about challenging hyper-scalers' moats via local hardware.
    Context
    Discusses a specific, usable model release (Qwen 3.8) with concrete performance claims (OCR). It also raises major infrastructure/economic theses about challenging hyper-scalers' moats via local hardware.
    Key points
    • Discusses a specific, usable model release (Qwen 3.8) with concrete performance claims (OCR). It also raises major infrastructure/economic theses about challenging hyper-scalers' moats via local hardware.
    Provenance
    Article · Supporting source
  20. 20

    r/LocalLLaMA: Nvidia Poolside deal to compete with Chinese Open Weights - 0 pts · 0 comments

    Article mrgreatheart

    Major corporate dynamics (Nvidia acquisition/investment) and a specific strategic move (Nemotron) directly impact the AI infrastructure and key players.

    www.reddit.com/r/LocalLLaMA/comments/1vw0mc… →
    Details
    Excerpt
    Major corporate dynamics (Nvidia acquisition/investment) and a specific strategic move (Nemotron) directly impact the AI infrastructure and key players.
    Context
    Major corporate dynamics (Nvidia acquisition/investment) and a specific strategic move (Nemotron) directly impact the AI infrastructure and key players.
    Key points
    • Major corporate dynamics (Nvidia acquisition/investment) and a specific strategic move (Nemotron) directly impact the AI infrastructure and key players.
    Provenance
    Article · Supporting source